using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using System.ComponentModel.DataAnnotations; namespace ShwasherSys.BasicInfo.QualityIssueLabelInfo.Dto { /// /// 质量问题标签维护 /// [AutoMapTo(typeof(QualityIssueLabel))] public class QualityIssueLabelUpdateDto: EntityDto { /// /// 标签名称 /// [Required] [StringLength(QualityIssueLabel.NameMaxLength)] public string Name { get; set; } /// /// 标签描述 /// [StringLength(QualityIssueLabel.DescMaxLength)] public string Description { get; set; } } }