mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 21:03:26 +08:00
【新增】自定义交易组件增加【获取商家信息】【更新商家信息】两个接口处理。
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CoreCms.Net.WeChat.Service.TransactionComponent.FromBody
|
||||
{
|
||||
/// <summary>
|
||||
/// 更新商家信息提交
|
||||
/// </summary>
|
||||
public class FMUpdateInfo
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 小程序path
|
||||
/// </summary>
|
||||
public string service_agent_path { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string service_agent_phone { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public List<int> service_agent_type { get; set; }
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public Default_receiving_address default_receiving_address { get; set; }
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 默认退货地址,退货售后超时时,会让用户将货物寄往此地址。
|
||||
/// </summary>
|
||||
public class Default_receiving_address
|
||||
{
|
||||
/// <summary>
|
||||
/// 张三
|
||||
/// </summary>
|
||||
public string receiver_name { get; set; }
|
||||
/// <summary>
|
||||
/// 详细收货地址信息
|
||||
/// </summary>
|
||||
public string detailed_address { get; set; }
|
||||
/// <summary>
|
||||
/// 收货人电话
|
||||
/// </summary>
|
||||
public string tel_number { get; set; }
|
||||
/// <summary>
|
||||
/// 国家
|
||||
/// </summary>
|
||||
public string country { get; set; }
|
||||
/// <summary>
|
||||
/// 省份
|
||||
/// </summary>
|
||||
public string province { get; set; }
|
||||
/// <summary>
|
||||
/// 城市
|
||||
/// </summary>
|
||||
public string city { get; set; }
|
||||
/// <summary>
|
||||
/// 区县
|
||||
/// </summary>
|
||||
public string town { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user