46 lines
991 B
C#
Raw Normal View History

2026-01-10 13:47:54 +08:00
using System.ComponentModel.DataAnnotations;
namespace MDM.Model.Material.Dto
{
/// <summary>
/// 查询对象
/// </summary>
public class MaterialBomQueryDto : PagerInfo
{
public string? InvCode { get; set; }
public string? SubInvCode { get; set; }
}
/// <summary>
/// 输入输出对象
/// </summary>
public class MaterialBomDto
{
[Required(ErrorMessage = "雪花id不能为空")]
2026-01-13 18:49:46 +08:00
public int Id { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-15 16:43:25 +08:00
public string? InvCode { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-15 16:43:25 +08:00
public string? InvName { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-15 16:43:25 +08:00
public string? SubInvCode { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-15 16:43:25 +08:00
public string? SubInvName { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-15 16:43:25 +08:00
public string? Iusequantity { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-15 16:37:45 +08:00
public string? BOMVersion { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-15 16:37:45 +08:00
public string? CreatedBy { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-16 15:08:40 +08:00
public DateTime? CreatedTime { get; set; }
2026-01-10 13:47:54 +08:00
2026-01-15 16:37:45 +08:00
public string? UpdatedBy { get; set; }
2026-01-10 13:47:54 +08:00
public DateTime? UpdatedTime { get; set; }
}
}