56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.MES.recipe.Dto
|
|
{
|
|
/// <summary>
|
|
/// 产品配方关联表查询对象
|
|
/// </summary>
|
|
public class PfRefProductRecipeQueryDto : PagerInfo
|
|
{
|
|
public string RecipeCode { get; set; }
|
|
|
|
public string Productcode { get; set; }
|
|
|
|
public string ProductName { get; set; }
|
|
public string FkRoutingCode { get; set; }
|
|
|
|
public string FkOperationCode { get; set; }
|
|
|
|
public string FkLineCode { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 产品配方关联表输入输出对象
|
|
/// </summary>
|
|
public class PfRefProductRecipeDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string RecipeCode { get; set; }
|
|
|
|
public string Productcode { get; set; }
|
|
|
|
public string ProductName { get; set; }
|
|
|
|
public string FkRoutingCode { get; set; }
|
|
|
|
public string FkOperationCode { get; set; }
|
|
|
|
public string FkLineCode { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
}
|
|
public class RecipeCodePullDownDto
|
|
{
|
|
public string label { get; set; }
|
|
public string value { get; set; }
|
|
}
|
|
} |