using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("wx_username_resid")] public class Wx_Username_Resid { [Key] [Column(Order = 0)] public string resid { get; set; } [Key] [Column(Order = 1)] public string username { get; set; } public string deptcode { get; set; } } }