|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
namespace Aucma.Scada.Model.domain
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 入库记录
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("RECORD_INSTORE")]
|
|
|
|
|
public class RecordInstore
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键标识
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="OBJ_ID" ,IsPrimaryKey = true ,OracleSequenceName = "SEQ_RECORD_INSTORE")]
|
|
|
|
|
public decimal objId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库编号
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="STORE_CODE" )]
|
|
|
|
|
public string storeCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库区域
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="STORE_AREA" )]
|
|
|
|
|
public string storeArea { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 货道编号
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="SPACE_CODE" )]
|
|
|
|
|
public string spaceCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物料类型
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="MATERIAL_TYPE" )]
|
|
|
|
|
public string materialType { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物料编号
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="MATERIAL_CODE" )]
|
|
|
|
|
public string materialCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 入库数量
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="IN_STORE_AMOUNT" )]
|
|
|
|
|
public decimal? inStoreAmount { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 入库时间
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="IN_STORE_TIME" )]
|
|
|
|
|
public DateTime? inStoreTime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物料条码编号
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="BARCODE_CODE" )]
|
|
|
|
|
public string barcodeCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 物料名称
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="MATERIAL_NAME" )]
|
|
|
|
|
public string materialName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 入库方式(0-正常,1-异常)
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="ENTRY_PATTERN" )]
|
|
|
|
|
public short? entryPattern { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否标识
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="IS_FLAG" )]
|
|
|
|
|
public short? isFlag { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="CREATED_BY" )]
|
|
|
|
|
public string createdBy { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="CREATED_TIME" )]
|
|
|
|
|
public DateTime? createdTime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新人
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="UPDATED_BY" )]
|
|
|
|
|
public string updatedBy { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新时间
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="UPDATED_TIME" )]
|
|
|
|
|
public DateTime? updatedTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|