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.
26 lines
737 B
26 lines
737 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RS.Model.JsonModel
|
|
{
|
|
public class RecipeWorkJson
|
|
{
|
|
/// <summary>
|
|
/// 通道号
|
|
/// </summary>
|
|
public int f_track_no { get; set; }
|
|
/// <summary>
|
|
/// 总配方名
|
|
/// </summary>
|
|
public string f_rep_file_no { get; set; }
|
|
|
|
public List<RecipeInDetail> scr1Recipe = new List<RecipeInDetail>();
|
|
public List<RecipeInDetail> scr2Recipe = new List<RecipeInDetail>();
|
|
public List<RecipeInDetail> scr3Recipe = new List<RecipeInDetail>();
|
|
public List<RecipeInDetail> scr4Recipe = new List<RecipeInDetail>();
|
|
}
|
|
}
|