团餐订单
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.
 
 

21 lines
530 B

  1. using BPA.KitChen.GroupMealOrder.Application.BaseDto;
  2. using BPA.KitChen.GroupMealOrder.Core.Entity;
  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.GroupMealOrder.Application.Service.Order.Dtos
  9. {
  10. public class ThirdOrderDto: BPA_ThirdOrder
  11. {
  12. public List<BPA_ThirdOrderInfo> ThirdOrderInfos { get; set; }
  13. }
  14. public class ThirdOrderInputDto: PageInputBase
  15. {
  16. public string OrderNum { get; set; }
  17. }
  18. }