12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.request.hj
- {
- public class TunnelStatusEntity
- {
- public string Code { get; set; }
- public string Name { get; set; }
- public string Tunnel { get; set; }
- public string Statu { get; set; }
- public string StatuName { get; set; }
- public string Remark { get; set; }
- public DateTime CreateTime { get; set; }
- public DateTime UpdateTime { get; set; }
- }
- }
|