/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: 34161541@qq.com * CreateTime: 2024-03-01 22:14:58 * Description: 暂无 ***********************************************************************/ using SqlSugar; using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.Model.Entities { /// /// 提交表单保存大文本值表 /// [SugarTable("CoreCmsFormSubmitDetail",TableDescription = "提交表单保存大文本值表")] public partial class CoreCmsFormSubmitDetail { /// /// 提交表单保存大文本值表 /// public CoreCmsFormSubmitDetail() { } /// /// 序列 /// [Display(Name = "序列")] [SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)] [Required(ErrorMessage = "请输入{0}")] public System.Int32 id { get; set; } /// /// 提交表单id /// [Display(Name = "提交表单id")] [SugarColumn(ColumnDescription = "提交表单id")] [Required(ErrorMessage = "请输入{0}")] public System.Int32 submitId { get; set; } /// /// 表单id /// [Display(Name = "表单id")] [SugarColumn(ColumnDescription = "表单id")] [Required(ErrorMessage = "请输入{0}")] public System.Int32 formId { get; set; } /// /// 表单项id /// [Display(Name = "表单项id")] [SugarColumn(ColumnDescription = "表单项id")] [Required(ErrorMessage = "请输入{0}")] public System.Int32 formItemId { get; set; } /// /// 表单项名称 /// [Display(Name = "表单项名称")] [SugarColumn(ColumnDescription = "表单项名称", IsNullable = true)] [StringLength(200, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String formItemName { get; set; } /// /// 表单项值 /// [Display(Name = "表单项值")] [SugarColumn(ColumnDescription = "表单项值", IsNullable = true)] public System.String formItemValue { get; set; } } }