package com.mini.capi.biz.domain; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.math.BigDecimal; import java.time.LocalDateTime; import lombok.Getter; import lombok.Setter; /** *
* VIEW *
* * @author gaoxq * @since 2025-11-11 */ @Getter @Setter @TableName("erp_period_summary_view") public class ErpPeriodSummaryView implements Serializable { private static final long serialVersionUID = 1L; @TableField("create_time") private LocalDateTime createTime; @TableField("summary_id") private Long summaryId; @TableField("cycle_type") private String cycleType; @TableField("cycle_code") private String cycleCode; @TableField("total_income") private BigDecimal totalIncome; @TableField("total_expense") private BigDecimal totalExpense; @TableField("net_cashflow") private BigDecimal netCashflow; @TableField("income_count") private BigDecimal incomeCount; @TableField("expense_count") private BigDecimal expenseCount; @TableField("update_time") private LocalDateTime updateTime; @TableField("f_tenant_id") private String fTenantId; @TableField("f_flow_id") private byte[] fFlowId; @TableField("f_flow_task_id") private byte[] fFlowTaskId; @TableField("f_flow_state") private byte[] fFlowState; }