移动系统liao
2025-03-07 8c92db325f7c801d2df095763a17673fa6c92085
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace Models
{
    /// <summary>
    /// 车辆管理
    ///</summary>
    [SugarTable("OA_CarManage")]
    public class OA_CarManage
    {
        
     
        /// <summary>
        /// 备  注:主键--标识ID
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Keyid" ,IsPrimaryKey = true,IsIdentity = true) ]
        public int Keyid  { get; set;  } 
     
        /// <summary>
        /// 备  注:会员ID
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="MemberID" ) ]
        public Guid? MemberID  { get; set;  } 
     
        /// <summary>
        /// 备  注:车牌号
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="CarNumber" ) ]
        public string? CarNumber  { get; set;  } 
     
        /// <summary>
        /// 备  注:车辆类型
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="CarType" ) ]
        public string? CarType  { get; set;  } 
     
        /// <summary>
        /// 备  注:起始里程
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="StartMileage" ) ]
        public int? StartMileage  { get; set;  } 
     
        /// <summary>
        /// 备  注:当前里程
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="NowMileage" ) ]
        public int? NowMileage  { get; set;  } 
     
        /// <summary>
        /// 备  注:车辆状况
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="CarCondition" ) ]
        public int? CarCondition  { get; set;  } 
     
        /// <summary>
        /// 备  注:操作时间
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="LastUpdateTime" ) ]
        public DateTime? LastUpdateTime  { get; set;  } 
     
        /// <summary>
        /// 备  注:更新人
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="Operator" ) ]
        public string? Operator  { get; set;  } 
     
        /// <summary>
        /// 备  注:排序
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="OrderNum" ) ]
        public int? OrderNum  { get; set;  } 
     
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="StaffID" ) ]
        public int? StaffID  { get; set;  } 
     
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="InsuranceCompany" ) ]
        public string? InsuranceCompany  { get; set;  } 
     
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="InsuranceEndTime" ) ]
        public DateTime? InsuranceEndTime  { get; set;  } 
     
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="MaintenanceNextTime" ) ]
        public DateTime? MaintenanceNextTime  { get; set;  } 
     
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="ExaminedNextTime" ) ]
        public DateTime? ExaminedNextTime  { get; set;  } 
     
        /// <summary>
        /// 备  注:
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName="InsuranceContent" ) ]
        public string? InsuranceContent  { get; set;  } 
    
 
    }
    
}