You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
542 B
C#

namespace DS.WMS.Core.App.Dtos;
/// <summary>
/// 处理业务信息
/// </summary>
public class DealWorkInfo
{
public Guid GID { get; set; } //OP_YARD_CTNMNG_WORK.GID
public string OP { get; set; }//叉车司机姓名 中文
public string WORKTYPE { get; set; } //落箱 装车 班列落箱 班列装车 班列移位
public string AREACODE { get; set; } //落箱 班列落箱 时 填写区位信息
public int? CARNUM_1 { get; set; }//计划车架号
public int? CARNUM_2 { get; set; }//实际车架号
}