ComplianceServer/oldcode/Model/Entity/L2_SOFT_REFUNDAPPLAY.cs

54 lines
1.2 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.L2_SOFT_REFUNDAPPLAY")]
public partial class L2_SOFT_REFUNDAPPLAY
{
[Key]
public decimal PKID { get; set; }
public decimal ORDERID { get; set; }
//[Required]
[StringLength(50)]
public string USERNAME { get; set; }
//[Required]
[StringLength(50)]
public string PRODUCTCODE { get; set; }
public decimal ORDERSTATUS { get; set; }
//[Required]
[StringLength(18)]
public string RESID { get; set; }
public decimal? ISDEL { get; set; }
public decimal? CREATEUSER { get; set; }
public decimal? OPERATIONUSER { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? UTIME { get; set; }
//[Required]
[StringLength(1000)]
public string REASON { get; set; }
public decimal TOTALDAYS { get; set; }
public decimal TOTALPRICE { get; set; }
public DateTime? OTIME { get; set; }
public decimal L2ORDERSTATUS { get; set; }
public decimal REFUNDAMOUNT { get; set; }
}
}