using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("soft_userinfo_sub")] public class Soft_Userinfo_Sub { [Key] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int uid { get; set; } public int cid { get; set; } public string appid { get; set; } public string appuserid { get; set; } public string mobile { get; set; } public string unionid { get; set; } public int ch { get; set; } public string type { get; set; } } }