using System.ComponentModel.DataAnnotations;
using Abp.Application.Services.Dto;
using Abp.AutoMapper;
namespace ShwasherSys.CompanyInfo.FixedAssetInfo.Dto
{
///
/// 设备固定资产维护
///
[AutoMapTo(typeof(FixedAsset))]
public class FixedAssetUpdateDto: EntityDto
{
// ///
// /// 资产编号
// ///
// [StringLength(FixedAsset.NoMaxLength)]
//public string No { get; set; }
///
/// 资产名称
///
[StringLength(FixedAsset.NameMaxLength)]
public string Name { get; set; }
///
/// 资产类型
///
[StringLength(FixedAsset.ModelMaxLength)]
public string Model { get; set; }
///
/// 资产描述
///
[StringLength(FixedAsset.DescMaxLength)]
public string Description { get; set; }
}
}