/***********************************************************************
|
* Project: baifenBinfa
|
* ProjectName: 百分兵法管理系统
|
* Web: http://chuanyin.com
|
* Author:
|
* Email:
|
* CreateTime: 202403/02
|
* Description: 暂无
|
***********************************************************************/
|
|
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
|
namespace CoreCms.Net.Model.FromBody
|
{
|
#region 后端=================================================================================
|
|
/// <summary>
|
/// 页面布局类
|
/// </summary>
|
[Display(Name = "页面布局类")]
|
public class FmPagesUpdate
|
{
|
[Display(Name = "区域编码")]
|
[Required(ErrorMessage = "请输入{0}")]
|
public string pageCode { get; set; }
|
|
[Display(Name = "数据子集")]
|
[Required(ErrorMessage = "请输入{0}")]
|
public List<Items> datalist { get; set; }
|
}
|
|
/// <summary>
|
/// 数据子集类型
|
/// </summary>
|
[Display(Name = "数据子集类型")]
|
public class Items
|
{
|
[Display(Name = "数据子集类型")]
|
[Required(ErrorMessage = "请输入{0}")]
|
public string sType { get; set; }
|
|
[Display(Name = "数据子集值")]
|
[Required(ErrorMessage = "请输入{0}")]
|
public string sValue { get; set; }
|
}
|
|
#endregion
|
|
|
#region 小程序交互=================================================================================
|
|
/// <summary>
|
/// 获取随机用户购买记录提交参数
|
/// </summary>
|
public class FMGetRecodPost
|
{
|
public string type { get; set; }
|
public int value { get; set; }
|
}
|
|
#endregion
|
}
|