using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RS.Model.JsonModel { public class RecipeWorkJson { /// /// 通道号 /// public int f_track_no { get; set; } /// /// 总配方名 /// public string f_rep_file_no { get; set; } public List scr1Recipe = new List(); public List scr2Recipe = new List(); public List scr3Recipe = new List(); public List scr4Recipe = new List(); } }