using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { [Table("UPDEV.SOFT_USERINFO_SUB")] public class SOFT_USERINFO_SUB { /// /// 用户中uid字段(注:oracle不允许uid字段) /// [Key] public decimal USID { get; set; } public decimal CID { get; set; } public string APPID { get; set; } public string APPUSERID { get; set; } public string MOBILE { get; set; } public string UNIONID { get; set; } public decimal CH { get; set; } public string TYPE { get; set; } public DateTime? CTIME { get; set; } public DateTime? UTIME { get; set; } } }