You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
375 B
C#
19 lines
375 B
C#
namespace Admin.Core.Model.ViewModels;
|
|
|
|
public class MesDownLoadPlanList
|
|
{
|
|
/// <summary>
|
|
/// 配方编号
|
|
/// </summary>
|
|
public string RecipeID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次号
|
|
/// </summary>
|
|
public string Batch { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品名称
|
|
/// </summary>
|
|
public string ProductName { get; set; }
|
|
} |