28 lines
541 B
C#
28 lines
541 B
C#
|
|
namespace RIZO.Model.Mes.Dto.MasterData
|
|
{
|
|
/// <summary>
|
|
/// PLC通讯首位码查询对象
|
|
/// </summary>
|
|
public class PlcFirstCodeQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// PLC通讯首位码输入输出对象
|
|
/// </summary>
|
|
public class PlcFirstCodeDto
|
|
{
|
|
[Required(ErrorMessage = "Id不能为空")]
|
|
public long Id { get; set; }
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
public string Feature { get; set; }
|
|
|
|
public string FirstCode { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |