22 lines
708 B
C#
22 lines
708 B
C#
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; }
|
||
}
|
||
}
|