Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
@@ -1,14 +1,11 @@
|
||||
package com.mini.capi.api.biz;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAccountWeekView;
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryAccountYearView;
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummaryView;
|
||||
import com.mini.capi.biz.service.ErpPeriodSummaryAccountWeekViewService;
|
||||
import com.mini.capi.biz.service.ErpPeriodSummaryAccountYearViewService;
|
||||
import com.mini.capi.biz.service.ErpPeriodSummaryViewService;
|
||||
import com.mini.capi.biz.domain.ErpSummaryAllView;
|
||||
import com.mini.capi.biz.domain.ErpSummarySourceView;
|
||||
import com.mini.capi.biz.service.ErpSummaryAllViewService;
|
||||
import com.mini.capi.biz.service.ErpSummarySourceViewService;
|
||||
import com.mini.capi.model.ApiResult;
|
||||
import com.mini.capi.model.ChartResult;
|
||||
import com.mini.capi.utils.DateUtils;
|
||||
import jakarta.annotation.Resource;
|
||||
import org.springframework.util.StringUtils;
|
||||
@@ -17,7 +14,6 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@RestController
|
||||
@@ -26,58 +22,47 @@ public class appController {
|
||||
|
||||
|
||||
@Resource
|
||||
private ErpPeriodSummaryViewService summaryViewService;
|
||||
private ErpSummaryAllViewService summaryAllViewService;
|
||||
|
||||
|
||||
@Resource
|
||||
private ErpPeriodSummaryAccountWeekViewService weekViewService;
|
||||
|
||||
@Resource
|
||||
private ErpPeriodSummaryAccountYearViewService yearViewService;
|
||||
private ErpSummarySourceViewService summarySourceViewService;
|
||||
|
||||
|
||||
/**
|
||||
* 实时汇总
|
||||
*/
|
||||
@GetMapping("getSummaryChart")
|
||||
public ApiResult<?> getSummaryChart(String cycleType) {
|
||||
QueryWrapper<ErpPeriodSummaryView> queryWrapper = new QueryWrapper<>();
|
||||
@GetMapping("getSummaryAllChart")
|
||||
public ApiResult<?> getSummaryAllChart(String cycleType) {
|
||||
QueryWrapper<ErpSummaryAllView> queryWrapper = new QueryWrapper<>();
|
||||
if (StringUtils.hasText(cycleType)) {
|
||||
queryWrapper.eq("cycle_type", cycleType);
|
||||
String cycleCode = DateUtils.calculateStartCycleCode(cycleType);
|
||||
if (cycleCode != null) {
|
||||
queryWrapper.ge("cycle_code", cycleCode);
|
||||
queryWrapper.eq("f_cycle", cycleType);
|
||||
String cDate = DateUtils.calculateStartCycleCode(cycleType);
|
||||
if (cDate != null) {
|
||||
queryWrapper.ge("c_date", cDate);
|
||||
}
|
||||
}
|
||||
List<ErpPeriodSummaryView> summaryViews = summaryViewService.list(queryWrapper);
|
||||
List<ErpSummaryAllView> summaryViews = summaryAllViewService.list(queryWrapper);
|
||||
return ApiResult.success(summaryViews);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 账号周汇总
|
||||
* 分类汇总
|
||||
*/
|
||||
@GetMapping("getCardWeekChart")
|
||||
public ApiResult<?> getCardWeekChart() {
|
||||
List<ChartResult> chartResults = new ArrayList<>();
|
||||
List<ErpPeriodSummaryAccountWeekView> weekViews = weekViewService.list();
|
||||
for (ErpPeriodSummaryAccountWeekView weekView : weekViews) {
|
||||
chartResults.add(new ChartResult(weekView.getAccountName(), weekView.getType(), weekView.getAmount()));
|
||||
@GetMapping("getSummarySourceChart")
|
||||
public ApiResult<?> getSummarySourceChart(String cycleType, String source) {
|
||||
QueryWrapper<ErpSummarySourceView> queryWrapper = new QueryWrapper<>();
|
||||
if (StringUtils.hasText(source)) {
|
||||
queryWrapper.eq("f_source", source);
|
||||
}
|
||||
return ApiResult.success(chartResults);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 账号年汇总
|
||||
*/
|
||||
@GetMapping("getCardYearChart")
|
||||
public ApiResult<?> getCardYearChart() {
|
||||
List<ChartResult> chartResults = new ArrayList<>();
|
||||
List<ErpPeriodSummaryAccountYearView> weekViews = yearViewService.list();
|
||||
for (ErpPeriodSummaryAccountYearView weekView : weekViews) {
|
||||
chartResults.add(new ChartResult(weekView.getAccountName(), weekView.getType(), weekView.getAmount()));
|
||||
if (StringUtils.hasText(cycleType)) {
|
||||
queryWrapper.eq("f_cycle", cycleType);
|
||||
String cDate = DateUtils.calculateStartCycleCode(cycleType);
|
||||
if (cDate != null) {
|
||||
queryWrapper.ge("c_date", cDate);
|
||||
}
|
||||
}
|
||||
return ApiResult.success(chartResults);
|
||||
List<ErpSummarySourceView> summaryViews = summarySourceViewService.list(queryWrapper);
|
||||
return ApiResult.success(summaryViews);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizCities")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizCompany")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizMailAccount")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizMailSent")
|
||||
|
||||
@@ -5,14 +5,14 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW 前端控制器
|
||||
* SSH账号密码表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryWeekView")
|
||||
public class ErpPeriodSummaryWeekViewController {
|
||||
@RequestMapping("/biz/bizMonitorAccount")
|
||||
public class BizMonitorAccountController {
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-10
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizMonitorHost")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizMunicipalities")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizProjectInfo")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizProjectReport")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizProjectRequirements")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizProvince")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizResumeEmployee")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizWebsiteStorage")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpAccount")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpCategory")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpExpense")
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpIncome")
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
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 {
|
||||
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
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 {
|
||||
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
package com.mini.capi.biz.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 账单汇总表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummary")
|
||||
public class ErpPeriodSummaryController {
|
||||
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
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 {
|
||||
|
||||
}
|
||||
@@ -9,10 +9,10 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryView")
|
||||
public class ErpPeriodSummaryViewController {
|
||||
@RequestMapping("/biz/erpSummaryAllView")
|
||||
public class ErpSummaryAllViewController {
|
||||
|
||||
}
|
||||
@@ -9,10 +9,10 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryAllView")
|
||||
public class ErpPeriodSummaryAllViewController {
|
||||
@RequestMapping("/biz/erpSummarySourceView")
|
||||
public class ErpSummarySourceViewController {
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpTransactionFlow")
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
package com.mini.capi.biz.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 转账明细表 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpTransfer")
|
||||
public class ErpTransferController {
|
||||
|
||||
}
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -5,65 +5,88 @@ import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
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>
|
||||
* 转账明细表
|
||||
* SSH账号密码表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("erp_transfer")
|
||||
public class ErpTransfer implements Serializable {
|
||||
@TableName("biz_monitor_account")
|
||||
public class BizMonitorAccount implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 记录创建时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 转账ID
|
||||
* SSH账号记录唯一标识
|
||||
*/
|
||||
@TableId(value = "transfer_id", type = IdType.AUTO)
|
||||
private String transferId;
|
||||
@TableId(value = "account_id", type = IdType.AUTO)
|
||||
private String accountId;
|
||||
|
||||
/**
|
||||
* 转出账户
|
||||
* 主机唯一标识
|
||||
*/
|
||||
@TableField("from_account_id")
|
||||
private String fromAccountId;
|
||||
@TableField("host_id")
|
||||
private String hostId;
|
||||
|
||||
/**
|
||||
* 转入账户
|
||||
* 登录用户名
|
||||
*/
|
||||
@TableField("to_account_id")
|
||||
private String toAccountId;
|
||||
@TableField("ssh_username")
|
||||
private String sshUsername;
|
||||
|
||||
/**
|
||||
* 支出分类
|
||||
* 登录密码
|
||||
*/
|
||||
@TableField("category_id")
|
||||
private String categoryId;
|
||||
@TableField("ssh_password")
|
||||
private String sshPassword;
|
||||
|
||||
/**
|
||||
* 交易金额
|
||||
* 登录端口
|
||||
*/
|
||||
@TableField("amount")
|
||||
private BigDecimal amount;
|
||||
@TableField("ssh_port")
|
||||
private Integer sshPort;
|
||||
|
||||
/**
|
||||
* 交易备注
|
||||
* 初始目录
|
||||
*/
|
||||
@TableField("initial_path")
|
||||
private String initialPath;
|
||||
|
||||
/**
|
||||
* 超时时间
|
||||
*/
|
||||
@TableField("timeout_seconds")
|
||||
private Integer timeoutSeconds;
|
||||
|
||||
/**
|
||||
* 账号状态(enabled-启用、disabled-禁用)
|
||||
*/
|
||||
@TableField("ustatus")
|
||||
private String ustatus;
|
||||
|
||||
/**
|
||||
* 备注信息
|
||||
*/
|
||||
@TableField("remark")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 记录最后更新时间
|
||||
*/
|
||||
@TableField("update_time")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-10
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -16,7 +16,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -15,7 +15,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -16,7 +16,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -16,7 +16,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -1,123 +0,0 @@
|
||||
package com.mini.capi.biz.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
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>
|
||||
* 账单汇总表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("erp_period_summary")
|
||||
public class ErpPeriodSummary implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 记录时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 汇总ID
|
||||
*/
|
||||
@TableId(value = "summary_id", type = IdType.AUTO)
|
||||
private String summaryId;
|
||||
|
||||
/**
|
||||
* 周期类型(D-日,M-月,Q-季,Y-年)
|
||||
*/
|
||||
@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("transfer_amount")
|
||||
private BigDecimal transferAmount;
|
||||
|
||||
/**
|
||||
* 本期净现金流(收入-支出)
|
||||
*/
|
||||
@TableField("net_cashflow")
|
||||
private BigDecimal netCashflow;
|
||||
|
||||
/**
|
||||
* 收入笔数
|
||||
*/
|
||||
@TableField("income_count")
|
||||
private Integer incomeCount;
|
||||
|
||||
/**
|
||||
* 支出笔数
|
||||
*/
|
||||
@TableField("expense_count")
|
||||
private Integer expenseCount;
|
||||
|
||||
/**
|
||||
* 转账笔数
|
||||
*/
|
||||
@TableField("transfer_count")
|
||||
private Integer transferCount;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("update_time")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
/**
|
||||
* 租户id
|
||||
*/
|
||||
@TableField("f_tenant_id")
|
||||
private String fTenantId;
|
||||
|
||||
/**
|
||||
* 流程id
|
||||
*/
|
||||
@TableField("f_flow_id")
|
||||
private String fFlowId;
|
||||
|
||||
/**
|
||||
* 流程任务主键
|
||||
*/
|
||||
@TableField("f_flow_task_id")
|
||||
private String fFlowTaskId;
|
||||
|
||||
/**
|
||||
* 流程任务状态
|
||||
*/
|
||||
@TableField("f_flow_state")
|
||||
private Integer fFlowState;
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
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;
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
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;
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
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;
|
||||
}
|
||||
@@ -1,67 +0,0 @@
|
||||
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;
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
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;
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
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,44 @@
|
||||
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 com.mini.capi.model.enums.cTypeEnum;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("erp_summary_all_view")
|
||||
public class ErpSummaryAllView implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("c_date")
|
||||
private String cDate;
|
||||
|
||||
@TableField("c_type")
|
||||
private cTypeEnum cType;
|
||||
|
||||
@TableField("this_value")
|
||||
private BigDecimal thisValue;
|
||||
|
||||
@TableField("prev_value")
|
||||
private BigDecimal prevValue;
|
||||
|
||||
@TableField("mom_rate")
|
||||
private BigDecimal momRate;
|
||||
|
||||
@TableField("f_cycle")
|
||||
private String fCycle;
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
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 com.mini.capi.model.enums.cTypeEnum;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("erp_summary_source_view")
|
||||
public class ErpSummarySourceView implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("c_date")
|
||||
private String cDate;
|
||||
|
||||
@TableField("c_name")
|
||||
private String cName;
|
||||
|
||||
@TableField("c_type")
|
||||
private cTypeEnum cType;
|
||||
|
||||
@TableField("f_value")
|
||||
private BigDecimal fValue;
|
||||
|
||||
@TableField("f_source")
|
||||
private String fSource;
|
||||
|
||||
@TableField("f_cycle")
|
||||
private String fCycle;
|
||||
}
|
||||
@@ -16,7 +16,7 @@ import lombok.Setter;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizCitiesMapper extends BaseMapper<BizCities> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizCompanyMapper extends BaseMapper<BizCompany> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMailAccountMapper extends BaseMapper<BizMailAccount> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMailSentMapper extends BaseMapper<BizMailSent> {
|
||||
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMonitorAccount;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* SSH账号密码表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMonitorAccountMapper extends BaseMapper<BizMonitorAccount> {
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-10
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMonitorHostMapper extends BaseMapper<BizMonitorHost> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMunicipalitiesMapper extends BaseMapper<BizMunicipalities> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizProjectInfoMapper extends BaseMapper<BizProjectInfo> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizProjectReportMapper extends BaseMapper<BizProjectReport> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizProjectRequirementsMapper extends BaseMapper<BizProjectRequirements> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizProvinceMapper extends BaseMapper<BizProvince> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizResumeEmployeeMapper extends BaseMapper<BizResumeEmployee> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizWebsiteStorageMapper extends BaseMapper<BizWebsiteStorage> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpAccountMapper extends BaseMapper<ErpAccount> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpCategoryMapper extends BaseMapper<ErpCategory> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpExpenseMapper extends BaseMapper<ErpExpense> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpIncomeMapper extends BaseMapper<ErpIncome> {
|
||||
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummary;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 账单汇总表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpPeriodSummaryMapper extends BaseMapper<ErpPeriodSummary> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpSummaryAllView;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpSummaryAllViewMapper extends BaseMapper<ErpSummaryAllView> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpSummarySourceView;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* VIEW Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpSummarySourceViewMapper extends BaseMapper<ErpSummarySourceView> {
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpTransactionFlowMapper extends BaseMapper<ErpTransactionFlow> {
|
||||
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpTransfer;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 转账明细表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpTransferMapper extends BaseMapper<ErpTransfer> {
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizCitiesService extends IService<BizCities> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizCompanyService extends IService<BizCompany> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMailAccountService extends IService<BizMailAccount> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMailSentService extends IService<BizMailSent> {
|
||||
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMonitorAccount;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* SSH账号密码表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMonitorAccountService extends IService<BizMonitorAccount> {
|
||||
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-10
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMonitorHostService extends IService<BizMonitorHost> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizMunicipalitiesService extends IService<BizMunicipalities> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizProjectInfoService extends IService<BizProjectInfo> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizProjectReportService extends IService<BizProjectReport> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizProjectRequirementsService extends IService<BizProjectRequirements> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizProvinceService extends IService<BizProvince> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizResumeEmployeeService extends IService<BizResumeEmployee> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface BizWebsiteStorageService extends IService<BizWebsiteStorage> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpAccountService extends IService<ErpAccount> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpCategoryService extends IService<ErpCategory> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpExpenseService extends IService<ErpExpense> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
* @since 2025-11-12
|
||||
*/
|
||||
public interface ErpIncomeService extends IService<ErpIncome> {
|
||||
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user