新增图表接口
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW
|
||||
* </p>
|
||||
*
|
||||
* @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;
|
||||
}
|
||||
Reference in New Issue
Block a user