17,748
社区成员




public class Emp
{
public int Id { get; set; }
[MaxLength(10)]
public string EmpNo { get; set; }
[MaxLength(10)]
public string Alias { get; set; }
public int Level { get; set; } // 怎么给这个字段建索引?
}