TG.WXCRM.V4/Core.DTO/Ord/OrderHandGiftDto.cs

60 lines
2.0 KiB
C#

using System;
using System.Collections.Generic;
namespace CRM.Core.DTO.Ord
{
public class OrderHandGiftDto
{
public long orderid { get; set; }
public long mainorderid { get; set; }
public string softusername { get; set; }
public string resid { get; set; }
public int productid { get; set; }
public string productcode { get; set; }
public int orderstatus { get; set; }
public int subproductid { get; set; }
public string subproductcode { get; set; }
public string subproductname { get; set; }
public string memo { get; set; }
public string createuser { get; set; }
public DateTime ctime { get; set; }
public int channel { get; set; }
public int? requireChannel { get; set; } //请求渠道
public string channelName { get; set; }
public string companycode { get; set; }
public int giftdays { get; set; }
public string openuser { get; set; }
public DateTime? optime { get; set; }
public decimal? szzyorderid { get; set; }
public string outorderno { get; set; }
public string oldoutorderno { get; set; }
public DateTime? outorderclosetime { get; set; }
public string userid { get; set; }
public string checkmemo { get; set; }
public DateTime? otime { get; set; }
public int producttype { get; set; }
public int? saleDeptId { get; set; } = 0;
public List<OrderHandGiftActiveDto> ActiveList { get; set; }
}
public class AuditHandGiftDto
{
public decimal OrderId { get; set; }
public string OpenUser { get; set; }
public string Memo { get; set; }
public int orderstatus { get; set; }
}
public class OrderHandGiftActiveDto
{
public int productid { get; set; }
public string ACTIVECODE { get; set; }
public string ACTIVENAME { get; set; }
}
public class AutoAuditGiftParameterDto
{
public bool IsAutoAudit { get; set; }
}
}