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
916 B
35 lines
916 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RS.Model
|
|
{
|
|
/// <summary>
|
|
/// 作业配方
|
|
/// </summary>
|
|
public class RecipeWork
|
|
{
|
|
/// <summary>
|
|
/// 作业配方名称
|
|
/// </summary>
|
|
public string workRecipeName { get; set; }
|
|
/// <summary>
|
|
/// SCR1·4
|
|
/// </summary>
|
|
public string scrOneRecipeName { get; set; }
|
|
public string scrTwoRecipeName { get; set; }
|
|
public string scrTreRecipeName { get; set; }
|
|
public string scrFouRecipeName { get; set; }
|
|
/// <summary>
|
|
/// 作业配方创建人
|
|
/// </summary>
|
|
public string workCreator { get; set; }
|
|
/// <summary>
|
|
/// 作业配方创建时间
|
|
/// </summary>
|
|
public string workTime { get; set; }
|
|
}
|
|
}
|