Files
FATrace/FATrace.WPLApp/ModelDto/RawProInputDto.cs
2025-10-29 11:42:58 +08:00

22 lines
708 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}