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.

28 lines
624 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module.SecsApi.Tcp
{
/// <summary>
/// 获取配方输出参数对象类
/// </summary>
public class MRepOut
{
/// <summary>
/// 通道编号
/// </summary>
public string? f_track_no { get; set; }
/// <summary>
/// 配方名称
/// </summary>
public string? f_cot_file_no { get; set; }
/// <summary>
/// 配方内容
/// </summary>
public string? f_ppbody { get; set; }
}
}