新增图表接口
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.mini.capi.biz.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryAccountWeekView")
|
||||
public class ErpPeriodSummaryAccountWeekViewController {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.mini.capi.biz.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryAccountYearView")
|
||||
public class ErpPeriodSummaryAccountYearViewController {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.mini.capi.biz.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryAllView")
|
||||
public class ErpPeriodSummaryAllViewController {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.mini.capi.biz.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryView")
|
||||
public class ErpPeriodSummaryViewController {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.mini.capi.biz.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryWeekView")
|
||||
public class ErpPeriodSummaryWeekViewController {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.mini.capi.biz.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryYearView")
|
||||
public class ErpPeriodSummaryYearViewController {
|
||||
|
||||
}
|
||||
@@ -20,7 +20,7 @@ import lombok.Setter;
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("erp_period_summary_view")
|
||||
@TableName("erp_period_summary")
|
||||
public class ErpPeriodSummary implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
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_account_week_view")
|
||||
public class ErpPeriodSummaryAccountWeekView implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("account_name")
|
||||
private String accountName;
|
||||
|
||||
@TableField("amount")
|
||||
private BigDecimal amount;
|
||||
|
||||
@TableField("type")
|
||||
private String type;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
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_account_year_view")
|
||||
public class ErpPeriodSummaryAccountYearView implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("account_name")
|
||||
private String accountName;
|
||||
|
||||
@TableField("amount")
|
||||
private BigDecimal amount;
|
||||
|
||||
@TableField("type")
|
||||
private String type;
|
||||
}
|
||||
@@ -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_all_view")
|
||||
public class ErpPeriodSummaryAllView 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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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_year_view")
|
||||
public class ErpPeriodSummaryYearView 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;
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAccountWeekView;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryAccountWeekViewMapper extends BaseMapper<ErpPeriodSummaryAccountWeekView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAccountYearView;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryAccountYearViewMapper extends BaseMapper<ErpPeriodSummaryAccountYearView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAllView;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryAllViewMapper extends BaseMapper<ErpPeriodSummaryAllView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryView;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryViewMapper extends BaseMapper<ErpPeriodSummaryView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryWeekView;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryWeekViewMapper extends BaseMapper<ErpPeriodSummaryWeekView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryYearView;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryYearViewMapper extends BaseMapper<ErpPeriodSummaryYearView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAccountWeekView;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryAccountWeekViewService extends IService<ErpPeriodSummaryAccountWeekView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAccountYearView;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryAccountYearViewService extends IService<ErpPeriodSummaryAccountYearView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAllView;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryAllViewService extends IService<ErpPeriodSummaryAllView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryView;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryViewService extends IService<ErpPeriodSummaryView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryWeekView;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryWeekViewService extends IService<ErpPeriodSummaryWeekView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryYearView;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
public interface ErpPeriodSummaryYearViewService extends IService<ErpPeriodSummaryYearView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAccountWeekView;
|
||||
import com.mini.capi.biz.mapper.ErpPeriodSummaryAccountWeekViewMapper;
|
||||
import com.mini.capi.biz.service.ErpPeriodSummaryAccountWeekViewService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@Service
|
||||
public class ErpPeriodSummaryAccountWeekViewServiceImpl extends ServiceImpl<ErpPeriodSummaryAccountWeekViewMapper, ErpPeriodSummaryAccountWeekView> implements ErpPeriodSummaryAccountWeekViewService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAccountYearView;
|
||||
import com.mini.capi.biz.mapper.ErpPeriodSummaryAccountYearViewMapper;
|
||||
import com.mini.capi.biz.service.ErpPeriodSummaryAccountYearViewService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@Service
|
||||
public class ErpPeriodSummaryAccountYearViewServiceImpl extends ServiceImpl<ErpPeriodSummaryAccountYearViewMapper, ErpPeriodSummaryAccountYearView> implements ErpPeriodSummaryAccountYearViewService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAllView;
|
||||
import com.mini.capi.biz.mapper.ErpPeriodSummaryAllViewMapper;
|
||||
import com.mini.capi.biz.service.ErpPeriodSummaryAllViewService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@Service
|
||||
public class ErpPeriodSummaryAllViewServiceImpl extends ServiceImpl<ErpPeriodSummaryAllViewMapper, ErpPeriodSummaryAllView> implements ErpPeriodSummaryAllViewService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryView;
|
||||
import com.mini.capi.biz.mapper.ErpPeriodSummaryViewMapper;
|
||||
import com.mini.capi.biz.service.ErpPeriodSummaryViewService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@Service
|
||||
public class ErpPeriodSummaryViewServiceImpl extends ServiceImpl<ErpPeriodSummaryViewMapper, ErpPeriodSummaryView> implements ErpPeriodSummaryViewService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryWeekView;
|
||||
import com.mini.capi.biz.mapper.ErpPeriodSummaryWeekViewMapper;
|
||||
import com.mini.capi.biz.service.ErpPeriodSummaryWeekViewService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@Service
|
||||
public class ErpPeriodSummaryWeekViewServiceImpl extends ServiceImpl<ErpPeriodSummaryWeekViewMapper, ErpPeriodSummaryWeekView> implements ErpPeriodSummaryWeekViewService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryYearView;
|
||||
import com.mini.capi.biz.mapper.ErpPeriodSummaryYearViewMapper;
|
||||
import com.mini.capi.biz.service.ErpPeriodSummaryYearViewService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@Service
|
||||
public class ErpPeriodSummaryYearViewServiceImpl extends ServiceImpl<ErpPeriodSummaryYearViewMapper, ErpPeriodSummaryYearView> implements ErpPeriodSummaryYearViewService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.mini.capi.biz.mapper.ErpPeriodSummaryAccountWeekViewMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.mini.capi.biz.domain.ErpPeriodSummaryAccountWeekView">
|
||||
<result column="account_name" property="accountName" />
|
||||
<result column="amount" property="amount" />
|
||||
<result column="type" property="type" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
account_name, amount, type
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.mini.capi.biz.mapper.ErpPeriodSummaryAccountYearViewMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.mini.capi.biz.domain.ErpPeriodSummaryAccountYearView">
|
||||
<result column="account_name" property="accountName" />
|
||||
<result column="amount" property="amount" />
|
||||
<result column="type" property="type" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
account_name, amount, type
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
19
src/main/resources/mapper/ErpPeriodSummaryAllViewMapper.xml
Normal file
19
src/main/resources/mapper/ErpPeriodSummaryAllViewMapper.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.mini.capi.biz.mapper.ErpPeriodSummaryAllViewMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.mini.capi.biz.domain.ErpPeriodSummaryAllView">
|
||||
<result column="category_name" property="categoryName" />
|
||||
<result column="account_name" property="accountName" />
|
||||
<result column="f_full_name" property="fFullName" />
|
||||
<result column="type" property="type" />
|
||||
<result column="amount" property="amount" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
category_name, account_name, f_full_name, type, amount
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
28
src/main/resources/mapper/ErpPeriodSummaryViewMapper.xml
Normal file
28
src/main/resources/mapper/ErpPeriodSummaryViewMapper.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.mini.capi.biz.mapper.ErpPeriodSummaryViewMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.mini.capi.biz.domain.ErpPeriodSummaryView">
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="summary_id" property="summaryId" />
|
||||
<result column="cycle_type" property="cycleType" />
|
||||
<result column="cycle_code" property="cycleCode" />
|
||||
<result column="total_income" property="totalIncome" />
|
||||
<result column="total_expense" property="totalExpense" />
|
||||
<result column="net_cashflow" property="netCashflow" />
|
||||
<result column="income_count" property="incomeCount" />
|
||||
<result column="expense_count" property="expenseCount" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
<result column="f_tenant_id" property="fTenantId" />
|
||||
<result column="f_flow_id" property="fFlowId" />
|
||||
<result column="f_flow_task_id" property="fFlowTaskId" />
|
||||
<result column="f_flow_state" property="fFlowState" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
create_time, summary_id, cycle_type, cycle_code, total_income, total_expense, net_cashflow, income_count, expense_count, update_time, f_tenant_id, f_flow_id, f_flow_task_id, f_flow_state
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
19
src/main/resources/mapper/ErpPeriodSummaryWeekViewMapper.xml
Normal file
19
src/main/resources/mapper/ErpPeriodSummaryWeekViewMapper.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.mini.capi.biz.mapper.ErpPeriodSummaryWeekViewMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.mini.capi.biz.domain.ErpPeriodSummaryWeekView">
|
||||
<result column="category_name" property="categoryName" />
|
||||
<result column="account_name" property="accountName" />
|
||||
<result column="f_full_name" property="fFullName" />
|
||||
<result column="type" property="type" />
|
||||
<result column="amount" property="amount" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
category_name, account_name, f_full_name, type, amount
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
19
src/main/resources/mapper/ErpPeriodSummaryYearViewMapper.xml
Normal file
19
src/main/resources/mapper/ErpPeriodSummaryYearViewMapper.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.mini.capi.biz.mapper.ErpPeriodSummaryYearViewMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.mini.capi.biz.domain.ErpPeriodSummaryYearView">
|
||||
<result column="category_name" property="categoryName" />
|
||||
<result column="account_name" property="accountName" />
|
||||
<result column="f_full_name" property="fFullName" />
|
||||
<result column="type" property="type" />
|
||||
<result column="amount" property="amount" />
|
||||
</resultMap>
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
category_name, account_name, f_full_name, type, amount
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user