xiaojiao
2025-12-26 4279cb4384f7f960d87af8b8ad9db73c2dececa3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA.Entity.SystemModels;
 
namespace WIDESEA.Entity.DomainModels
{
    [Entity(TableCnName = "APP更新记录表", TableName = "dt_appVersionRecord")]
    public class dt_appVersionRecord : BaseEntity
    {
        /// <summary>
        ///主键
        /// </summary>
        [Key]
        [Display(Name = "主键")]
        [DisplayFormat(DataFormatString = "18,2")]
        [Column(TypeName = "decimal")]
        [Required(AllowEmptyStrings = false)]
        public decimal APPVersion { get; set; }
 
        /// <summary>
        ///创建人
        /// </summary>
        [Display(Name = "创建人")]
        [MaxLength(40)]
        [Column(TypeName = "nvarchar(40)")]
        public string CreateBy { get; set; }
 
        /// <summary>
        ///创建时间
        /// </summary>
        [Display(Name = "创建时间")]
        [Column(TypeName = "datetime")]
        [Required(AllowEmptyStrings = false)]
        public DateTime CreateTime { get; set; }
 
        /// <summary>
        ///备注
        /// </summary>
        [Display(Name = "备注")]
        [MaxLength(400)]
        [Column(TypeName = "nvarchar(400)")]
        public string Reamks { get; set; }
 
        /// <summary>
        ///更新文件地址
        /// </summary>
        [Display(Name = "更新文件地址")]
        [MaxLength(510)]
        [Column(TypeName = "nvarchar(510)")]
        public string FilePath { get; set; }
 
 
    }
}