团餐订单
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

30 satır
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. }