ComplianceServer/oldcode/Model/Entity/QH_COMMISSIONRULE.cs

41 lines
901 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.QH_COMMISSIONRULE")]
public partial class QH_COMMISSIONRULE
{
[Key]
public decimal PKID { get; set; }
//[Required]
[StringLength(50)]
public string USERACCOUNT { get; set; }
public DateTime THEDATE { get; set; }
public decimal SALEUSERID { get; set; }
public decimal COMMISSIONRATIO { get; set; }
public decimal ISMAIN { get; set; }
public decimal? CREATEUSERID { get; set; }
public DateTime? CREATETIME { get; set; }
public decimal? APPLYPKID { get; set; }
public decimal? UPDATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? SETUPLOGID { get; set; }
}
}