生产管理

This commit is contained in:
qianhao.xu
2024-12-03 14:35:59 +08:00
parent 5e522c6e00
commit aab3a3b58d
41 changed files with 4616 additions and 2 deletions

View File

@@ -0,0 +1,77 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.base_.Dto
{
public class BaseBomTreeDto
{
/// <summary>
/// 雪花id
/// </summary>
public string Id { get; set; }
/// <summary>
/// 母件编码
/// </summary>
public string InvCode { get; set; }
/// <summary>
/// 母件名称
/// </summary>
public string InvName { get; set; }
/// <summary>
/// 子件编码
/// </summary>
public string SubInvCode { get; set; }
/// <summary>
/// 子件名称
/// </summary>
public string SubInvName { get; set; }
/// <summary>
/// 使用数量
/// </summary>
public string Iusequantity { get; set; }
/// <summary>
/// BOM版本号
/// </summary>
public string BOMVersion { get; set; }
/// <summary>
/// CreatedBy
/// </summary>
public string CreatedBy { get; set; }
/// <summary>
/// CreatedTime
/// </summary>
public DateTime? CreatedTime { get; set; }
/// <summary>
/// UpdatedBy
/// </summary>
public string UpdatedBy { get; set; }
/// <summary>
/// UpdatedTime
/// </summary>
public DateTime? UpdatedTime { get; set; }
public List<BaseBomTreeDto> Child { get; set; }=new List<BaseBomTreeDto>();
}
}