/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
using System.Collections.Generic;
using CoreCms.Net.Model.Entities;
namespace CoreCms.Net.Model.FromBody
{
public class FMForm
{
///
/// form实体
///
public CoreCmsForm model { get; set; }
///
/// 子集表单
///
public List items { get; set; }
}
///
/// 获取表单详情提交数据
///
public class FmGetForm
{
public int id { get; set; } = 0;
public string token { get; set; }
}
///
/// 提交表单
///
public class FmAddSubmit
{
public int id { get; set; } = 0;
public string token { get; set; }
public List data { get; set; }
}
///
/// 获取提交表单明细资源
///
public class FmAddSubmitItems
{
public int key { get; set; }
public string value { get; set; }
}
///
/// 获取提交表单明细资源中的商品数据
///
public class FmAddSubmitItemGoods
{
public int key { get; set; }
public int productId { get; set; }
public int goodsId { get; set; }
public int nums { get; set; }
public decimal price { get; set; }
}
}