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.
|
|
|
|
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_STORE_INFO")]
|
|
|
|
|
public class BaseStoreInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="OBJID" ,IsPrimaryKey = true )]
|
|
|
|
|
public string objid { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库编码
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="STORE_CODE" )]
|
|
|
|
|
public string storeCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库名称
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="STORE_NAME" )]
|
|
|
|
|
public string storeName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库位置
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="STORE_POSITION" )]
|
|
|
|
|
public string storePosition { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 库位数量
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="FACT_AMOUNT" )]
|
|
|
|
|
public int factAmount { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 占用数量
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="PLAN_AMOUNT" )]
|
|
|
|
|
public int planAmount { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库状态
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="STORE_STATUS" )]
|
|
|
|
|
public int storeStatus { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 备注
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="REMARK" )]
|
|
|
|
|
public string remark { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除标志
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="DELETE_FLAG" )]
|
|
|
|
|
public DeleteFlag deleteFlag { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 记录时间
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName="RECORD_TIME" )]
|
|
|
|
|
public DateTime? recordTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|