using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 更新设备费用记录
///
public class UpdateProductCostRecordInput
{
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 费用类别
///
public string CostCatalog { get; set; }
///
/// 费用类型
///
public string CostType { get; set; }
///
/// 费用明细
///
public string CostContent { get; set; }
///
/// 消费时间
///
public DateTime CostTime { get; set; }
///
/// 费用
///
public double CostValue { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}