ComplianceServer/oldcode/Core.DTO/Ord/ordermodel.cs

130 lines
3.9 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;
namespace CRM.Core.DTO.Ord
{
//{"userid":600000207,
//"productId":1004,
//"subProductId":10042,
//"productname":"趋势锦囊",
//"subproductname":"趋势锦囊",
//"productcode":"UPCFJC_20181101170549\t",
//"bigproductcode":"UPCFJC_201811QSJN",
//"mobile":"15112168561",
//"needPay":null,
//"source":"2",
//"cname":"小囧",
//"ordertype":1,
//"needpay":56000,
//"teamserve":null,
//"saledeptid":null,
//"remark":"测试下单",
//"opendays":365,
//"softusername":"myp92514"}
public class ordermodel
{
public decimal userid { get; set; }
public decimal productId { get; set; }
public decimal subProductId { get; set; }
public string productname { get; set; }
public string subproductname { get; set; }
public string productcode { get; set; }
public string bigproductcode { get; set; }
/// <summary>
/// 0-单一产品、1-组合产品
/// </summary>
public int productType { get; set; }
public string mobile { get; set; }
public string source { get; set; }
public string cname { get; set; }
public decimal? ordertype { get; set; }
public decimal? needpay { get; set; }
public decimal? teamserve { get; set; }
public decimal? saledeptid { get; set; }
public string remark { get; set; }
public decimal? opendays { get; set; }
public string softusername { get; set; }
/// <summary>
/// 订单数量
/// </summary>
public int count { get; set; }
/// <summary>
/// 公司ID用于推送标志
/// </summary>
public string companycode { get; set; }
public string upgradeorderids { get; set; }
public decimal? totalupgradevalue { get; set; }
public int istest { get; set; }
public int? giftdays { get; set; }
public int? giftdays2 { get; set; }
public string external_userid { get; set; }
public string corpid { get; set; }
public string jobuserid { get; set; }
public string wework_remoteid { get; set; }
public string customerusername { get; set; }
public string fujian { get; set; }
public decimal? channel { get; set; }
public decimal? discount { get; set; }
public decimal? customprisce { get; set; }
public string deptcode { get; set; }
/// <summary>
/// 预计开通时间
/// </summary>
public DateTime? estimateotime { get; set; }
public decimal? eid { get; set; }
public string ai_hgrecord_stime { get; set; }
public string ai_hgrecord_etime { get; set; }
}
public class freeordermodel
{
public decimal userid { get; set; }
public decimal productId { get; set; }
public string productcode { get; set; }
/// <summary>
/// 0-单一产品、1-组合产品
/// </summary>
public int productType { get; set; }
public string mobile { get; set; }
public string source { get; set; }
public string cname { get; set; }
public decimal? ordertype { get; set; }
public decimal? needpay { get; set; }
public decimal? teamserve { get; set; }
public decimal? saledeptid { get; set; }
public string remark { get; set; }
public decimal? opendays { get; set; }
public string softusername { get; set; }
/// <summary>
/// 订单数量
/// </summary>
public int count { get; set; }
public string ctime { get; set; }
/// <summary>
/// 开通审核人
/// </summary>
public decimal opuser { get; set; }
public string companycode { get; set; }
public int days { get; set; }
public int? mainOrderId { get; set; }
public int ch { get; set; }
}
}