huangxiaoqiang
2025-05-19 051aa9a0e7f58af6665fb4526e42cf8060fbaa05
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
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.AGV
{
    /// <summary>
    /// 设备信息表
    ///</summary>
    [SugarTable("Dt_DeviceInfo")]
    public class Dt_DeviceInfo : BaseEntity
    {
        /// <summary>
        /// 设备主键
        /// </summary>
        [SugarColumn(ColumnName= "DeviceId", IsPrimaryKey = true,IsIdentity = true) ]
        public int DeviceId { get; set; }
 
        /// <summary>
        /// 备  注:设备名称
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "DeviceName")]
        public string DeviceName { get; set; }
 
        /// <summary>
        /// 备  注:运行状态
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "RuntimeStatus")]
        public string RuntimeStatus { get; set; }
 
        /// <summary>
        /// 备  注:手自动状态
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "AutoStatus")]
        public string AutoStatus { get; set; }
    }
}