using System; using System.Collections.Generic; using System.Linq; using AUCMA.STORE.Entity.Enums; using SqlSugar; namespace AUCMA.STORE.Entity.DAO { /// /// 物料库位关系表 /// [SugarTable("BASE_MATERIAL_STORE")] public class BaseMaterialStore { /// /// 主键 /// [SugarColumn(ColumnName="OBJID" ,IsPrimaryKey = true )] public string objid { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnName="MATERIAL_CODE" )] public string materialCode { get; set; } /// /// 物料类型 /// [SugarColumn(ColumnName="MATERIAL_TYPE" )] public string materialType { get; set; } /// /// 仓库 /// [SugarColumn(ColumnName="STORE_CODE" )] public string storeCode { get; set; } /// /// 库位编码 /// [SugarColumn(ColumnName="LOCATION_CODE" )] public string locationCode { get; set; } /// /// 库位状态 /// [SugarColumn(ColumnName="LOCATION_STATUS" )] public LocationStatus locationStatus { get; set; } /// /// 库位区域 /// [SugarColumn(ColumnName="LOCATION_AREA" )] public LocationArea locationArea { get; set; } /// /// 删除标志 /// [SugarColumn(ColumnName="DELETE_FLAG" )] public DeleteFlag deleteFlag { get; set; } /// /// 记录时间 /// [SugarColumn(ColumnName="RECORD_TIME" )] public DateTime? recordTime { get; set; } } }