using System; using System.Collections.Generic; using System.Text; using Volo.Abp.Application.Dtos; namespace Shentun.Peis.Books { public class BookDto : AuditedEntityDto { public string Name { get; set; } public DateTime PublishDate { get; set; } public float Price { get; set; } } }