27 lines
561 B
C#
27 lines
561 B
C#
|
|
using SqlSugar;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace WCS.Business.Dto
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
[SugarTable("t_plc")]
|
|||
|
|
public class PlcDto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// PlcId
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "PLCID", IsPrimaryKey = true)]
|
|||
|
|
public string PlcId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 物料名称
|
|||
|
|
/// </summary>
|
|||
|
|
[SugarColumn(ColumnName = "PLCNAME")]
|
|||
|
|
public string PlcName { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|