58 lines
1.3 KiB
C#
58 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
|
|
namespace LearningOfficer.OA.Core.Entities.OA.Financial
|
|
{
|
|
/// <summary>
|
|
/// 经费管理-班级
|
|
///</summary>
|
|
[SugarTable("financial_class")]
|
|
public class Financial_class : BaseEntity
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:经费标准id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "financial_id" )]
|
|
public long Financial_id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:班级id
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "class_id" )]
|
|
public long Class_id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:用途
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "remark" )]
|
|
public string Remark { get; set; } = null!;
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:费用(元)
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "money")]
|
|
public decimal Money { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 备 注:使用时间
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "financial_time")]
|
|
public DateTime FinancialTime { get; set; }
|
|
}
|
|
|
|
} |