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
| using Admin.NET.Core;
|
| /*
| * @author : 您的名字
| * @date : 2024/7/21上午10:18:14
| * @desc : 打印配置表
| */
| namespace Admin.NET.Application.Entity
| {
| /// <summary>
| /// 加密表
| /// </summary>
| [SugarTable("wms_config_encryption", "加密表")]
| public class WmsConfigEncryption : EntityBase
| {
| /// <summary>
| /// 加密触发时间
| /// </summary>
|
| [SugarColumn(ColumnName = "IssueTime", ColumnDescription = "加密触发时间", Length = 50)]
| public string IssueTime { get; set; }
|
|
| /// <summary>
| /// 加密密码
| /// </summary>
| [SugarColumn(ColumnName = "PassWord", ColumnDescription = "加密密码", Length = 50)]
| public string PassWord { get; set; }
|
|
| }
| }
|
|