/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* 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; }
}
}