86 lines
2.2 KiB
C#
86 lines
2.2 KiB
C#
using System;
|
||
using System.ComponentModel.DataAnnotations;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
||
namespace Zxd.Entity.Zxd
|
||
{
|
||
[Table("L2_SOFT_ORDER")]
|
||
public partial class L2_SOFT_ORDER
|
||
{
|
||
[Key]
|
||
public int ORDERID { get; set; }
|
||
|
||
[StringLength(100)]
|
||
public string? RESID { get; set; }
|
||
|
||
public int? PRODUCTID { get; set; }
|
||
|
||
//[Required]
|
||
[StringLength(50)]
|
||
public string? PRODUCTCODE { get; set; }
|
||
|
||
//[Required]
|
||
[StringLength(50)]
|
||
public string? USERNAME { get; set; }
|
||
|
||
/// <summary>
|
||
/// <20><><EFBFBD><EFBFBD>״̬ :0δ<30><CEB4>ͨ<EFBFBD><CDA8>1<EFBFBD>ѿ<EFBFBD>ͨ<EFBFBD><CDA8>2<EFBFBD>ѳ<EFBFBD><D1B3><EFBFBD><EFBFBD><EFBFBD>3<EFBFBD><EFBFBD>ɾ<EFBFBD><C9BE>
|
||
/// </summary>
|
||
public int? ORDERSTATUS { get; set; }
|
||
|
||
public int? ORDERTYPE { get; set; }
|
||
|
||
public int? OPENUSER { get; set; }
|
||
|
||
public int? DAYS { get; set; }
|
||
|
||
public decimal? PRICE { get; set; }
|
||
|
||
public DateTime? OTIME { get; set; }
|
||
|
||
public decimal? CANCELUSER { get; set; }
|
||
|
||
public DateTime? CANCELTIME { get; set; }
|
||
|
||
[StringLength(200)]
|
||
public string? MEMO { get; set; }
|
||
|
||
public int? CREATEUSER { get; set; }
|
||
|
||
public DateTime CTIME { get; set; }
|
||
|
||
public int? COMPANYID { get; set; }
|
||
|
||
[StringLength(50)]
|
||
public string? WEBORDERID { get; set; }
|
||
|
||
public string? companycode { get; set; }
|
||
public int? MainOrderId { get; set; }
|
||
public int? deptid { get; set; }
|
||
public string? deptName { get; set; }
|
||
public int? groupid { get; set; }
|
||
public int? sourcetype { get; set; }
|
||
|
||
/// <summary>
|
||
/// 合同状态
|
||
/// </summary>
|
||
public int? contractstatus { get; set; }
|
||
|
||
/// <summary>
|
||
/// 合同签订时间
|
||
/// </summary>
|
||
public DateTime? contractctime { get; set; }
|
||
|
||
[StringLength(50)]
|
||
public string? CONTRACTCODE { get; set; }
|
||
|
||
public int? RISKCTRLSTATUS { get; set; }
|
||
|
||
[StringLength(30)]
|
||
public string? CNAME { get; set; }
|
||
|
||
public string? idcard { get; set; }
|
||
public int? adequacy { get; set; }
|
||
public string? productname { get; set; }
|
||
}
|
||
} |