49 lines
1.5 KiB
C#
49 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto
|
|
{
|
|
public class WXSzzyOrderDto
|
|
{
|
|
public int ORDERID { get; set; }
|
|
public long? SZZYORDERID { get; set; }
|
|
public string? SUBPRODUCTNAME { get; set; }
|
|
public int? ORDERTYPE { get; set; }
|
|
public string? CNAME { get; set; }
|
|
public string? SOFTUSERNAME { get; set; }
|
|
public string? ORDERSTATUS { get; set; }
|
|
public string? PRODUCTCODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合同签订时间
|
|
/// </summary>
|
|
public DateTime? contractctime { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
public DateTime? OTIME { get; set; }
|
|
public decimal? NEEDPAY { get; set; }
|
|
public decimal? FINALPAY { get; set; }
|
|
public decimal? ARRIVALPAY { get; set; }
|
|
public DateTime? ARRIVALTIME { get; set; }
|
|
public int? TEAMSERVE { get; set; }
|
|
public int? OPENDAYS { get; set; }
|
|
|
|
public int? giftdays { get; set; }
|
|
public int? giftdays2 { get; set; }
|
|
public int? ISOPEN { get; set; }
|
|
public string? CONTRACTCODE { get; set; }
|
|
public int RISKCTRLSTATUS { get; set; }
|
|
public string? ORDERSTATUSNAME { get; set; }
|
|
public string? ChannelName { get; set; }
|
|
public int? CHANNEL { get; set; }
|
|
}
|
|
|
|
public class HHUserDto
|
|
{
|
|
public string ResId { get; set; }
|
|
public string userid { get; set; }
|
|
}
|
|
} |