Files
Yi.Framework/CC.Yi.Model/student.cs
454313500@qq.com 367f8f8830 v1.0.1
2021-03-20 21:56:15 +08:00

17 lines
393 B
C#

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 string name { get; set; }
}
}