修正表结构

This commit is contained in:
qianhao.xu
2024-11-01 11:35:11 +08:00
parent d4fd12fd96
commit e4da25b1ca
13 changed files with 374 additions and 9 deletions

View File

@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.PBL.Dto
{
public class LightUpDto
{
/// <summary>
/// 工单号
/// </summary>
public string Workorder { get; set; }
/// <summary>
/// 订单号
/// </summary>
public string OrderNumber { get; set; }
/// <summary>
/// 总成零件号
/// </summary>
public string AssemblyPartNumber { get; set; }
}
}

View File

@@ -18,11 +18,18 @@ namespace DOAN.Model.PBL.Dto
{
[Required(ErrorMessage = "Id不能为空")]
public int Id { get; set; }
public string RackCode { get; set; }
public int LayerNum { get; set; }
public string Partnumber { get; set; }
public string RackCode { get; set; }
/// <summary>
/// 最大容量
/// </summary>
public int MaxCapacity { get; set; }
public int? PackageNum { get; set; }
public string CreatedBy { get; set; }