251029
This commit is contained in:
21
FATrace.WPLApp/ModelDto/RawProInputDto.cs
Normal file
21
FATrace.WPLApp/ModelDto/RawProInputDto.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user