using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SBF.Model.Dto { public class BatchUpdateBidPriceRequest { /* [{AdgroupId:'',SearchFee:0,End:2022-01-01,Start:2022-01-01,ShopId:123,TotalCost:1,RenQunCost:1,KeyWordCost:1,ShopCost:1}] */ /// /// 单元Id /// public string AdgroupId { get; set; } /// /// 出价 /// public decimal SearchFee { get; set; } /// /// 开始时间 /// public DateTime? Start { get; set; } /// /// 结束时间 /// public DateTime? End { get; set; } /// /// 店铺id /// public long ShopId { get; set; } /// /// 单元总花费 /// public decimal TotalCost { get; set; } /// /// 人群花费 /// public decimal? RenQunCost { get; set; } /// /// 关键词花费 /// public decimal? KeyWordCost { get; set; } /// /// 店铺商品花费 /// public decimal? ShopCost { get; set; } } }