using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.KitChen.GroupMeal.Application.Service.AExternalPlatform.BaseDto { public class BaseRequestDto { /// /// 是否下发 /// public bool IsPush { get; set; } /// /// 回调地址 /// public string CallbackUrl { get; set; } public List StoreIdList { get; set; } public List DeviceIdList { get; set; } public List DataInfo { get; set; } } }