1234567891011121314151617181920212223 |
- using NXWMS.DataAccess.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Result.Report
- {
- /// <summary>
- /// 预警报告查询
- /// </summary>
- public class EarlyWarningReportResult : WMS_LOG_EARLY_WARNING
- {
- public string CreateName { get; set; }
-
- public string UpdateName { get; set; }
- public string SendFlagName { get; set; }
- }
- }
|