ComplianceServer/oldcode/Model/Entity/SOFT_ACTIVEREVAPPLY.cs

52 lines
1.2 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.SOFT_ACTIVEREVAPPLY")]
public partial class SOFT_ACTIVEREVAPPLY
{
[Key]
public decimal PKID { get; set; }
public decimal ORDERID { get; set; }
[Required]
[StringLength(50)]
public string USERNAME { get; set; }
[StringLength(18)]
public string RESID { get; set; }
public decimal PRODUCTID { get; set; }
[Required]
[StringLength(50)]
public string PRODUCTCODE { get; set; }
[Required]
[StringLength(50)]
public string PRODUCTNAME { get; set; }
[Required]
[StringLength(200)]
public string APPLYREASON { get; set; }
public decimal APPLYERID { get; set; }
public DateTime APPLYTIME { get; set; }
[StringLength(200)]
public string CHECKREMARK { get; set; }
public decimal? CHECKERID { get; set; }
public DateTime? CHECKTIME { get; set; }
public decimal ISCHECK { get; set; }
public decimal ISDELETE { get; set; }
}
}