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.
55 lines
1.1 KiB
55 lines
1.1 KiB
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; }
|
|
|
|
/// <summary>
|
|
/// 开支类别ID
|
|
/// </summary>
|
|
public long PayTyepID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开支类别
|
|
/// </summary>
|
|
public string PayTyepName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车ID
|
|
/// </summary>
|
|
public List<long> CarIDs { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车牌号
|
|
/// </summary>
|
|
public string CarName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 支付途径
|
|
/// </summary>
|
|
public string PayChannel { get; set; }
|
|
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
public decimal Money { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remarks { get; set; }
|
|
}
|
|
}
|
|
|