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.

290 lines
8.4 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. //最小金額
  39. public int? MinPrice { get; set; }
  40. //幣別
  41. public string CurrencyID { get; set; }
  42. //幣別名稱
  43. public string CurrencyName { get; set; }
  44. //供應商名稱
  45. public string SupplierName { get; set; }
  46. //供應商Logo
  47. public string SupplierLogo { get; set; }
  48. //服務封面圖片
  49. public string PreviewFile { get; set; }
  50. //public string CurrencyID { get; set; }
  51. //public DateTime? LaunchDateS { get; set; }
  52. //public DateTime? LaunchDateE { get; set; }
  53. //public string PayType { get; set; }
  54. //public string CMode { get; set; }
  55. //public string SuitPlace { get; set; }
  56. //public string CancelPolicy { get; set; }
  57. //public string OrderMemo { get; set; }
  58. //public string SubCategoryID { get; set; }
  59. //public string ExhibitionID { get; set; }
  60. //public string OrderQuestions { get; set; }
  61. }
  62. public class ONSiteBaseListDTO
  63. {
  64. public string ServiceID { get; set; }
  65. //服務編號
  66. public string ServiceNo { get; set; }
  67. //服務名稱
  68. public string ServiceName { get; set; }
  69. //圖片
  70. public string PreviewFile { get; set; }
  71. public int? MinPrice { get; set; }
  72. //適用地區
  73. public string PlaceName { get; set; }
  74. //服務類別名稱
  75. public string ServiceCategoryName { get; set; }
  76. public string LangID { get; set; }
  77. public string CurrencyID { get; set; }
  78. public string CurrencyName { get; set; }
  79. }
  80. public class FQADTO
  81. {
  82. public string Question { get; set; }
  83. public string Answer { get; set; }
  84. }
  85. public class ServiceCategoryDTO
  86. {
  87. /// <summary>
  88. ///
  89. /// </summary>
  90. public string CategoryID { get; set; }
  91. /// <summary>
  92. ///
  93. /// </summary>
  94. public string CategoryName { get; set; }
  95. /// <summary>
  96. ///
  97. /// </summary>
  98. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  99. public List<ServiceCategoryDTO> SubCategoryList = new List<ServiceCategoryDTO>();
  100. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  101. public Dictionary<string, ServiceCategoryDTO> SubCategoryDic = new Dictionary<string, ServiceCategoryDTO>();
  102. }
  103. public class ServiceRegionDTO
  104. {
  105. /// <summary>
  106. ///
  107. /// </summary>
  108. public string RegionID { get; set; }
  109. /// <summary>
  110. ///
  111. /// </summary>
  112. public string RegionName { get; set; }
  113. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  114. public List<ServiceCountryDTO> CountryList = new List<ServiceCountryDTO>();
  115. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  116. public Dictionary<string, ServiceCountryDTO> CountryDic = new Dictionary<string, ServiceCountryDTO>();
  117. }
  118. public class ServiceCountryDTO
  119. {
  120. /// <summary>
  121. ///
  122. /// </summary>
  123. public string CountryID { get; set; }
  124. /// <summary>
  125. ///
  126. /// </summary>
  127. public string CountryName { get; set; }
  128. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  129. public List<CityDTO> CityList = new List<CityDTO>();
  130. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  131. public Dictionary<string, CityDTO> CityDic = new Dictionary<string, CityDTO>();
  132. }
  133. public class ONSiteItemDTO
  134. {
  135. /// <summary>
  136. ///
  137. /// </summary>
  138. public string Guid { get; set; }
  139. public string ItemType { get; set; }
  140. public string ItemName { get; set; }
  141. //文字説明(非堆高機,非卡車)
  142. public string CostRuleText { get; set; }
  143. public string ExpensesMemo { get; set; }
  144. public string EscortFreeCityID { get; set; }
  145. public DateTime? CreateDate { get; set; }
  146. //堆高機費用規則
  147. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  148. public List<ServiceCostRulesDTO> StackerCostRules = new List<ServiceCostRulesDTO>();
  149. //卡車費用規則
  150. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  151. public List<ServiceTruckCostRulesDTO> TruckCostRules = new List<ServiceTruckCostRulesDTO>();
  152. //卡車假日加班費
  153. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  154. public List<ServiceTruckOtherCostDTO> TruckHolidayPay = new List<ServiceTruckOtherCostDTO>();
  155. //卡車車型加價
  156. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  157. public List<ServiceTruckOtherCostDTO> TruckMarkupByModel = new List<ServiceTruckOtherCostDTO>();
  158. //卡車押車費用規則
  159. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  160. public List<ServiceTruckCostRulesDTO> TruckEscortCostRules = new List<ServiceTruckCostRulesDTO>();
  161. //非卡車,堆高機費用規則
  162. [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
  163. public List<ONSiteOtherCostRulesDTO> OtherCostRules = new List<ONSiteOtherCostRulesDTO>();
  164. }
  165. //堆高機費用規則
  166. public class ServiceCostRulesDTO
  167. {
  168. public int Index { get; set; }
  169. public string Guid { get; set; }
  170. public string Weight_Min { get; set; }
  171. public string Weight_Max { get; set; }
  172. public int? Price { get; set; }
  173. public string PricingMode { get; set; }
  174. public string Memo { get; set; }
  175. public DateTime? CreateDate { get; set; }
  176. }
  177. //卡車費用規則
  178. public class ServiceTruckCostRulesDTO
  179. {
  180. public string TruckID { get; set; }
  181. public string CityID { get; set; }
  182. public int? Price { get; set; }
  183. }
  184. //卡車假日加班費 卡車車型加價
  185. public class ServiceTruckOtherCostDTO
  186. {
  187. public string TruckID { get; set; }
  188. public int? Price { get; set; }
  189. }
  190. //非卡車,堆高機費用規則
  191. public class ONSiteOtherCostRulesDTO
  192. {
  193. public string Guid { get; set; }
  194. public string PricingMode { get; set; }
  195. public int? Price { get; set; }
  196. public int? InterbankPrice { get; set; }
  197. public string Unit_Min { get; set; }
  198. }
  199. public class OrderQuestionDTO
  200. {
  201. public string ServiceID { get; set; }
  202. public int QuestionID { get; set; }
  203. //1:必填 0:非必填
  204. public string RequiredFlag { get; set; }
  205. public string LangID { get; set; }
  206. public string SurveyName { get; set; }
  207. public string AnswerType { get; set; }
  208. public string Answer { get; set; }
  209. }
  210. public class BookingOrderDTO
  211. {
  212. public string LangType { get; set; }
  213. public string ExhibitionID { get; set; }
  214. public string CurrencyID { get; set; }
  215. public string PayType { get; set; }
  216. public string ServiceID { get; set; }
  217. public string TotalPrice { get; set; }
  218. public string SubTotal { get; set; }
  219. public List<string> BookingItem { get; set; }
  220. public List<string> OrderQuestion { get; set; }
  221. public string ServiceDateS { get; set; }
  222. public string ServiceDateE { get; set; }
  223. }
  224. }