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.
 
 

43 lines
981 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SBF.Model.Dto
{
public class BatchUpdateBudgetRequest
{
/* {CampaignId:'',Budget:0,End:2022-01-01,Start:2022-01-01,ShopId:123,TotalCost:1} */
/// <summary>
/// 计划Id
/// </summary>
public string CampaignId { get; set; }
/// <summary>
/// 预算
/// </summary>
public decimal? Budget { 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; }
}
}