| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using Volo.Abp.Application.Dtos;
- namespace Business.BookManagement.Dto
- {
- public class CreateOrUpdateBookDto: EntityDto<Guid?>
- {
-
- /// <summary>
- /// 书名
- /// </summary>
- [Required]
- public string Name { get; set; }
-
- /// <summary>
- /// 描述
- /// </summary>
- public string Description { get; set; }
-
- /// <summary>
- /// 价格
- /// </summary>
- public int Price { get; set; }
-
- }
- }
|