华恒Mes鼎捷代码
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.

26 lines
654 B

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace WebApplication1.Models
  8. {
  9. public class Params
  10. {
  11. [Required(AllowEmptyStrings = true)]
  12. public string CreateUser { get; set; }
  13. /// <summary>
  14. /// 制单时间
  15. /// </summary>
  16. [Required(AllowEmptyStrings = true)]
  17. public DateTime CreateTime { get; set; }
  18. /// <summary>
  19. /// 修改时间
  20. /// </summary>
  21. [Required(AllowEmptyStrings = true)]
  22. public DateTime MTIME { get; set; }
  23. }
  24. }