Files
c-api/src/main/java/com/mini/capi/biz/domain/ErpPeriodSummaryView.java

68 lines
1.4 KiB
Java
Raw Normal View History

2025-11-11 20:02:59 +08:00
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;
}