TunnelStatusEntity.cs 507 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.hj
  5. {
  6. public class TunnelStatusEntity
  7. {
  8. public string Code { get; set; }
  9. public string Name { get; set; }
  10. public string Tunnel { get; set; }
  11. public string Statu { get; set; }
  12. public string StatuName { get; set; }
  13. public string Remark { get; set; }
  14. public DateTime CreateTime { get; set; }
  15. public DateTime UpdateTime { get; set; }
  16. }
  17. }