新增图表接口
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
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 lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("erp_period_summary_week_view")
|
||||
public class ErpPeriodSummaryWeekView implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("category_name")
|
||||
private String categoryName;
|
||||
|
||||
@TableField("account_name")
|
||||
private String accountName;
|
||||
|
||||
@TableField("f_full_name")
|
||||
private String fFullName;
|
||||
|
||||
@TableField("type")
|
||||
private String type;
|
||||
|
||||
@TableField("amount")
|
||||
private BigDecimal amount;
|
||||
}
|
||||
Reference in New Issue
Block a user