EarlyWarningReportResult.cs 534 B

1234567891011121314151617181920212223
  1. using NXWMS.DataAccess.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Runtime.Serialization;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace NXWMS.Model.AppModels.Result.Report
  9. {
  10. /// <summary>
  11. /// 预警报告查询
  12. /// </summary>
  13. public class EarlyWarningReportResult : WMS_LOG_EARLY_WARNING
  14. {
  15. public string CreateName { get; set; }
  16. public string UpdateName { get; set; }
  17. public string SendFlagName { get; set; }
  18. }
  19. }