You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
640 B

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.Peis.PriceItems
  5. {
  6. public class UpdatePriceItemDto
  7. {
  8. /// <summary>
  9. /// 发票项目类别ID
  10. /// </summary>
  11. public Guid InvoiceItemTypeId { get; set; }
  12. /// <summary>
  13. /// 价表编码
  14. /// </summary>
  15. public string? PriceItemCode { get; set; }
  16. /// <summary>
  17. /// 名称
  18. /// </summary>
  19. public string DisplayName { get; set; } = null!;
  20. /// <summary>
  21. /// 价格
  22. /// </summary>
  23. public decimal Price { get; set; }
  24. }
  25. }