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.

28 lines
598 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace djy.Paas.Model
{
/// <summary>
/// 箱型箱量Dto
/// </summary>
public class BoxInfoDto
{
/// <summary>
/// 提箱小票Guid
/// </summary>
public Guid? TxxpGid { get; set; }
/// <summary>
/// 箱子类型尺寸
/// </summary>
public string BoxType { get; set; }
/// <summary>
/// 箱子数量
/// </summary>
public int BoxCount { get; set; }
}
}