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.
153 lines
3.6 KiB
153 lines
3.6 KiB
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace Entity.ShowEasyDtos
|
|
{
|
|
public class ONSiteBaseInfoDTO
|
|
{
|
|
public string ServiceID { get; set; }
|
|
//服務編號
|
|
public string ServiceNo { get; set; }
|
|
//服務名稱
|
|
public string ServiceName { get; set; }
|
|
|
|
//費用説明
|
|
public string ExpenseDescription { get; set; }
|
|
//常見問題
|
|
public List<FQADTO> FQAs { get; set; }
|
|
//適用展會
|
|
public string ExhibitionNames { get; set; }
|
|
//訂單確認工作天
|
|
public string ConfirmDays { get; set; }
|
|
//服務適用地
|
|
public string SuitPlaces { get; set; }
|
|
//服務領取地
|
|
public string ReceivinPlaces { get; set; }
|
|
//適用展會ID
|
|
public string ExhibitionID { get; set; }
|
|
//服務特色 (服務名稱下方的)
|
|
public string Features { get; set; }
|
|
//服務説明
|
|
public string Details { get; set; }
|
|
//取消政策
|
|
public string CancelPolicy { get; set; }
|
|
|
|
|
|
//public string SupplierID { get; set; }
|
|
|
|
//public string CurrencyID { get; set; }
|
|
|
|
//public DateTime? LaunchDateS { get; set; }
|
|
|
|
//public DateTime? LaunchDateE { get; set; }
|
|
|
|
//public string PayType { get; set; }
|
|
|
|
//public string CMode { get; set; }
|
|
|
|
|
|
//public string SuitPlace { get; set; }
|
|
|
|
|
|
|
|
//public string CancelPolicy { get; set; }
|
|
|
|
//public string OrderMemo { get; set; }
|
|
|
|
//public string SubCategoryID { get; set; }
|
|
|
|
//public string ExhibitionID { get; set; }
|
|
|
|
|
|
//public string OrderQuestions { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
public class FQADTO
|
|
{
|
|
|
|
|
|
|
|
public string Question { get; set; }
|
|
|
|
public string Answer { get; set; }
|
|
}
|
|
|
|
|
|
public class ServiceCategoryDTO
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string CategoryID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string CategoryName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public List<ServiceCategoryDTO> SubCategoryList = new List<ServiceCategoryDTO>();
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public Dictionary<string, ServiceCategoryDTO> SubCategoryDic = new Dictionary<string, ServiceCategoryDTO>();
|
|
|
|
|
|
}
|
|
|
|
public class ServiceRegionDTO
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string RegionID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string RegionName { get; set; }
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public List<ServiceCountryDTO> CountryList = new List<ServiceCountryDTO>();
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public Dictionary<string, ServiceCountryDTO> CountryDic = new Dictionary<string, ServiceCountryDTO>();
|
|
|
|
}
|
|
|
|
|
|
public class ServiceCountryDTO
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string CountryID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string CountryName { get; set; }
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public List<CityDTO> CityList = new List<CityDTO>();
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public Dictionary<string, CityDTO> CityDic = new Dictionary<string, CityDTO>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|