Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoLogisticsExpressPriceModifyModel.cs

81 lines
2.8 KiB
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoLogisticsExpressPriceModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoLogisticsExpressPriceModifyModel : AopObject
{
/// <summary>
/// 查询区域类型 AREA_PRVN:省代码; AREA_CITY:市代码;
/// </summary>
[JsonProperty("area_type")]
public string AreaType { get; set; }
/// <summary>
/// 续重价格(单位:元)
/// </summary>
[JsonProperty("extra_weight_price")]
public string ExtraWeightPrice { get; set; }
/// <summary>
/// 续重单位(单位:克)
/// </summary>
[JsonProperty("extra_weight_unit")]
public long ExtraWeightUnit { get; set; }
/// <summary>
/// 发货区域代码 区域类型为省代码时为省代码; 区域类型为市代码时为市代码; 省市区代码采用国家标准编码,详见国家统计局数据,
/// <a
/// href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7395905.0.0.IwSSLe&file=2016.xls">
/// 点此下载
/// </a>
/// 。
/// </summary>
[JsonProperty("from_code")]
public string FromCode { get; set; }
/// <summary>
/// 物流机构编码,参照物流机构编码文档,
/// <a
/// href="https://expressprod.oss-cn-hangzhou.aliyuncs.com/docs/%E5%AF%84%E4%BB%B6%E5%B9%B3%E5%8F%B0-%E7%89%A9%E6%B5%81%E6%9C%BA%E6%9E%84%E7%BC%96%E7%A0%81%E6%96%87%E6%A1%A3.xlsx">
/// 点此下载
/// </a>
/// 。
/// </summary>
[JsonProperty("logis_merch_code")]
public string LogisMerchCode { get; set; }
/// <summary>
/// 首重重量(单位:克)
/// </summary>
[JsonProperty("preset_weight")]
public long PresetWeight { get; set; }
/// <summary>
/// 首重价格(单位:元)
/// </summary>
[JsonProperty("preset_weight_price")]
public string PresetWeightPrice { get; set; }
/// <summary>
/// 产品类型编码,取值如下: STANDARD标准快递。这是寄件平台默认支持的产品分类如有其他产品分类的支持需求可以发送邮件至xxx@alipay.com联系。
/// </summary>
[JsonProperty("product_type_code")]
public string ProductTypeCode { get; set; }
/// <summary>
/// 收货区域代码 区域类型为省代码时为省代码; 区域类型为市代码时为市代码; 省市区代码采用国家标准编码,详见国家统计局数据,
/// <a
/// href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7395905.0.0.IwSSLe&file=2016.xls">
/// 点此下载
/// </a>
/// 。
/// </summary>
[JsonProperty("to_code")]
public string ToCode { get; set; }
}
}