using System;
using System.Collections.Generic;
using System.Text;
namespace Model.ModelDto.SysDto
{
public class PalletsDto
{
public int Id { get; set; }
///
/// 托盘号 号码使用完成后从起始重新循环生成(使用中的跳过)
///
public string PalletNo { get; set; }
///
/// 类行 0:托盘 1:中转箱(托盘上存放的容器/二级托盘) 功能控制是否开启中转箱
///
public string Type { get; set; }
///
/// 状态 0:未使用 1:使用中
///
public string Status { get; set; }
///
/// 上次使用时间
///
public DateTime? LastUse { get; set; }
///
/// 添加人
///
public string CreateUserName { get; set; }
///
/// 添加时间
///
public DateTime CreateTime { get; set; }
}
}