using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Entity.Crm { [Table("WX_COMMISSIONRULE")] public class WX_COMMISSIONRULE { [Key] [Required] public decimal PKID { get; set; } [Required] public decimal ORDERID { get; set; } public decimal? SZZYORDERID { get; set; } [Required] public decimal SALEUSERID { get; set; } [Required] public decimal COMMISSIONRATIO { get; set; } public decimal? CREATEUSERID { get; set; } public DateTime? CREATETIME { get; set; } public decimal ISMAIN { get; set; } public decimal? ARRIVALPAY { get; set; } public decimal? DIVIDEPAY { get; set; } public decimal? EID { get; set; } public string ENAME { get; set; } public decimal? GID { get; set; } public string GNAME { get; set; } } }