v1.0.0
This commit is contained in:
16
CC.Yi.Model/student.cs
Normal file
16
CC.Yi.Model/student.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text;
|
||||
|
||||
namespace CC.Yi.Model
|
||||
{
|
||||
public class student
|
||||
{
|
||||
[Key]
|
||||
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
|
||||
public int id { get; set; }
|
||||
public int name { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user