using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LifePayment.Domain.Shared; /// /// 收支类型 /// public enum IncomeExpenseTypeEnum { /// /// 收入 /// Income = 10, /// /// 支出 /// Expense = 20 }