You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

285 lines
8.2 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. using Entity.Sugar;
  2. using Entity.ViewModels;
  3. using Newtonsoft.Json;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Entity.ShowEasyDtos
  10. {
  11. public class ONSiteBaseInfoDTO
  12. {
  13. public string ServiceID { get; set; }
  14. //服務編號
  15. public string ServiceNo { get; set; }
  16. //服務名稱
  17. public string ServiceName { get; set; }
  18. //費用説明
  19. public string ExpenseDescription { get; set; }
  20. //常見問題
  21. public List<FQADTO> FQAs { get; set; }
  22. //適用展會
  23. public string ExhibitionNames { get; set; }
  24. //訂單確認工作天
  25. public string ConfirmDays { get; set; }
  26. //服務適用地
  27. public string SuitPlaces { get; set; }
  28. //服務領取地
  29. public string ReceivinPlaces { get; set; }
  30. //適用展會ID
  31. public string ExhibitionID { get; set; }
  32. //服務特色 (服務名稱下方的)
  33. public string Features { get; set; }
  34. //服務説明
  35. public string Details { get; set; }
  36. //取消政策
  37. public string CancelPolicy { get; set; }
  38. public int? MinPrice { get; set; }
  39. public string CurrencyID { get; set; }
  40. public string CurrencyName { get; set; }
  41. public string SupplierName { get; set; }
  42. public string SupplierLogo { get; set; }
  43. //public string CurrencyID { get; set; }
  44. //public DateTime? LaunchDateS { get; set; }
  45. //public DateTime? LaunchDateE { get; set; }
  46. //public string PayType { get; set; }
  47. //public string CMode { get; set; }
  48. //public string SuitPlace { get; set; }
  49. //public string CancelPolicy { get; set; }
  50. //public string OrderMemo { get; set; }
  51. //public string SubCategoryID { get; set; }
  52. //public string ExhibitionID { get; set; }
  53. //public string OrderQuestions { get; set; }
  54. }
  55. public class ONSiteBaseListDTO
  56. {
  57. public string ServiceID { get; set; }
  58. //服務編號
  59. public string ServiceNo { get; set; }
  60. //服務名稱
  61. public string ServiceName { get; set; }
  62. //圖片
  63. public string PreviewFile { get; set; }
  64. public int? MinPrice { get; set; }
  65. //適用地區
  66. public string PlaceName { get; set; }
  67. //服務類別名稱
  68. public string ServiceCategoryName { get; set; }
  69. public string LangID { get; set; }
  70. public string CurrencyID { get; set; }
  71. public string CurrencyName { get; set; }
  72. }
  73. public class FQADTO
  74. {
  75. public string Question { get; set; }
  76. public string Answer { get; set; }
  77. }
  78. public class ServiceCategoryDTO
  79. {
  80. /// <summary>
  81. ///
  82. /// </summary>
  83. public string CategoryID { get; set; }
  84. /// <summary>
  85. ///
  86. /// </summary>
  87. public string CategoryName { get; set; }
  88. /// <summary>
  89. ///
  90. /// </summary>
  91. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  92. public List<ServiceCategoryDTO> SubCategoryList = new List<ServiceCategoryDTO>();
  93. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  94. public Dictionary<string, ServiceCategoryDTO> SubCategoryDic = new Dictionary<string, ServiceCategoryDTO>();
  95. }
  96. public class ServiceRegionDTO
  97. {
  98. /// <summary>
  99. ///
  100. /// </summary>
  101. public string RegionID { get; set; }
  102. /// <summary>
  103. ///
  104. /// </summary>
  105. public string RegionName { get; set; }
  106. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  107. public List<ServiceCountryDTO> CountryList = new List<ServiceCountryDTO>();
  108. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  109. public Dictionary<string, ServiceCountryDTO> CountryDic = new Dictionary<string, ServiceCountryDTO>();
  110. }
  111. public class ServiceCountryDTO
  112. {
  113. /// <summary>
  114. ///
  115. /// </summary>
  116. public string CountryID { get; set; }
  117. /// <summary>
  118. ///
  119. /// </summary>
  120. public string CountryName { get; set; }
  121. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  122. public List<CityDTO> CityList = new List<CityDTO>();
  123. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  124. public Dictionary<string, CityDTO> CityDic = new Dictionary<string, CityDTO>();
  125. }
  126. public class ONSiteItemDTO
  127. {
  128. /// <summary>
  129. ///
  130. /// </summary>
  131. public string Guid { get; set; }
  132. public string ItemType { get; set; }
  133. public string ItemName { get; set; }
  134. //文字説明(非堆高機,非卡車)
  135. public string CostRuleText { get; set; }
  136. public string ExpensesMemo { get; set; }
  137. public string EscortFreeCityID { get; set; }
  138. public DateTime? CreateDate { get; set; }
  139. //堆高機費用規則
  140. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  141. public List<ServiceCostRulesDTO> StackerCostRules = new List<ServiceCostRulesDTO>();
  142. //卡車費用規則
  143. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  144. public List<ServiceTruckCostRulesDTO> TruckCostRules = new List<ServiceTruckCostRulesDTO>();
  145. //卡車假日加班費
  146. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  147. public List<ServiceTruckOtherCostDTO> TruckHolidayPay = new List<ServiceTruckOtherCostDTO>();
  148. //卡車車型加價
  149. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  150. public List<ServiceTruckOtherCostDTO> TruckMarkupByModel = new List<ServiceTruckOtherCostDTO>();
  151. //卡車押車費用規則
  152. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  153. public List<ServiceTruckCostRulesDTO> TruckEscortCostRules = new List<ServiceTruckCostRulesDTO>();
  154. //非卡車,堆高機費用規則
  155. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  156. public List<ONSiteOtherCostRulesDTO> OtherCostRules = new List<ONSiteOtherCostRulesDTO>();
  157. }
  158. //堆高機費用規則
  159. public class ServiceCostRulesDTO
  160. {
  161. public int Index { get; set; }
  162. public string Guid { get; set; }
  163. public string Weight_Min { get; set; }
  164. public string Weight_Max { get; set; }
  165. public int? Price { get; set; }
  166. public string PricingMode { get; set; }
  167. public string Memo { get; set; }
  168. public DateTime? CreateDate { get; set; }
  169. }
  170. //卡車費用規則
  171. public class ServiceTruckCostRulesDTO
  172. {
  173. public string TruckID { get; set; }
  174. public string CityID { get; set; }
  175. public int? Price { get; set; }
  176. }
  177. //卡車假日加班費 卡車車型加價
  178. public class ServiceTruckOtherCostDTO
  179. {
  180. public string TruckID { get; set; }
  181. public int? Price { get; set; }
  182. }
  183. //非卡車,堆高機費用規則
  184. public class ONSiteOtherCostRulesDTO
  185. {
  186. public string Guid { get; set; }
  187. public string PricingMode { get; set; }
  188. public int? Price { get; set; }
  189. public int? InterbankPrice { get; set; }
  190. public string Unit_Min { get; set; }
  191. }
  192. public class OrderQuestionDTO
  193. {
  194. public string ServiceID { get; set; }
  195. public int QuestionID { get; set; }
  196. //1:必填 0:非必填
  197. public string RequiredFlag { get; set; }
  198. public string LangID { get; set; }
  199. public string SurveyName { get; set; }
  200. public string AnswerType { get; set; }
  201. public string Answer { get; set; }
  202. }
  203. public class BookingOrderDTO
  204. {
  205. public string LangType { get; set; }
  206. public string ExhibitionID { get; set; }
  207. public string CurrencyID { get; set; }
  208. public string PayType { get; set; }
  209. public string ServiceID { get; set; }
  210. public string TotalPrice { get; set; }
  211. public string SubTotal { get; set; }
  212. public List<string> BookingItem { get; set; }
  213. public List<string> OrderQuestion { get; set; }
  214. public string ServiceDateS { get; set; }
  215. public string ServiceDateE { get; set; }
  216. }
  217. }