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.
 
 

60 lines
1.4 KiB

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}] */
/// <summary>
/// 单元Id
/// </summary>
public string AdgroupId { get; set; }
/// <summary>
/// 出价
/// </summary>
public decimal SearchFee { get; set; }
/// <summary>
/// 开始时间
/// </summary>
public DateTime? Start { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime? End { get; set; }
/// <summary>
/// 店铺id
/// </summary>
public long ShopId { get; set; }
/// <summary>
/// 单元总花费
/// </summary>
public decimal TotalCost { get; set; }
/// <summary>
/// 人群花费
/// </summary>
public decimal? RenQunCost { get; set; }
/// <summary>
/// 关键词花费
/// </summary>
public decimal? KeyWordCost { get; set; }
/// <summary>
/// 店铺商品花费
/// </summary>
public decimal? ShopCost { get; set; }
}
}