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.

15 lines
432 B
C#

namespace DS.WMS.Core.App.Dtos;
/// <summary>
/// 客户业务处理信息
/// </summary>
public class CustCheckInput
{
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; } //落箱 班列落箱 时 填写区位信息
}