using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WCS.Model.ApiModel.OutStore; namespace WCS.BLL.DbModels { [SugarTable("wcs_app_version")] public class AppVersion { /// /// 主键 自增Id /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsNullable = false, IsIdentity = true)] public int Id { get; set; } /// /// APP文件名称 /// [SugarColumn(ColumnName = "app_name", Length = 100, IsNullable = false, ColumnDescription = "APP文件名称")] public string AppName { get; set; } /// /// 版本号 /// [SugarColumn(ColumnName = "version", Length = 100, IsNullable = false, ColumnDescription = "版本号")] public string Version { get; set; } /// /// 更新内容 /// [SugarColumn(ColumnName = "content", Length = 250, IsNullable = true, ColumnDescription = "更新内容")] public string Content { get; set; } /// /// 操作时间 /// [SugarColumn(ColumnName = "operate_time", IsNullable = false, ColumnDescription = "操作时间")] public DateTime OperateTime { get; set; } = DateTime.Now; } }