using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class EpanetFileLogicDto
{
///
///
///
public EpanetFileLogicDto() { }
///
///
///
public EpanetFileLogicDto(Model.EpanetFile rhs)
{
this.ID = rhs.ID;
this.CorpID = rhs.CorpID;
this.BelongType = rhs.BelongType;
this.BelongID = rhs.BelongID;
this.Name = rhs.Name;
this.StorageHouse = rhs.StorageHouse;
this.StorageCode = rhs.StorageCode;
this.IsWorking = rhs.IsWorking;
this.Description = rhs.Description;
this.CreateTime = rhs.CreateTime;
this.CreateUserID = rhs.CreateUserID;
this.UpdateTime = rhs.UpdateTime;
this.UpdateUserID = rhs.UpdateUserID;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 所属类型
///
public string BelongType { get; set; }
///
/// 所属id
///
public long BelongID { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 存储仓库
///
public string StorageHouse { get; set; }
///
/// 存储编码
///
public string StorageCode { get; set; }
///
/// 工作文件
///
public bool IsWorking { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
/// 创建用户标识
///
public long CreateUserID { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
///
/// 更新用户标识
///
public long? UpdateUserID { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
}
}