Files
Yi.Framework/CC.Yi/CC.Yi.Model/student.cs
橙子 e5063e1a4d v3.0.1
v3.0.1
2021-06-02 20:00:25 +08:00

14 lines
282 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:baseModel
{
public string name { get; set; }
}
}