/*********************************************************************** * 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 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; } } }