62 lines
1.5 KiB
62 lines
1.5 KiB
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.Runtime.Serialization;
|
||
|
using System.Xml.Serialization;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
|
||
|
namespace WmsWebApi.Boms;
|
||
|
|
||
|
public class BomDto : EntityDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 父件物料
|
||
|
/// </summary>
|
||
|
[Display(Name = "父件物料")]
|
||
|
public string MATNR { get; set; }
|
||
|
/// <summary>
|
||
|
/// 物料描述
|
||
|
/// </summary>
|
||
|
[Display(Name = "物料描述")]
|
||
|
public string MAKTX { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工厂
|
||
|
/// </summary>
|
||
|
[Display(Name = "工厂")]
|
||
|
public string WERKS { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// BOM用途
|
||
|
/// </summary>
|
||
|
[Display(Name = "BOM用途")]
|
||
|
public string STLAN { get; set; }
|
||
|
/// <summary>
|
||
|
/// 可选BOM
|
||
|
/// </summary>
|
||
|
[Display(Name = "可选BOM")]
|
||
|
public string STLAL { get; set; }
|
||
|
/// <summary>
|
||
|
/// 有效起始日期
|
||
|
/// </summary>
|
||
|
[Display(Name = "有效起始日期")]
|
||
|
public string DATUV { get; set; }
|
||
|
/// <summary>
|
||
|
/// 基本数量
|
||
|
/// </summary>
|
||
|
[Display(Name = "基本数量")]
|
||
|
public decimal? BMENG { get; set; }
|
||
|
/// <summary>
|
||
|
/// BOM状态
|
||
|
/// </summary>
|
||
|
[Display(Name = "BOM状态")]
|
||
|
public string STLST { get; set; }
|
||
|
/// <summary>
|
||
|
/// BOM删除标志
|
||
|
/// </summary>
|
||
|
[Display(Name = "BOM删除标志")]
|
||
|
public string LOEKZ { get; set; }
|
||
|
|
||
|
|
||
|
public virtual List<BomDetailDto> items { get; set; }
|
||
|
}
|