using Volo.Abp.Application.Dtos; namespace CMS.Plugin.PipeLineLems.Application.Contracts.Dtos.MyTestEntityNames; /// /// MyTestEntityName创建或更新基类 /// public abstract class MyTestEntityNameCreateOrUpdateDtoBase : ExtensibleEntityDto { /// /// 编号 /// public virtual string Code { get; set; } /// /// 名称 /// public virtual string Name { get; set; } /// /// 备注 /// public virtual string Remark { get; set; } /// /// Initializes a new instance of the class. /// public MyTestEntityNameCreateOrUpdateDtoBase() : base(false) { } }