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.
69 lines
1.8 KiB
C#
69 lines
1.8 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("BASE_MATERIAL_STORE")]
|
|
public class BaseMaterialStore
|
|
{
|
|
/// <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="LOCATION_STATUS" )]
|
|
public LocationStatus locationStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库位区域
|
|
///</summary>
|
|
[SugarColumn(ColumnName="LOCATION_AREA" )]
|
|
public LocationArea locationArea { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除标志
|
|
///</summary>
|
|
[SugarColumn(ColumnName="DELETE_FLAG" )]
|
|
public DeleteFlag deleteFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 记录时间
|
|
///</summary>
|
|
[SugarColumn(ColumnName="RECORD_TIME" )]
|
|
public DateTime? recordTime { get; set; }
|
|
}
|
|
}
|