刘磊
2025-04-19 823752496e2a4cdb6a1fb36227cd15b8b7135336
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
using AngleSharp.Text;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.DB.Models;
 
namespace WIDESEA_Model.Models
{
    [SugarTable(nameof(Dt_CacheInfo), "缓存架信息")]
 
    public class Dt_CacheInfo : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int ID { get; set; }
 
        /// <summary>
        /// 缓存架号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "缓存架号")]
        public string cacheNo { get; set; }
 
        /// <summary>
        /// 缓存架名称
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "缓存架名称")]
        public string cacheName { get; set; }
 
        /// <summary>
        /// 车轴号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "车轴号")]
        public string czh { get; set; }
 
        /// <summary>
        /// 所属车轮下料位 (左侧-2032  右侧-2042)
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 10, ColumnDescription = "所属车轮下料位")]
        public string targetAddress { get; set; }
 
        /// <summary>
        /// 创建方式  (1-自动创建  2-手动创建)
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "创建方式")]
        public int createType { get; set; }
 
        /// <summary>
        /// 缓存架备注
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "缓存架备注")]
        public string cacheDES { get; set; }
    }
}