SGGL_SHJ/SGGL/Model/CLGL/Tw_InOutDetailOutput.cs

25 lines
698 B
C#
Raw Normal View History

2024-09-18 10:48:34 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class Tw_InOutDetailOutput:Model.Tw_InOutPlanDetail
{
public string PipelineComponentCode { get; set; } //预制组件代码
public string MaterialName { get; set; } //预制组件代码
public string InputMasterId { get; set; }
2024-09-24 20:38:50 +08:00
public string OutputMasterId { get; set; }
/// <summary>
/// 库存数量
/// </summary>
public decimal StockNum { get; set; }
/// <summary>
/// 差异数量
/// </summary>
public decimal DiffNum { get; set; }
2024-09-18 10:48:34 +08:00
}
}