/*********************************************************************** * 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("CoreCmsSetting",TableDescription = "店铺设置表")] public partial class CoreCmsSetting { /// /// 店铺设置表 /// public CoreCmsSetting() { } /// /// 键 /// [Display(Name = "键")] [SugarColumn(ColumnDescription = "键", IsPrimaryKey = true)] [Required(ErrorMessage = "请输入{0}")] [StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String sKey { get; set; } /// /// 值 /// [Display(Name = "值")] [SugarColumn(ColumnDescription = "值", IsNullable = true)] public System.String sValue { get; set; } } }