kazelee
2025-05-30 cbba9b897a865fbf253a03cd818a1044637e8334
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
using SqlSugar;
 
namespace HH.WCS.Mobox3.DSZSH.models {
    /// <summary>
    /// 移库单
    /// </summary>
    [SugarTable("TN_Relocation_List")]
    public class TN_Relocation_List : BaseModel {
        public string S_NO { get; set; }
        //public string S_ITEM_CODE { get; set; }
        //public string S_ITEM_NAME { get; set; }
        //public string S_BATCH_NO { get; set; }
        //public int N_COUNT { get; set; }
        public string S_END_AREA { get; set; }
        /// <summary>
        /// 业务状态:0等待执行 1已执行待生成任务 2任务执行中 3任务完成
        /// </summary>
        public int N_B_STATE { get; set; } = 0; // 创建后需要确认执行
    }
}