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.
85 lines
1.8 KiB
85 lines
1.8 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Mes.Mes;
|
|
|
|
/// <summary>
|
|
/// 新增和更新基础DTO
|
|
/// </summary>
|
|
public class MesProductL7PartsNoteCreateOrUpdateInputBase : SfsDataExchangeCreateOrUpdateInputBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 自增长ID
|
|
/// </summary>
|
|
|
|
public int RowID { get; set; }
|
|
///// <summary>
|
|
///// 接口类型
|
|
///// </summary>
|
|
//[Display(Name = "接口类型")]
|
|
//public string InfoType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年份
|
|
/// </summary>
|
|
[Display(Name = "年份")]
|
|
public string Year { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品号
|
|
/// </summary>
|
|
[Display(Name = "产品号")]
|
|
public string ProductNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 项目号
|
|
/// </summary>
|
|
|
|
[Display(Name = "项目号")]
|
|
public string Program { get; set; }
|
|
|
|
/// <summary>
|
|
/// 位置
|
|
/// </summary>
|
|
|
|
[Display(Name = "位置")]
|
|
public string Position { get; set; }
|
|
|
|
/// <summary>
|
|
/// FATA
|
|
/// </summary>
|
|
|
|
[Display(Name = "FATA")]
|
|
public string FATA { get; set; }
|
|
|
|
/// <summary>
|
|
/// 配置号
|
|
/// </summary>
|
|
[Display(Name = "配置号")]
|
|
public string Configuration { get; set; }
|
|
|
|
/// <summary>
|
|
/// L7物品
|
|
/// </summary>
|
|
[Display(Name = "L7物品")]
|
|
public string L7Part { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
[Display(Name = "数量")]
|
|
public int Qty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
//[Display(Name = "状态")]
|
|
public int State { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
//[Display(Name = "创建时间")]
|
|
public DateTime CreateDate { get; set; }
|
|
}
|
|
|