using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WCS.Mobox3.DSZSH.models {
///
/// 移库单明细
///
internal class TN_Shift_Detail : BaseModel {
public string S_NO { get; set; }
public string S_ITEM_CODE { get; set; }
public string S_ITEM_NAME { get; set; }
public string S_LOC_CODE { get; set; }
public string S_CNTR_CODE { get; set; }
public string S_BATCH_NO { get; set; }
public string S_END_AREA { get; set; }
///
/// 业务状态:0等待执行 1已执行待生成任务 2任务执行中 3任务完成
///
public int N_B_STATE { get; set; } = 1; // 创建即执行
}
}