master
parent
4781bf8e66
commit
66174200b2
@ -0,0 +1,116 @@
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
//<copyright>
|
||||
// * Copyright (C) 2021 KEHAIDASOFT All Rights Reserved
|
||||
// * version : 4.0.30319.42000
|
||||
// * author : khd by t4-2
|
||||
// </copyright>
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Khd.Core.Domain.Models
|
||||
{
|
||||
|
||||
[Table("base_dictionary")]
|
||||
public class BaseDictionary
|
||||
{
|
||||
|
||||
[Key]
|
||||
[Column("OBJID")]
|
||||
public Guid objid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 字典名
|
||||
/// </summary>
|
||||
[Column("DIC_NAME")]
|
||||
public string dicName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 字段名
|
||||
/// </summary>
|
||||
[Column("DIC_FIELD")]
|
||||
public string dicField { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应名
|
||||
/// </summary>
|
||||
[Column("DIC_KEY")]
|
||||
public string dicKey { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应值
|
||||
/// </summary>
|
||||
[Column("DIC_VALUE")]
|
||||
public string dicValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排序
|
||||
/// </summary>
|
||||
[Column("DIC_SORT")]
|
||||
public string dicSort { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否允许编辑 1允许 0不允许
|
||||
/// </summary>
|
||||
[Column("IS_EDIT")]
|
||||
public int? isEdit { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否可用 0:不可用 1:可用
|
||||
/// </summary>
|
||||
[Column("USE_FLAG")]
|
||||
public int? useFlag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建者
|
||||
/// </summary>
|
||||
[Column("CREATE_BY")]
|
||||
public string createBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column("CREATE_TIME")]
|
||||
public DateTime? createTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新者
|
||||
/// </summary>
|
||||
[Column("UPDATE_BY")]
|
||||
public string updateBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[Column("UPDATE_TIME")]
|
||||
public DateTime? updateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用字段1
|
||||
/// </summary>
|
||||
[Column("UD1")]
|
||||
public string ud1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用字段2
|
||||
/// </summary>
|
||||
[Column("UD2")]
|
||||
public string ud2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用字段3
|
||||
/// </summary>
|
||||
[Column("UD3")]
|
||||
public string ud3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[Column("REMARK")]
|
||||
public string remark { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,140 @@
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
//<copyright>
|
||||
// * Copyright (C) 2021 KEHAIDASOFT All Rights Reserved
|
||||
// * version : 4.0.30319.42000
|
||||
// * author : khd by t4-2
|
||||
// </copyright>
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Khd.Core.Domain.Models
|
||||
{
|
||||
|
||||
[Table("wcs_cmd")]
|
||||
public class WcsCmd
|
||||
{
|
||||
|
||||
[Key]
|
||||
[Column("OBJID")]
|
||||
public Guid objid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 任务id
|
||||
/// </summary>
|
||||
[Column("TASK_ID")]
|
||||
public Guid taskId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备id
|
||||
/// </summary>
|
||||
[Column("EQUIP_ID")]
|
||||
public Guid equipId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 指令类型,字典表
|
||||
/// </summary>
|
||||
[Column("CMD_TYPE")]
|
||||
public int? cmdType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
[Column("QTY")]
|
||||
public int? qty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 流水号
|
||||
/// </summary>
|
||||
[Column("SERIAL_NO")]
|
||||
public long? serialNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前点编号
|
||||
/// </summary>
|
||||
[Column("CURR_POINT_NO")]
|
||||
public string currPointNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前点id
|
||||
/// </summary>
|
||||
[Column("CURR_POINT_ID")]
|
||||
public Guid currPointId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 下一点编号
|
||||
/// </summary>
|
||||
[Column("NEXT_POINT_NO")]
|
||||
public string nextPointNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 下一点id
|
||||
/// </summary>
|
||||
[Column("NEXT_POINT_ID")]
|
||||
public Guid nextPointId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 指令状态,字典表
|
||||
/// </summary>
|
||||
[Column("CMD_STATUS")]
|
||||
public int? cmdStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否可用 0:不可用 1:可用
|
||||
/// </summary>
|
||||
[Column("USE_FLAG")]
|
||||
public int? useFlag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建者
|
||||
/// </summary>
|
||||
[Column("CREATE_BY")]
|
||||
public string createBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column("CREATE_TIME")]
|
||||
public DateTime? createTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新者
|
||||
/// </summary>
|
||||
[Column("UPDATE_BY")]
|
||||
public string updateBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[Column("UPDATE_TIME")]
|
||||
public DateTime? updateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用字段1
|
||||
/// </summary>
|
||||
[Column("UD1")]
|
||||
public string ud1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用字段2
|
||||
/// </summary>
|
||||
[Column("UD2")]
|
||||
public string ud2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用字段3
|
||||
/// </summary>
|
||||
[Column("UD3")]
|
||||
public string ud3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[Column("REMARK")]
|
||||
public string remark { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,142 @@
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
//<copyright>
|
||||
// * Copyright (C) 2021 KEHAIDASOFT All Rights Reserved
|
||||
// * version : 4.0.30319.42000
|
||||
// * author : khd by t4-2
|
||||
// </copyright>
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Khd.Core.Domain.Models
|
||||
{
|
||||
|
||||
[Table("wcs_cmd_log")]
|
||||
public class WcsCmdLog
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
[Column("OBJID")]
|
||||
public Guid objid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 任务id
|
||||
/// </summary>
|
||||
[Column("TASK_ID")]
|
||||
public Guid taskId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备id
|
||||
/// </summary>
|
||||
[Column("EQUIP_ID")]
|
||||
public Guid equipId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 指令类型,字典表
|
||||
/// </summary>
|
||||
[Column("CMD_TYPE")]
|
||||
public int? cmdType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
[Column("QTY")]
|
||||
public int? qty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 流水号
|
||||
/// </summary>
|
||||
[Column("SERIAL_NO")]
|
||||
public long? serialNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前点编号
|
||||
/// </summary>
|
||||
[Column("CURR_POINT_NO")]
|
||||
public string currPointNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前点id
|
||||
/// </summary>
|
||||
[Column("CURR_POINT_ID")]
|
||||
public Guid currPointId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 下一点编号
|
||||
/// </summary>
|
||||
[Column("NEXT_POINT_NO")]
|
||||
public string nextPointNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 下一点id
|
||||
/// </summary>
|
||||
[Column("NEXT_POINT_ID")]
|
||||
public Guid nextPointId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 指令状态,字典表
|
||||
/// </summary>
|
||||
[Column("CMD_STATUS")]
|
||||
public int? cmdStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否可用 0:不可用 1:可用
|
||||
/// </summary>
|
||||
[Column("USE_FLAG")]
|
||||
public int? useFlag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建者
|
||||
/// </summary>
|
||||
[Column("CREATE_BY")]
|
||||
public string createBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column("CREATE_TIME")]
|
||||
public DateTime? createTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新者
|
||||
/// </summary>
|
||||
[Column("UPDATE_BY")]
|
||||
public string updateBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[Column("UPDATE_TIME")]
|
||||
public DateTime? updateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用字段1
|
||||
/// </summary>
|
||||
[Column("UD1")]
|
||||
public string ud1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用字段2
|
||||
/// </summary>
|
||||
[Column("UD2")]
|
||||
public string ud2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备用字段3
|
||||
/// </summary>
|
||||
[Column("UD3")]
|
||||
public string ud3 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[Column("REMARK")]
|
||||
public string remark { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,134 @@
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
//<copyright>
|
||||
// * Copyright (C) 2021 KEHAIDASOFT All Rights Reserved
|
||||
// * version : 4.0.30319.42000
|
||||
// * author : khd by t4-2
|
||||
// </copyright>
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Khd.Core.Domain.Models
|
||||
{
|
||||
|
||||
[Table("wcs_stock")]
|
||||
public class WcsStock
|
||||
{
|
||||
|
||||
[Key]
|
||||
[Column("OBJID")]
|
||||
public Guid objid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料主键
|
||||
/// </summary>
|
||||
[Column("MATERIAL_ID")]
|
||||
public int? materialId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料编码
|
||||
/// </summary>
|
||||
[Column("MATERIAL_CODE")]
|
||||
public string materialCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料名称
|
||||
/// </summary>
|
||||
[Column("MATERIAL_NAME")]
|
||||
public string materialName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料类型
|
||||
/// </summary>
|
||||
[Column("MATERIAL_TYPE")]
|
||||
public string materialType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 仓库主键
|
||||
/// </summary>
|
||||
[Column("WAREHOUSE_ID")]
|
||||
public Guid warehouseId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 库位编码
|
||||
/// </summary>
|
||||
[Column("LOCATION_CODE")]
|
||||
public string locationCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 库位名称
|
||||
/// </summary>
|
||||
[Column("LOCATION_NAME")]
|
||||
public string locationName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 层
|
||||
/// </summary>
|
||||
[Column("LAYER_NO")]
|
||||
public int? layerNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 列
|
||||
/// </summary>
|
||||
[Column("COL_NO")]
|
||||
public int? colNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排
|
||||
/// </summary>
|
||||
[Column("ROW_NO")]
|
||||
public int? rowNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 深位
|
||||
/// </summary>
|
||||
[Column("DEEP_NO")]
|
||||
public int? deepNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 楼层编号
|
||||
/// </summary>
|
||||
[Column("FLOOR_NO")]
|
||||
public int? floorNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否可用 0:不可用 1:可用
|
||||
/// </summary>
|
||||
[Column("USE_FLAG")]
|
||||
public int? useFlag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建者
|
||||
/// </summary>
|
||||
[Column("CREATE_BY")]
|
||||
public string createBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Column("CREATE_TIME")]
|
||||
public DateTime? createTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新者
|
||||
/// </summary>
|
||||
[Column("UPDATE_BY")]
|
||||
public string updateBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[Column("UPDATE_TIME")]
|
||||
public DateTime? updateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[Column("REMARK")]
|
||||
public string remark { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue