crm.core/code/Crm.Core.Entity/Crm/WX_SZZYORDER.cs

169 lines
4.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Crm
{
[Table("WX_SZZYORDER")]
public class WX_SZZYORDER
{
[Key]
public decimal ORDERID { get; set; }
[StringLength(50)]
public string? EMPLOYEEID { get; set; }
[StringLength(50)]
public string? PASSWORD { get; set; }
[StringLength(100)]
public string? USERID { get; set; }
public decimal? PRODUCTID { get; set; }
[StringLength(50)]
public string? PRODUCTNAME { get; set; }
public decimal? SUBPRODUCTID { get; set; }
[StringLength(50)]
public string? SUBPRODUCTNAME { get; set; }
public decimal? ORDERTYPE { get; set; }
[StringLength(500)]
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; }
/// <summary>
/// 订单状态新订单180、已开通220、已停用/已退款90、已过期80、已取消70去掉"已支付200、暂缓开通210"状态
/// </summary>
[StringLength(100)]
public string? ORDERSTATUS { get; set; }
public DateTime? CTIME { get; set; }
public decimal? RETURNNEEDPAY { get; set; }
[StringLength(50)]
public string? CONTRACTCODE { get; set; }
public decimal? RET { get; set; }
public decimal? RETP { get; set; }
[StringLength(250)]
public string? MSG { get; set; }
[StringLength(1000)]
public string? RETURNDETAIL { get; set; }
public decimal? INNERUSERID { get; set; }
public DateTime? OTIME { get; set; }
public DateTime? ENDTIME { get; set; }
[StringLength(100)]
public string? RESID { get; set; }
[StringLength(100)]
public string UMID { get; set; }
public decimal? REQUESTSTATUS { get; set; }
public decimal? ISFINANCEPAY { get; set; }
public DateTime? FINACEPAYDATE { get; set; }
[StringLength(2000)]
public string? REMARK { get; set; }
public decimal? FINALPAY { get; set; }
[StringLength(50)]
public string? ORDERSTATUSNAME { get; set; }
public DateTime? OPERATETIME { get; set; }
/// <summary>
/// 订单暂停结束时间
/// </summary>
[StringLength(50)]
public string? STIME { get; set; }
/// <summary>
/// 订单暂停结束时间
/// </summary>
[StringLength(50)]
public string? ETIME { get; set; }
/// <summary>
/// 订单暂停权限备注说明
/// </summary>
[StringLength(2000)]
public string? SUSPENDCOMMENT { get; set; }
public DateTime? UPDATEORDERTIME { get; set; }
public decimal? ISOPEN { get; set; }
public decimal? TEAMSERVE { get; set; }
[StringLength(200)]
public string? FCTEXT { get; set; }
[StringLength(200)]
public string? CUSTOMERUSERNAME { get; set; }
public decimal? ARRIVALPAY { get; set; }
public DateTime? ARRIVALTIME { get; set; }
[StringLength(20)]
public string? SOURCE { get; set; }
[StringLength(30)]
public string? CNAME { get; set; }
public decimal? OPENDAYS { get; set; }
[StringLength(2000)]
public string? CUSTOMERCLASSIFY { get; set; }
public decimal? SALEDEPTID { get; set; }
public decimal? RISKCTRLSTATUS { get; set; }
public string? ACTIVEPRODUCTCODE { get; set; }
public string? ACTIVEPRODUCTEXT { get; set; }
public decimal? ISTEST { get; set; }
public decimal? HASHGRECORD { get; set; }
public string? OUTORDERO { get; set; }
public int? GIFTDAYS { get; set; }
public int? GIFTDAYS2 { get; set; }
public string? REJECTREMARK { get; set; }
public string? EXTERNAL_USERID { get; set; }
public string? WEWORK_REMOTEID { get; set; }
public string? FUJIAN { get; set; }
public string? DEPTCODE { get; set; }
/// <summary>
/// 预计开通时间
/// </summary>
public DateTime? ESTIMATEOTIME { get; set; }
public decimal? EID { get; set; }
}
}