【新增】自定义交易组件增加【获取商家信息】【更新商家信息】两个接口处理。

This commit is contained in:
大灰灰
2022-08-20 01:26:56 +08:00
parent 05a37fb99a
commit 57b7855595
9 changed files with 415 additions and 5 deletions

View File

@@ -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; }
}
}