huanghongfeng
2025-09-12 cfc2c35552e6a0ec66e962b52d120b34bc10fc83
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
 
namespace WIDESEAWCS_Model.Models
{
 
    [SugarTable("EquipmentStatus", "设备运行状态表")]
    public class EquipmentStatus : BaseEntity
    {
        /// <summary>
        /// 站台ID
        /// </summary>
        [SugarColumn(IsIdentity = true, IsPrimaryKey = true, ColumnDescription = "ID")]
        public int Equipment_id { get; set; }
 
        /// <summary>
        /// 设备编号
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "设备编号")]
        public string Equipment_Number { get; set; }
 
        /// <summary>
        /// 设备名称
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "设备名称")]
        public string Equipment_name { get; set; }
 
        /// <summary>
        /// 设备状态(0--正常,1--故障,2--维修中)
        /// </summary>
        [SugarColumn( ColumnDescription = "设备状态")]
        public int Equipment_Status { get; set; }
 
        /// <summary>
        /// 设备类型(1--堆垛机,2--RGV,3---站台)
        /// </summary>
        [SugarColumn(ColumnDescription = "设备类型")]
        public int Equipment_type { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn( Length = 50, ColumnDescription = "备注", IsNullable = true)]
        public string Station_remark { get; set; }
 
    }
}