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.

16 lines
314 B
C#

namespace DS.WMS.Core.App.Dtos;
/// <summary>
/// 客户业务查询实体
/// </summary>
public class CustWorkQueryModel
{
/// <summary>
/// 箱号
/// </summary>
public string CNTRNO { get; set; }
/// <summary>
/// 车号
/// </summary>
public string TRUCKNO { get; set; }
}