1
pulg
2025-05-14 5a640911f7e7ef3a003775993f077e1a0e9ac130
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.Hexafluo.util;
using HH.WCS.Hexafluo.wms;
 
namespace HH.WCS.ZCQTJ.Entitys
{
    /// <summary>
    /// 点对点接驳位释放表
    /// </summary>
    [ST("点对点接驳位释放表")]
    public class AloneWcsTaskUnbingEntitys : BaseModel
    {
        /// <summary>
        /// 任务号
        /// </summary>
        public string S_TASK_NO { get; set; }
        /// <summary>
        /// 接驳位
        /// </summary>
        public string JbLocation { get; set; }
        /// <summary>
        /// 是否读取 未读N 已读Y
        /// </summary>
        public string IsRead { get; set; }
    }
}