临河任务调度
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
898B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Volo.Abp.Application.Dtos;
  7. namespace Himp.TaskScheduling
  8. {
  9. public class CodeConversionDto : EntityDto<long>
  10. {
  11. /// <summary>
  12. /// 原始码
  13. /// </summary>
  14. public string SorcCode { get; set; }
  15. /// <summary>
  16. /// 目标码
  17. /// </summary>
  18. public string TargetCode { get; set; }
  19. /// <summary>
  20. /// 1 规批码转制样码
  21. /// 2 制样码准化验码
  22. /// 3 化验码转瓶底码
  23. /// </summary>
  24. public int ConversionType { get; set; }
  25. /// <summary>
  26. ///
  27. /// </summary>
  28. public DateTime ConversionTime { get; set; }
  29. /// <summary>
  30. ///
  31. /// </summary>
  32. public string OperName { get; set; }
  33. }
  34. }