Files
Yi.Admin/CC.Yi/CC.Yi.Model/student.cs

14 lines
282 B
C#
Raw Normal View History

2021-03-20 14:12:24 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace CC.Yi.Model
{
2021-06-02 20:00:25 +08:00
public class student:baseModel
2021-03-20 14:12:24 +08:00
{
2021-05-13 01:39:34 +08:00
public string name { get; set; }
2021-03-20 14:12:24 +08:00
}
}