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.
 
 

35 lines
695 B

  1. using BPA.KitChen.GroupMeal.Core.Entity;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.KitChen.GroupMeal.Application.Service.Shop.Dtos
  9. {
  10. public class ShopDto: ShopEntity
  11. {
  12. }
  13. public class ShopCreateOrUpdateDto
  14. {
  15. public string Id { get; set; }
  16. public string Name { get; set; }
  17. public string OrgId { get; set; }
  18. public string Phone { get; set; }
  19. }
  20. public class ShopPageDto : PageInputDto
  21. {
  22. public string Name { get; set; }
  23. public string Phone { get; set; }
  24. public string OrgId { get; set; }
  25. }
  26. }