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.
77 lines
2.0 KiB
C#
77 lines
2.0 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HighWayIot.Repository.domain
|
|
{
|
|
/// <summary>
|
|
/// 货道信息
|
|
/// </summary>
|
|
[SugarTable("BASE_SPACEINFO")]
|
|
public class BaseSpaceInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键标识
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int objId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货道编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SPACE_CODE")]
|
|
public string spaceCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货道名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SPACE_NAME")]
|
|
public string spaceName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货道容量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SPACE_CAPACITY")]
|
|
public int spaceCapacity { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货道库存
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SPACE_STOCK")]
|
|
public int spaceStock { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货道状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SPACE_STATUS")]
|
|
public int spaceStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 货道类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SPACE_TYPE")]
|
|
public int spaceType { 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 = "IS_FLAG")]
|
|
public int isFlag { get; set; }
|
|
}
|
|
}
|