using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CK.SCP.Models.ScpEntity { using System; using System.Collections.Generic; public partial class TB_PENING_ITEMS { public TB_PENING_ITEMS() { UserInAddress = new List(); UserInVendIds = new List(); } [Column(Order = 0)] [StringLength(50)] public string ITEM_NO { get; set; } [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int UID { get; set; } [StringLength(50)] public string ITEM_CONTENT { get; set; } public int ITEM_TYPE { get; set; } [StringLength(50)] public string SENDER { get; set; } public System.DateTime SENDING_TIME { get; set; } public int MESSAGE_STATE { get; set; } public int ITEM_STATE { get; set; } [StringLength(100)] public string ITEM_ADDRESS { get; set; } [StringLength(50)] public string RENEWER { get; set; } public Nullable RENEW_TIME { get; set; } public string MEMO { get; set; } [StringLength(50)] public string ORDER_NO { get; set; } [StringLength(50)] public string SEND_NO { get; set; } [StringLength(50)] public string INVOICE_NO { get; set; } [StringLength(50)] public string ROLE_NAME { get; set; } [StringLength(50)] public string VEND_ID { get; set; } [StringLength(50)] public string USER_ID { get; set; } public Guid GUID{ get; set; } [StringLength(50)] public string EXTEND5 { get; set; } [NotMapped] public List UserInAddress { set; get; } [NotMapped] public List UserInVendIds { set; get; } [NotMapped] public List UserInRoles { set; get; } } }