using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yunneiWCS.SystemInteraction.mes2.dto { /// /// 推送信息 /// public class MesRequest { /// /// 数据 /// public T Datas { get; set; } /// /// 系统类型 /// public string SystemType { get; set; } = "ERP"; /// /// Secret /// public string Secret { get; set; } = "HJY^*HGYIIY"; /// /// 表名 /// public string TableName { get; set; } /// /// 主键 /// public string PrimaryKeys { get; set; } } }