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 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 List ActiveList { get; set; } } public class OrderHandGiftActiveDto { public int productid { get; set; } public string ACTIVECODE { get; set; } public string ACTIVENAME { get; set; } } }