using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.Financial
{
///
/// 添加班级使用经费记录
///
public class FinancialClassRequest
{
///
/// 班级id
///
public long Class_Id { get; set; }
///
/// 用途
///
public string Remark { get; set; }
///
/// 元
///
public decimal Money { get; set; }
///
/// 使用时间
///
public DateTime FinancialTime { get; set; }
}
}