You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
849 B
35 lines
849 B
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
|
|
{
|
|
/// <summary>
|
|
/// 器具代码
|
|
/// </summary>
|
|
[Display(Name = "器具代码")]
|
|
public string Code { get; set; }
|
|
/// <summary>
|
|
/// 占用百分比
|
|
/// </summary>
|
|
[Display(Name = "占用百分比")]
|
|
public decimal Percent { get; set; }
|
|
/// <summary>
|
|
/// 零件号
|
|
/// </summary>
|
|
public string PartCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 录入数量
|
|
/// </summary>
|
|
public decimal Qty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标包数量
|
|
/// </summary>
|
|
public decimal StdQty { get; set; }
|
|
|
|
|
|
}
|
|
|