/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: 34161541@qq.com * CreateTime: 2021-06-08 22:14:59 * Description: 暂无 ***********************************************************************/ using SqlSugar; using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.Model.Entities { /// /// 用户余额表 /// [SugarTable("CoreCmsUserBalance",TableDescription = "用户余额表")] public partial class CoreCmsUserBalance { /// /// 用户余额表 /// public CoreCmsUserBalance() { } /// /// 序列 /// [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 userId { get; set; } /// /// 类型 /// [Display(Name = "类型")] [SugarColumn(ColumnDescription = "类型")] [Required(ErrorMessage = "请输入{0}")] public System.Int32 type { get; set; } /// /// 金额 /// [Display(Name = "金额")] [SugarColumn(ColumnDescription = "金额")] [Required(ErrorMessage = "请输入{0}")] public System.Decimal money { get; set; } /// /// 余额 /// [Display(Name = "余额")] [SugarColumn(ColumnDescription = "余额")] [Required(ErrorMessage = "请输入{0}")] public System.Decimal balance { get; set; } /// /// 资源id /// [Display(Name = "资源id")] [SugarColumn(ColumnDescription = "资源id", IsNullable = true)] [StringLength(20, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String sourceId { get; set; } /// /// 描述 /// [Display(Name = "描述")] [SugarColumn(ColumnDescription = "描述", IsNullable = true)] [StringLength(200, ErrorMessage = "【{0}】不能超过{1}字符长度")] public System.String memo { get; set; } /// /// 创建时间 /// [Display(Name = "创建时间")] [SugarColumn(ColumnDescription = "创建时间")] [Required(ErrorMessage = "请输入{0}")] public System.DateTime createTime { get; set; } } }