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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPA.KitChen.GroupMealOrder.Application.Service.AExternalPlatform.BaseDto
  7. {
  8. public class BaseRequestDto<T>
  9. {
  10. /// <summary>
  11. /// 是否下发
  12. /// </summary>
  13. public bool IsPush { get; set; }
  14. /// <summary>
  15. /// 回调地址
  16. /// </summary>
  17. public string CallbackUrl { get; set; }
  18. public List<string> StoreIdList { get; set; }
  19. public List<string> DeviceIdList { get; set; }
  20. public List<T> DataInfo { get; set; }
  21. }
  22. }