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 { /// /// PlcId /// [SugarColumn(ColumnName = "PLCID", IsPrimaryKey = true)] public string PlcId { get; set; } /// /// 物料名称 /// [SugarColumn(ColumnName = "PLCNAME")] public string PlcName { get; set; } } }