using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace Mini.Model.Entity { public class Ww_Dept { [Key, Column(Order = 0)] public int deptid { get; set; } [Key, Column(Order = 1)] public string corpid { get; set; } public string deptname { get; set; } public long parentid { get; set; } public long orderseq { get; set; } } }