TG.WXCRM.V4/Model/Entity/QH_COMMISSIONAPPLY.cs

47 lines
1.1 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.QH_COMMISSIONAPPLY")]
public partial class QH_COMMISSIONAPPLY
{
[Key]
public decimal PKID { get; set; }
//[Required]
[StringLength(50)]
public string USERACCOUNT { get; set; }
//[Required]
[StringLength(50)]
public string USERNAME { get; set; }
public DateTime STARTDATE { get; set; }
public DateTime ENDDATE { get; set; }
public decimal SALESEID { get; set; }
public decimal SALESID { get; set; }
public decimal CREATEUSER { get; set; }
public DateTime CTIME { get; set; }
//[Required]
[StringLength(4000)]
public string COMMISSTIONXML { get; set; }
public decimal STATUS { get; set; }
public decimal? VERIFIERUSER { get; set; }
public DateTime? VERIFITIME { get; set; }
[StringLength(500)]
public string REMARK { get; set; }
}
}