This commit is contained in:
2025-10-29 11:42:58 +08:00
parent 7f6f84cd0e
commit a178c3550e
190 changed files with 81361 additions and 92 deletions

View File

@@ -0,0 +1,21 @@
using System;
namespace FATrace.WPLApp.ModelDto
{
/// <summary>
/// 原料入库 DTO用于界面展示与导出
/// </summary>
public class RawProInputDto
{
public long Id { get; set; }
public string? RawCode { get; set; }
public string? RawName { get; set; }
public double Weight { get; set; }
public string? Batch { get; set; }
public int ShelfLife { get; set; }
public string RawSource { get; set; } = string.Empty; // 展示为文本
public double RemainWeight { get; set; }
public string RawState { get; set; } = string.Empty; // 展示为文本
public DateTime CreateTime { get; set; }
}
}