mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 19:03:27 +08:00
添加项目文件。
This commit is contained in:
63
CoreCms.Net.Model/FromBody/FMAgent.cs
Normal file
63
CoreCms.Net.Model/FromBody/FMAgent.cs
Normal file
@@ -0,0 +1,63 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using CoreCms.Net.Model.Entities;
|
||||
|
||||
namespace CoreCms.Net.Model.FromBody
|
||||
{
|
||||
|
||||
public class FMCreateAgentGood
|
||||
{
|
||||
/// <summary>
|
||||
/// 商品主体
|
||||
/// </summary>
|
||||
public CoreCmsAgentGoods good { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 货品数据
|
||||
/// </summary>
|
||||
public List<CoreCmsAgentProducts> products { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
//API接口提交================================================
|
||||
/// <summary>
|
||||
/// 申请成为代理商接口提交参数
|
||||
/// </summary>
|
||||
public class FMAgentApply
|
||||
{
|
||||
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 FMSetAgentStorePost
|
||||
{
|
||||
public string storeBanner { get; set; }
|
||||
public string storeDesc { get; set; }
|
||||
public string storeLogo { get; set; }
|
||||
public string storeName { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user