using System.ComponentModel.DataAnnotations;
using Win_in.Sfs.Shared.Domain;
using Win_in.Sfs.Shared.Domain.Shared;
namespace Win_in.Sfs.Basedata.Application.Contracts;
[Display(Name = "器具容量占用信息")]
public class EquipmentLocCapDTO : SfsBaseDataDTOBase, IHasCode
{
///
/// 器具代码
///
[Display(Name = "器具代码")]
public string Code { get; set; }
///
/// 占用百分比
///
[Display(Name = "占用百分比")]
public decimal Percent { get; set; }
///
/// 零件号
///
public string PartCode { get; set; }
///
/// 录入数量
///
public decimal Qty { get; set; }
///
/// 标包数量
///
public decimal StdQty { get; set; }
}