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.
81 lines
2.5 KiB
C#
81 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using AUCMA.STORE.Entity.Enums;
|
|
using SqlSugar;
|
|
namespace AUCMA.STORE.Entity.DAO
|
|
{
|
|
/// <summary>
|
|
/// 待出库信息
|
|
///</summary>
|
|
[SugarTable("PREPARE_OUTSTORE_INFO")]
|
|
public class PrepareOutStoreInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
///</summary>
|
|
[SugarColumn(ColumnName="OBJID" ,IsPrimaryKey = true )]
|
|
public string objid { get; set; }
|
|
/// <summary>
|
|
/// 任务编码
|
|
///</summary>
|
|
[SugarColumn(ColumnName="TASK_CODE" )]
|
|
public string taskCode { get; set; }
|
|
/// <summary>
|
|
/// 堆垛机编号
|
|
///</summary>
|
|
[SugarColumn(ColumnName="PILER_CODE" )]
|
|
public string pilerCode { get; set; }
|
|
/// <summary>
|
|
/// 箱体编码
|
|
///</summary>
|
|
[SugarColumn(ColumnName="BOX_CODE" )]
|
|
public string boxCode { get; set; }
|
|
/// <summary>
|
|
/// 物料编码
|
|
///</summary>
|
|
[SugarColumn(ColumnName="MATERIAL_CODE" )]
|
|
public string materialCode { get; set; }
|
|
/// <summary>
|
|
/// 物料类型
|
|
///</summary>
|
|
[SugarColumn(ColumnName="MATERIAL_TYPE" )]
|
|
public string materialType { get; set; }
|
|
/// <summary>
|
|
/// 目标仓库
|
|
///</summary>
|
|
[SugarColumn(ColumnName="STORE_CODE" )]
|
|
public string storeCode { get; set; }
|
|
/// <summary>
|
|
/// 目标库位
|
|
///</summary>
|
|
[SugarColumn(ColumnName="LOCATION_CODE" )]
|
|
public string locationCode { get; set; }
|
|
/// <summary>
|
|
/// 自动出库、手动出库
|
|
///</summary>
|
|
[SugarColumn(ColumnName="OPERATION_TYPE" )]
|
|
public OperationType operationType { get; set; }
|
|
/// <summary>
|
|
/// 出库状态
|
|
///</summary>
|
|
[SugarColumn(ColumnName="OUTSTORE_STAUTS" )]
|
|
public OutStoreStatus outStoreStatus { get; set; }
|
|
/// <summary>
|
|
/// 开始时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName="BEGIN_TIME" )]
|
|
public DateTime? beginTime { get; set; }
|
|
/// <summary>
|
|
/// 结束时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName="END_TIME" )]
|
|
public DateTime? endTime { get; set; }
|
|
/// <summary>
|
|
/// 记录时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName="RECORD_TIME" )]
|
|
public DateTime? recordTime { get; set; }
|
|
}
|
|
}
|