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.
66 lines
2.0 KiB
C#
66 lines
2.0 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("RECORD_INSTORE")]
|
|
public class RecordInStore
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
///</summary>
|
|
[SugarColumn(ColumnName="OBJID" ,IsPrimaryKey = true )]
|
|
public string objid { 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="INSTORE_STATUS" )]
|
|
public InStoreStatus inStoreStatus { 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; }
|
|
}
|
|
}
|