using IStation.Model.Repair;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class RepairRequestFormFinishedDto
{
///
///
///
public RepairRequestFormFinishedDto() { }
///
///
///
public RepairRequestFormFinishedDto(Model.RepairRequestForm rhs )
{
this.ID = rhs.ID;
this.FormNo = rhs.FormNo;
this.CreateUserID = rhs.CreateUserID;
this.CreateTime = rhs.CreateTime;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 表单号
///
public string FormNo { get; set; }
///
/// 创建用户标识
///
public long CreateUserID { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}
}