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.
44 lines
937 B
44 lines
937 B
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using Win_in.Sfs.Shared.Domain.Shared;
|
||
|
|
||
|
namespace Win_in.Sfs.Basedata.Application.Contracts;
|
||
|
|
||
|
public class EquipmentPartCodeCheckInput
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 器具代号
|
||
|
/// </summary>
|
||
|
[Display(Name = "器具代码")]
|
||
|
[Required(ErrorMessage = "{0}是必填项")]
|
||
|
public string Code { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
///// <summary>
|
||
|
///// 型号
|
||
|
///// </summary>
|
||
|
//[Display(Name = "型号")]
|
||
|
//public string Model { get; set; } = string.Empty;
|
||
|
/// <summary>
|
||
|
/// 库位编号
|
||
|
/// </summary>
|
||
|
[Display(Name = "零件代码")]
|
||
|
[Required(ErrorMessage = "{0}是必填项")]
|
||
|
public string PartCode { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// 标包数量
|
||
|
/// </summary>
|
||
|
[Display(Name = "标包数")]
|
||
|
[Required(ErrorMessage = "{0}是必填项")]
|
||
|
public decimal StdQty { get; set; }
|
||
|
|
||
|
|
||
|
}
|