包装过站记录
This commit is contained in:
parent
98ffd904b1
commit
c7cae3079e
@ -0,0 +1,16 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace DOAN.Admin.WebApi.Controllers.Bydlms
|
||||
{
|
||||
/// <summary>
|
||||
/// 包装过站记录
|
||||
/// </summary>
|
||||
[Route("bydlms/BydPackagePassStation")]
|
||||
[AllowAnonymous]
|
||||
public class BydPackagePassStationController : ControllerBase
|
||||
{
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
171
DOAN.Model/Bydlms/PackagePassStation.cs
Normal file
171
DOAN.Model/Bydlms/PackagePassStation.cs
Normal file
@ -0,0 +1,171 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DOAN.Model.Bydlms
|
||||
{
|
||||
/// <summary>
|
||||
/// 包装过站记录
|
||||
/// </summary>
|
||||
[SugarTable("byd_package_pass_station")]
|
||||
public class PackagePassStation
|
||||
{
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 工厂编码
|
||||
/// </summary>
|
||||
public string factoryCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口编码
|
||||
/// </summary>
|
||||
public string serviceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接口编号
|
||||
/// </summary>
|
||||
public string interfaceCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 任务ID
|
||||
/// </summary>
|
||||
public string taskld { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 数据内容
|
||||
/// </summary>
|
||||
public string data { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 工单号
|
||||
/// </summary>
|
||||
public string orderNumber { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 排程单号
|
||||
/// </summary>
|
||||
public string scheduleNumber { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 产线编码
|
||||
/// </summary>
|
||||
public string lineCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 工位编码
|
||||
/// </summary>
|
||||
public string stationCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 站点编码(起点)
|
||||
/// </summary>
|
||||
public string fromPointCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 物料编码
|
||||
/// </summary>
|
||||
public string materialCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 物料名称
|
||||
/// </summary>
|
||||
public string materialName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料数量
|
||||
/// </summary>
|
||||
public string quantity { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 供应商编号
|
||||
/// </summary>
|
||||
public string supplierCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// sn编码
|
||||
/// </summary>
|
||||
public string snNumber { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 装箱规则编码
|
||||
/// </summary>
|
||||
public string packingRuleCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 装箱对象层级
|
||||
/// </summary>
|
||||
public string packingHierarchy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物料属性
|
||||
/// </summary>
|
||||
public string modeCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 容器编码
|
||||
/// </summary>
|
||||
public string containerCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 容器批号
|
||||
/// </summary>
|
||||
public string containerbatchNumbers { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_BY")]
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_TIME")]
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_BY")]
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否上传
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "isupload")]
|
||||
public int IsUpload { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user