11
cjs
2025-05-30 41388b3fc48589a26ba7e79fc60ffc0facd21be7
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
using HH.WCS.Mobox3.NFLZ.models;
using SqlSugar;
using System;
 
namespace HH.WCS.Mobox3.NFLZ
{
    [SugarTable("TN_LinZhiDeviceState")]
    public class LinZhiDeviceState : BaseModel
    {
        /// <summary>
        /// 产线号
        /// </summary>
        public string DeviceName { get; set; }
        /// <summary>
        /// 第一次收到产线下线信号时间-仅更新一次
        /// </summary>
        public string DeviceTime { get; set; }
        /// <summary>
        /// 设备状态标识
        /// --0-默认值:收到下线信号可以更新 DeviceStartTime
        /// --1-锁定值:更新 DeviceStartTime 值之后,更改此值,此时不允许更新 DeviceStartTime 值,等到取货完成恢复为0
        /// </summary>
        public string DeviceState { get; set; }
    }
}