This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RS.Model
{
/// <summary>
/// 当前机台下 有什么配方
/// </summary>
public class RecipeMachine
/// 配方名称
public string scrRecipeName { get; set; }
/// 机台名称(SCR1—SCR4)
public string scrMachineName { get; set; }
/// 创建人
public string founderId { get; set; }
/// 创建时间
public string foundTime { get; set; }
}