using System.ComponentModel.DataAnnotations; using Abp.AutoMapper; using IwbZero.AppServiceBase; namespace ShwasherSys.CompanyInfo.FixedAssetInfo.Dto { /// /// 设备固定资产维护 /// [AutoMapTo(typeof(FixedAsset))] public class FixedAssetCreateDto:IwbEntityDto { /// /// 资产编号 /// [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; } } }