/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using SqlSugar; namespace CoreCms.Net.Model.Entities { /// /// 表单项表 /// public partial class CoreCmsFormItem { /// /// 商品 /// [Display(Name = "商品")] [SugarColumn(IsIgnore = true)] public CoreCmsGoods good { get; set; } /// /// 商品购物车数量 /// [Display(Name = "商品购物车数量")] [SugarColumn(IsIgnore = true)] public int cartCount { get; set; } = 0; /// /// 复选内容 /// [Display(Name = "复选内容")] [SugarColumn(IsIgnore = true)] public List checkboxValue { get; set; } /// /// 单选内容 /// [Display(Name = "单选内容")] [SugarColumn(IsIgnore = true)] public List radioValue { get; set; } /// /// 表单提交值 /// [Display(Name = "表单提交值")] [SugarColumn(IsIgnore = true)] public string postValue { get; set; } = ""; } /// /// 表单checkbox选中集合实体 /// public class TempCheckbox { public bool @checked { get; set; } public string value { get; set; } } }