ComplianceServer/oldcode/Model/Entity/QH_COMMISSIONRULEHIS.cs

52 lines
1.1 KiB
C#

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