using HStation.Assets;
using System.ComponentModel.DataAnnotations;
using Yw.Model;
namespace HStation.Dto.Assets
{
public class AddAssetsManufacturerInput
{
public AddAssetsManufacturerInput()
{ }
public AddAssetsManufacturerInput(Model.AssetsManufacturer rhs)
{
this.Name = rhs.Name;
this.Contacter = rhs.Contacter;
this.Telephone = rhs.Telephone;
this.Address = rhs.Address;
this.Flags = rhs.Flags;
this.TagName = rhs.TagName;
this.UseStatus = rhs.UseStatus;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 名称
///
public string Name { get; set; }
///
/// 联系人
///
public string Contacter { get; set; }
///
/// 联系电话
///
public string Telephone { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// 标签列表
///
public List Flags { get; set; }
///
/// 标签名称
///
public string TagName { get; set; }
///
/// 使用状态
///
public Yw.Model.eUseStatus UseStatus { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}