namespace SiNan.Model.Dto { public class CampaignAggregationRequest { /// /// ShopId可空 /// public long? ShopId { get; set; } public DateTime AggregationStartDate { get; set; } public DateTime AggregationEndDate { get; set; } /// /// 计划Id可空 /// public long? CampaignId { get; set; } } }