using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Znyc.Dispatching.Application { public class ConsumptionInput { public long? ID { get; set; } /// /// 开支类别ID /// public long PayTyepID { get; set; } /// /// 创建时间 /// public DateTime CreatedTime { get; set; } /// /// 开支类别 /// public string PayTyepName { get; set; } /// /// 车ID /// public List CarIDs { get; set; } /// /// 车牌号 /// public string CarName { get; set; } /// /// 支付途径 /// public string PayChannel { get; set; } /// /// 金额 /// public decimal Money { get; set; } /// /// 备注 /// public string Remarks { get; set; } } }