|
12345678910111213141516171819202122232425262728293031323334 |
- using BPA.KitChen.GroupMeal.Core.Entity;
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPA.KitChen.GroupMeal.Application.Service.Shop.Dtos
- {
- public class ShopDto: ShopEntity
- {
- }
-
- public class ShopCreateOrUpdateDto
- {
- public string Id { get; set; }
-
- public string Name { get; set; }
-
- public string OrgId { get; set; }
-
- public string Phone { get; set; }
-
- }
-
- public class ShopPageDto : PageInputDto
- {
- public string Name { get; set; }
- public string Phone { get; set; }
-
- public string OrgId { get; set; }
- }
- }
|