2025-12-25 11:20:56 +08:00
|
|
|
|
namespace Entity;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2025-12-26 15:21:31 +08:00
|
|
|
|
/// 交易分类
|
2025-12-25 11:20:56 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class TransactionCategory : BaseEntity
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分类名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 交易类型(支出/收入)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public TransactionType Type { get; set; }
|
|
|
|
|
|
}
|