using SqlSugar;
using WIDESEA_Core.DB.Models;
namespace WIDESEA_Model.Models
{
///
/// 拆盘临时表 - 用于暂存拆盘任务电芯列表,供批量确认时使用
///
[SugarTable(nameof(Dt_SplitTemp), "拆盘临时表")]
public class Dt_SplitTemp
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
///
/// 托盘号
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "托盘号")]
public string PalletCode { get; set; }
///
/// 电芯条码列表(JSON格式)
///
[SugarColumn(IsNullable = false, Length = -1, ColumnDescription = "电芯条码列表JSON")]
public string SfcList { get; set; }
///
/// 创建时间
///
[SugarColumn(IsNullable = false, ColumnDescription = "创建时间")]
public DateTime CreateTime { get; set; } = DateTime.Now;
}
}