21 lines
442 B
C#
21 lines
442 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using JNPF.Common.Filter;
|
|
|
|
namespace Tnb.EquipMgr.Entities.Dto
|
|
{
|
|
public class PdaMaintainInput : PageInputBase
|
|
{
|
|
public string status { get; set; }
|
|
|
|
public string maintain_info { get; set; }
|
|
|
|
public DateTime? start_time { get; set; }
|
|
public DateTime? end_time { get; set; }
|
|
|
|
}
|
|
}
|