mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 19:53:27 +08:00
38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
/***********************************************************************
|
|
* Project: CoreCms
|
|
* ProjectName: 核心内容管理系统
|
|
* Web: https://www.corecms.net
|
|
* Author: 大灰灰
|
|
* Email: jianweie@163.com
|
|
* CreateTime: 2021/1/31 21:45:10
|
|
* Description: 暂无
|
|
***********************************************************************/
|
|
|
|
|
|
namespace CoreCms.Net.Model.FromBody
|
|
{
|
|
//API接口提交================================================
|
|
/// <summary>
|
|
/// 申请成为分销商接口提交参数
|
|
/// </summary>
|
|
public class FMDistributionApply
|
|
{
|
|
public string agreement { get; set; }
|
|
public string mobile { get; set; }
|
|
public string name { get; set; }
|
|
public string qq { get; set; }
|
|
public string weixin { get; set; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 店铺设置提交参数
|
|
/// </summary>
|
|
public class FMSetDistributionStorePost
|
|
{
|
|
public string storeBanner { get; set; }
|
|
public string storeDesc { get; set; }
|
|
public string storeLogo { get; set; }
|
|
public string storeName { get; set; }
|
|
}
|
|
} |