ComplianceServer/oldcode/Core.Model/Entity/Mon_Order.cs

76 lines
3.2 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.Entity
{
public class Mon_Order
{
[Key]
public decimal ORDERID { get; set; }
public DateTime month { get; set; }
public string EMPLOYEEID { get; set; }
public string PASSWORD { get; set; }
public string USERID { get; set; }
public decimal? PRODUCTID { get; set; }
public string PRODUCTNAME { get; set; }
public decimal? SUBPRODUCTID { get; set; }
public string SUBPRODUCTNAME { get; set; }
public decimal? ORDERTYPE { get; set; }
public string UPGRADEORDERIDS { get; set; }
public decimal? TOTALUPGRADEVALUE { get; set; }
public decimal? NEEDPAY { get; set; }
public decimal? OPENORDER { get; set; }
public decimal? SZZYORDERID { get; set; }
public string ORDERSTATUS { get; set; }
public DateTime? CTIME { get; set; }
public decimal? RETURNNEEDPAY { get; set; }
public string CONTRACTCODE { get; set; }
public decimal? RET { get; set; }
public string MSG { get; set; }
public string RETURNDETAIL { get; set; }
public decimal? INNERUSERID { get; set; }
public DateTime? OTIME { get; set; }
public DateTime? ENDTIME { get; set; }
public string RESID { get; set; }
public decimal? REQUESTSTATUS { get; set; }
public decimal? ISFINANCEPAY { get; set; }
public DateTime? FINACEPAYDATE { get; set; }
public string REMARK { get; set; }
public decimal? FINALPAY { get; set; }
public string ORDERSTATUSNAME { get; set; }
public DateTime? OPERATETIME { get; set; }
public string STIME { get; set; }
public string ETIME { get; set; }
public string SUSPENDCOMMENT { get; set; }
public DateTime? UPDATEORDERTIME { get; set; }
public decimal? ISOPEN { get; set; }
public decimal? TEAMSERVE { get; set; }
public string FCTEXT { get; set; }
public string CUSTOMERUSERNAME { get; set; }
public decimal? ARRIVALPAY { get; set; }
public DateTime? ARRIVALTIME { get; set; }
public string SOURCE { get; set; }
public string CNAME { get; set; }
public decimal? OPENDAYS { get; set; }
public string CUSTOMERCLASSIFY { get; set; }
public decimal? SALEDEPTID { get; set; }
public string SOFTUSERNAME { get; set; }
public string APPUSERNAME { get; set; }
public string CHANNEL { get; set; }
public int BOOKNUM { get; set; }
public string OPENUSER { get; set; }
public int ISPAYED { get; set; }
public int PAYTYPE { get; set; }
public string PRODUCTCODE { get; set; }
public string BIGPRODUCTCODE { get; set; }
public int RISKCTRLSTATUS { get; set; }
public string companycode { get; set; }
public int contractstatus { get; set; }
public DateTime? contractctime { get; set; }
public int? qywxstatus { get; set; }
public DateTime? qywxopendate { get; set; }
public string activeproductcode { get; set; }
public string activeproductext { get; set; }
}
}