新增图表接口
This commit is contained in:
@@ -1,12 +1,8 @@
|
||||
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.service.ErpSummaryAllViewService;
|
||||
import com.mini.capi.model.ApiResult;
|
||||
import com.mini.capi.model.ChartResult;
|
||||
import com.mini.capi.utils.DateUtils;
|
||||
@@ -26,14 +22,7 @@ public class appController {
|
||||
|
||||
|
||||
@Resource
|
||||
private ErpPeriodSummaryViewService summaryViewService;
|
||||
|
||||
|
||||
@Resource
|
||||
private ErpPeriodSummaryAccountWeekViewService weekViewService;
|
||||
|
||||
@Resource
|
||||
private ErpPeriodSummaryAccountYearViewService yearViewService;
|
||||
private ErpSummaryAllViewService summaryAllViewService;
|
||||
|
||||
|
||||
/**
|
||||
@@ -41,43 +30,15 @@ public class appController {
|
||||
*/
|
||||
@GetMapping("getSummaryChart")
|
||||
public ApiResult<?> getSummaryChart(String cycleType) {
|
||||
QueryWrapper<ErpPeriodSummaryView> queryWrapper = new QueryWrapper<>();
|
||||
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()));
|
||||
}
|
||||
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()));
|
||||
}
|
||||
return ApiResult.success(chartResults);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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/bizCities")
|
||||
public class BizCitiesController {
|
||||
|
||||
}
|
||||
@@ -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/bizCompany")
|
||||
public class BizCompanyController {
|
||||
|
||||
}
|
||||
@@ -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/bizMailAccount")
|
||||
public class BizMailAccountController {
|
||||
|
||||
}
|
||||
@@ -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/bizMailSent")
|
||||
public class BizMailSentController {
|
||||
|
||||
}
|
||||
@@ -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-10
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/bizMonitorHost")
|
||||
public class BizMonitorHostController {
|
||||
|
||||
}
|
||||
@@ -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/bizMunicipalities")
|
||||
public class BizMunicipalitiesController {
|
||||
|
||||
}
|
||||
@@ -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/bizProjectInfo")
|
||||
public class BizProjectInfoController {
|
||||
|
||||
}
|
||||
@@ -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/bizProjectReport")
|
||||
public class BizProjectReportController {
|
||||
|
||||
}
|
||||
@@ -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/bizProjectRequirements")
|
||||
public class BizProjectRequirementsController {
|
||||
|
||||
}
|
||||
@@ -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/bizProvince")
|
||||
public class BizProvinceController {
|
||||
|
||||
}
|
||||
@@ -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/bizResumeEmployee")
|
||||
public class BizResumeEmployeeController {
|
||||
|
||||
}
|
||||
@@ -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/bizWebsiteStorage")
|
||||
public class BizWebsiteStorageController {
|
||||
|
||||
}
|
||||
@@ -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/erpAccount")
|
||||
public class ErpAccountController {
|
||||
|
||||
}
|
||||
@@ -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/erpCategory")
|
||||
public class ErpCategoryController {
|
||||
|
||||
}
|
||||
@@ -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/erpExpense")
|
||||
public class ErpExpenseController {
|
||||
|
||||
}
|
||||
@@ -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/erpIncome")
|
||||
public class ErpIncomeController {
|
||||
|
||||
}
|
||||
@@ -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>
|
||||
* VIEW 前端控制器
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-11
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/biz/erpPeriodSummaryAllView")
|
||||
public class ErpPeriodSummaryAllViewController {
|
||||
|
||||
}
|
||||
@@ -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/erpPeriodSummaryView")
|
||||
public class ErpPeriodSummaryViewController {
|
||||
|
||||
}
|
||||
@@ -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/erpPeriodSummaryWeekView")
|
||||
public class ErpPeriodSummaryWeekViewController {
|
||||
|
||||
}
|
||||
@@ -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 {
|
||||
|
||||
}
|
||||
@@ -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/erpTransactionFlow")
|
||||
public class ErpTransactionFlowController {
|
||||
|
||||
}
|
||||
@@ -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 {
|
||||
|
||||
}
|
||||
@@ -1,101 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 市区信息表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_cities")
|
||||
public class BizCities implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 记录时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 省份编码
|
||||
*/
|
||||
@TableField("province_code")
|
||||
private String provinceCode;
|
||||
|
||||
/**
|
||||
* 市区编码
|
||||
*/
|
||||
@TableField("city_code")
|
||||
private String cityCode;
|
||||
|
||||
/**
|
||||
* 市区名称
|
||||
*/
|
||||
@TableField("city_name")
|
||||
private String cityName;
|
||||
|
||||
/**
|
||||
* 市区区号
|
||||
*/
|
||||
@TableField("area_code")
|
||||
private String areaCode;
|
||||
|
||||
/**
|
||||
* 市区级别
|
||||
*/
|
||||
@TableField("area_type")
|
||||
private String areaType;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("update_time")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
/**
|
||||
* 数据状态
|
||||
*/
|
||||
@TableField("data_status")
|
||||
private String dataStatus;
|
||||
|
||||
/**
|
||||
* 租户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,110 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 公司信息表,用于存储公司基本信息
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_company")
|
||||
public class BizCompany implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 记录日期
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 公司标识
|
||||
*/
|
||||
@TableId(value = "company_id", type = IdType.AUTO)
|
||||
private String companyId;
|
||||
|
||||
/**
|
||||
* 公司名称
|
||||
*/
|
||||
@TableField("company_name")
|
||||
private String companyName;
|
||||
|
||||
/**
|
||||
* 公司地址
|
||||
*/
|
||||
@TableField("address")
|
||||
private String address;
|
||||
|
||||
/**
|
||||
* 公司联系人姓名
|
||||
*/
|
||||
@TableField("contact_person")
|
||||
private String contactPerson;
|
||||
|
||||
/**
|
||||
* 公司联系电话
|
||||
*/
|
||||
@TableField("phone_number")
|
||||
private String phoneNumber;
|
||||
|
||||
/**
|
||||
* 公司电子邮箱
|
||||
*/
|
||||
@TableField("email")
|
||||
private String email;
|
||||
|
||||
/**
|
||||
* 公司官方网站地址
|
||||
*/
|
||||
@TableField("website_url")
|
||||
private String websiteUrl;
|
||||
|
||||
/**
|
||||
* 其他说明或备注
|
||||
*/
|
||||
@TableField("remarks")
|
||||
private String remarks;
|
||||
|
||||
/**
|
||||
* 公司状态
|
||||
*/
|
||||
@TableField("comp_status")
|
||||
private String compStatus;
|
||||
|
||||
/**
|
||||
* 租户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,122 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 邮件账户配置表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_mail_account")
|
||||
public class BizMailAccount implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 主键ID
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 邮件服务器地址
|
||||
*/
|
||||
@TableField("host")
|
||||
private String host;
|
||||
|
||||
/**
|
||||
* SMTP端口
|
||||
*/
|
||||
@TableField("smtp_port")
|
||||
private Integer smtpPort;
|
||||
|
||||
/**
|
||||
* IMAP端口
|
||||
*/
|
||||
@TableField("imap_port")
|
||||
private Integer imapPort;
|
||||
|
||||
/**
|
||||
* 用户名
|
||||
*/
|
||||
@TableField("username")
|
||||
private String username;
|
||||
|
||||
/**
|
||||
* 密码
|
||||
*/
|
||||
@TableField("password")
|
||||
private String password;
|
||||
|
||||
/**
|
||||
* 发件人地址
|
||||
*/
|
||||
@TableField("from_address")
|
||||
private String fromAddress;
|
||||
|
||||
/**
|
||||
* 是否启用SSL
|
||||
*/
|
||||
@TableField("ssl_enable")
|
||||
private String sslEnable;
|
||||
|
||||
/**
|
||||
* 状态:0-禁用,1-启用
|
||||
*/
|
||||
@TableField("status")
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@TableField("remark")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@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,134 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 发送邮件表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_mail_sent")
|
||||
public class BizMailSent implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 主键ID
|
||||
*/
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 邮件服务器消息ID
|
||||
*/
|
||||
@TableField("message_id")
|
||||
private String messageId;
|
||||
|
||||
/**
|
||||
* 关联的邮件账户ID
|
||||
*/
|
||||
@TableField("account_id")
|
||||
private String accountId;
|
||||
|
||||
/**
|
||||
* 发件人地址
|
||||
*/
|
||||
@TableField("from_address")
|
||||
private String fromAddress;
|
||||
|
||||
/**
|
||||
* 收件人地址,多个用逗号分隔
|
||||
*/
|
||||
@TableField("to_addresses")
|
||||
private String toAddresses;
|
||||
|
||||
/**
|
||||
* 抄送地址,多个用逗号分隔
|
||||
*/
|
||||
@TableField("cc_addresses")
|
||||
private String ccAddresses;
|
||||
|
||||
/**
|
||||
* 邮件主题
|
||||
*/
|
||||
@TableField("subject")
|
||||
private String subject;
|
||||
|
||||
/**
|
||||
* 邮件内容
|
||||
*/
|
||||
@TableField("content")
|
||||
private String content;
|
||||
|
||||
/**
|
||||
* 发送时间
|
||||
*/
|
||||
@TableField("send_time")
|
||||
private LocalDateTime sendTime;
|
||||
|
||||
/**
|
||||
* 发送状态:0-待发送,1-发送成功,2-发送失败
|
||||
*/
|
||||
@TableField("send_status")
|
||||
private String sendStatus;
|
||||
|
||||
/**
|
||||
* 错误信息
|
||||
*/
|
||||
@TableField("error_msg")
|
||||
private String errorMsg;
|
||||
|
||||
/**
|
||||
* 是否有附件:0-无,1-有
|
||||
*/
|
||||
@TableField("has_attachment")
|
||||
private String hasAttachment;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@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,128 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 主机信息表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-10
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_monitor_host")
|
||||
public class BizMonitorHost implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 记录创建时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 主机唯一标识(自增主键)
|
||||
*/
|
||||
@TableId(value = "host_id", type = IdType.AUTO)
|
||||
private String hostId;
|
||||
|
||||
/**
|
||||
* 主机名称
|
||||
*/
|
||||
@TableField("hostname")
|
||||
private String hostname;
|
||||
|
||||
/**
|
||||
* IP地址
|
||||
*/
|
||||
@TableField("ip_address")
|
||||
private String ipAddress;
|
||||
|
||||
/**
|
||||
* 主机类型
|
||||
*/
|
||||
@TableField("host_type")
|
||||
private String hostType;
|
||||
|
||||
/**
|
||||
* 操作系统
|
||||
*/
|
||||
@TableField("host_os")
|
||||
private String hostOs;
|
||||
|
||||
/**
|
||||
* 主机状态(1-在线、0-离线、9-维护中)
|
||||
*/
|
||||
@TableField("ustatus")
|
||||
private String ustatus;
|
||||
|
||||
/**
|
||||
* 最后一次检测到在线的时间
|
||||
*/
|
||||
@TableField("last_online_time")
|
||||
private LocalDateTime lastOnlineTime;
|
||||
|
||||
/**
|
||||
* 物理位置
|
||||
*/
|
||||
@TableField("location_name")
|
||||
private String locationName;
|
||||
|
||||
/**
|
||||
* 管理人员
|
||||
*/
|
||||
@TableField("admin_user")
|
||||
private String adminUser;
|
||||
|
||||
/**
|
||||
* 联系方式
|
||||
*/
|
||||
@TableField("other_contact")
|
||||
private String otherContact;
|
||||
|
||||
/**
|
||||
* 备注信息
|
||||
*/
|
||||
@TableField("remark")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 记录最后更新时间
|
||||
*/
|
||||
@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,119 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 地市信息表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_municipalities")
|
||||
public class BizMunicipalities implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 记录时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 县区名称
|
||||
*/
|
||||
@TableField("county_name")
|
||||
private String countyName;
|
||||
|
||||
/**
|
||||
* 省份编码
|
||||
*/
|
||||
@TableField("province_code")
|
||||
private String provinceCode;
|
||||
|
||||
/**
|
||||
* 市区编码
|
||||
*/
|
||||
@TableField("city_code")
|
||||
private String cityCode;
|
||||
|
||||
/**
|
||||
* 县区编码
|
||||
*/
|
||||
@TableField("county_code")
|
||||
private String countyCode;
|
||||
|
||||
/**
|
||||
* 街道名称
|
||||
*/
|
||||
@TableField("town_name")
|
||||
private String townName;
|
||||
|
||||
/**
|
||||
* 街道编号
|
||||
*/
|
||||
@TableField("town_code")
|
||||
private String townCode;
|
||||
|
||||
/**
|
||||
* 社区名称
|
||||
*/
|
||||
@TableField("village_name")
|
||||
private String villageName;
|
||||
|
||||
/**
|
||||
* 社区编号
|
||||
*/
|
||||
@TableField("village_code")
|
||||
private String villageCode;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("update_time")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
/**
|
||||
* 数据状态
|
||||
*/
|
||||
@TableField("data_status")
|
||||
private String dataStatus;
|
||||
|
||||
/**
|
||||
* 租户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,116 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 项目表用于存储公司内部各个项目的详细信息
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_project_info")
|
||||
public class BizProjectInfo implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 记录创建时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 项目唯一标识符,主键
|
||||
*/
|
||||
@TableId(value = "project_id", type = IdType.AUTO)
|
||||
private String projectId;
|
||||
|
||||
/**
|
||||
* 项目编码
|
||||
*/
|
||||
@TableField("project_code")
|
||||
private String projectCode;
|
||||
|
||||
/**
|
||||
* 项目名称,必须唯一
|
||||
*/
|
||||
@TableField("project_name")
|
||||
private String projectName;
|
||||
|
||||
/**
|
||||
* 项目描述,简要说明项目的目标和范围
|
||||
*/
|
||||
@TableField("project_desc")
|
||||
private String projectDesc;
|
||||
|
||||
/**
|
||||
* 项目开始日期
|
||||
*/
|
||||
@TableField("start_date")
|
||||
private LocalDateTime startDate;
|
||||
|
||||
/**
|
||||
* 项目预计结束日期,可为空表示未确定
|
||||
*/
|
||||
@TableField("end_date")
|
||||
private LocalDateTime endDate;
|
||||
|
||||
/**
|
||||
* 项目实际结束日期
|
||||
*/
|
||||
@TableField("actual_end_date")
|
||||
private LocalDateTime actualEndDate;
|
||||
|
||||
/**
|
||||
* 员工列表
|
||||
*/
|
||||
@TableField("employee_id")
|
||||
private String employeeId;
|
||||
|
||||
/**
|
||||
* 项目类型(如:研发项目、运营项目、运维项目等)
|
||||
*/
|
||||
@TableField("project_type")
|
||||
private String projectType;
|
||||
|
||||
/**
|
||||
* 项目状态:活跃、已完成、已延迟、已取消
|
||||
*/
|
||||
@TableField("project_status")
|
||||
private String projectStatus;
|
||||
|
||||
/**
|
||||
* 租户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,128 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 项目汇报信息表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_project_report")
|
||||
public class BizProjectReport implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 记录创建时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 汇报记录ID(主键)
|
||||
*/
|
||||
@TableId(value = "report_id", type = IdType.AUTO)
|
||||
private String reportId;
|
||||
|
||||
/**
|
||||
* 汇报周期
|
||||
*/
|
||||
@TableField("report_cycle")
|
||||
private String reportCycle;
|
||||
|
||||
/**
|
||||
* 汇报主题
|
||||
*/
|
||||
@TableField("work_title")
|
||||
private String workTitle;
|
||||
|
||||
/**
|
||||
* 本期工作内容
|
||||
*/
|
||||
@TableField("work_content")
|
||||
private String workContent;
|
||||
|
||||
/**
|
||||
* 项目进度
|
||||
*/
|
||||
@TableField("progress_percent")
|
||||
private String progressPercent;
|
||||
|
||||
/**
|
||||
* 存在问题
|
||||
*/
|
||||
@TableField("problem_desc")
|
||||
private String problemDesc;
|
||||
|
||||
/**
|
||||
* 解决方案
|
||||
*/
|
||||
@TableField("solution_plan")
|
||||
private String solutionPlan;
|
||||
|
||||
/**
|
||||
* 下期计划
|
||||
*/
|
||||
@TableField("next_plan")
|
||||
private String nextPlan;
|
||||
|
||||
/**
|
||||
* 提交时间
|
||||
*/
|
||||
@TableField("report_time")
|
||||
private LocalDateTime reportTime;
|
||||
|
||||
/**
|
||||
* 汇报状态
|
||||
*/
|
||||
@TableField("approval_status")
|
||||
private String approvalStatus;
|
||||
|
||||
/**
|
||||
* 项目编号
|
||||
*/
|
||||
@TableField("project_id")
|
||||
private String projectId;
|
||||
|
||||
/**
|
||||
* 人员编号
|
||||
*/
|
||||
@TableField("employee_id")
|
||||
private String employeeId;
|
||||
|
||||
/**
|
||||
* 租户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,134 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 项目需求表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_project_requirements")
|
||||
public class BizProjectRequirements implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 记录日期
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 需求标识
|
||||
*/
|
||||
@TableId(value = "requirement_id", type = IdType.AUTO)
|
||||
private String requirementId;
|
||||
|
||||
/**
|
||||
* 需求名称
|
||||
*/
|
||||
@TableField("requirement_name")
|
||||
private String requirementName;
|
||||
|
||||
/**
|
||||
* 需求编号
|
||||
*/
|
||||
@TableField("requirement_code")
|
||||
private String requirementCode;
|
||||
|
||||
/**
|
||||
* 项目区域
|
||||
*/
|
||||
@TableField("area_code")
|
||||
private String areaCode;
|
||||
|
||||
/**
|
||||
* 需求描述
|
||||
*/
|
||||
@TableField("requirement_description")
|
||||
private String requirementDescription;
|
||||
|
||||
/**
|
||||
* 开始时间
|
||||
*/
|
||||
@TableField("start_time")
|
||||
private LocalDateTime startTime;
|
||||
|
||||
/**
|
||||
* 结束时间
|
||||
*/
|
||||
@TableField("end_time")
|
||||
private LocalDateTime endTime;
|
||||
|
||||
/**
|
||||
* 优先级
|
||||
*/
|
||||
@TableField("priority")
|
||||
private String priority;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField("update_time")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
/**
|
||||
* 项目ID
|
||||
*/
|
||||
@TableField("project_id")
|
||||
private String projectId;
|
||||
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
@TableField("employee_id")
|
||||
private String employeeId;
|
||||
|
||||
/**
|
||||
* 需求备注
|
||||
*/
|
||||
@TableField("remark")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
@TableField("requirements_status")
|
||||
private String requirementsStatus;
|
||||
|
||||
/**
|
||||
* 租户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,95 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 省份信息表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_province")
|
||||
public class BizProvince implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 记录时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 省份名称
|
||||
*/
|
||||
@TableField("province_name")
|
||||
private String provinceName;
|
||||
|
||||
/**
|
||||
* 省份编码
|
||||
*/
|
||||
@TableField("province_code")
|
||||
private String provinceCode;
|
||||
|
||||
/**
|
||||
* 请求地址
|
||||
*/
|
||||
@TableField("url_addr")
|
||||
private String urlAddr;
|
||||
|
||||
/**
|
||||
* 省份序号
|
||||
*/
|
||||
@TableField("sorting")
|
||||
private Integer sorting;
|
||||
|
||||
/**
|
||||
* 请求状态
|
||||
*/
|
||||
@TableField("req_code")
|
||||
private String reqCode;
|
||||
|
||||
/**
|
||||
* 数据状态
|
||||
*/
|
||||
@TableField("data_status")
|
||||
private String dataStatus;
|
||||
|
||||
/**
|
||||
* 租户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,110 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 员工表用于存储公司内部员工的基本信息
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_resume_employee")
|
||||
public class BizResumeEmployee implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 记录时间
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 唯一标识
|
||||
*/
|
||||
@TableId(value = "employee_id", type = IdType.AUTO)
|
||||
private String employeeId;
|
||||
|
||||
/**
|
||||
* 员工姓名
|
||||
*/
|
||||
@TableField("employee_name")
|
||||
private String employeeName;
|
||||
|
||||
/**
|
||||
* 员工编号
|
||||
*/
|
||||
@TableField("employee_code")
|
||||
private String employeeCode;
|
||||
|
||||
/**
|
||||
* 电子邮件
|
||||
*/
|
||||
@TableField("email")
|
||||
private String email;
|
||||
|
||||
/**
|
||||
* 移动电话
|
||||
*/
|
||||
@TableField("phone_number")
|
||||
private String phoneNumber;
|
||||
|
||||
/**
|
||||
* 性别
|
||||
*/
|
||||
@TableField("sex")
|
||||
private String sex;
|
||||
|
||||
/**
|
||||
* 职位
|
||||
*/
|
||||
@TableField("employee_position")
|
||||
private String employeePosition;
|
||||
|
||||
/**
|
||||
* 入职日期
|
||||
*/
|
||||
@TableField("hire_date")
|
||||
private String hireDate;
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
@TableField("employee_status")
|
||||
private String employeeStatus;
|
||||
|
||||
/**
|
||||
* 租户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,113 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 网站信息存储表,用于记录网站登录信息及相关信息
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("biz_website_storage")
|
||||
public class BizWebsiteStorage implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 记录日期
|
||||
*/
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 网站标识
|
||||
*/
|
||||
@TableId(value = "website_id", type = IdType.AUTO)
|
||||
private String websiteId;
|
||||
|
||||
/**
|
||||
* 网站的URL地址
|
||||
*/
|
||||
@TableField("website_url")
|
||||
private String websiteUrl;
|
||||
|
||||
/**
|
||||
* 网站的名称
|
||||
*/
|
||||
@TableField("website_name")
|
||||
private String websiteName;
|
||||
|
||||
/**
|
||||
* 登录账号
|
||||
*/
|
||||
@TableField("web_account")
|
||||
private String webAccount;
|
||||
|
||||
/**
|
||||
* 登录密码,建议加密存储
|
||||
*/
|
||||
@TableField("web_password")
|
||||
private String webPassword;
|
||||
|
||||
/**
|
||||
* 其他说明或注意事项
|
||||
*/
|
||||
@TableField("remarks")
|
||||
private String remarks;
|
||||
|
||||
/**
|
||||
* 所属公司名称
|
||||
*/
|
||||
@TableField("company_id")
|
||||
private String companyId;
|
||||
|
||||
/**
|
||||
* 当前使用人姓名或账号
|
||||
*/
|
||||
@TableField("employee_id")
|
||||
private String employeeId;
|
||||
|
||||
@TableField("login_user")
|
||||
private String loginUser;
|
||||
|
||||
/**
|
||||
* 网站状态
|
||||
*/
|
||||
@TableField("storage_status")
|
||||
private String storageStatus;
|
||||
|
||||
/**
|
||||
* 租户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,99 +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_account")
|
||||
public class ErpAccount implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 账户标识
|
||||
*/
|
||||
@TableId(value = "account_id", type = IdType.AUTO)
|
||||
private String accountId;
|
||||
|
||||
/**
|
||||
* 账户名称
|
||||
*/
|
||||
@TableField("account_name")
|
||||
private String accountName;
|
||||
|
||||
/**
|
||||
* 账户类型
|
||||
*/
|
||||
@TableField("account_type")
|
||||
private String accountType;
|
||||
|
||||
/**
|
||||
* 账户卡号
|
||||
*/
|
||||
@TableField("account_code")
|
||||
private String accountCode;
|
||||
|
||||
/**
|
||||
* 初始余额
|
||||
*/
|
||||
@TableField("initial_balance")
|
||||
private BigDecimal initialBalance;
|
||||
|
||||
/**
|
||||
* 当前余额
|
||||
*/
|
||||
@TableField("current_balance")
|
||||
private BigDecimal currentBalance;
|
||||
|
||||
/**
|
||||
* 是否激活(1-激活,0-停用)
|
||||
*/
|
||||
@TableField("is_active")
|
||||
private String isActive;
|
||||
|
||||
@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,92 +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.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 收支分类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("erp_category")
|
||||
public class ErpCategory implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 分类标识
|
||||
*/
|
||||
@TableId(value = "category_id", type = IdType.AUTO)
|
||||
private String categoryId;
|
||||
|
||||
/**
|
||||
* 分类名称
|
||||
*/
|
||||
@TableField("category_name")
|
||||
private String categoryName;
|
||||
|
||||
/**
|
||||
* 分类类型
|
||||
*/
|
||||
@TableField("category_type")
|
||||
private String categoryType;
|
||||
|
||||
/**
|
||||
* 父分类ID(0-一级分类)
|
||||
*/
|
||||
@TableField("parent_id")
|
||||
private String parentId;
|
||||
|
||||
/**
|
||||
* 排序序号
|
||||
*/
|
||||
@TableField("sort_order")
|
||||
private String sortOrder;
|
||||
|
||||
/**
|
||||
* 是否启用
|
||||
*/
|
||||
@TableField("is_active")
|
||||
private String isActive;
|
||||
|
||||
@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,87 +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_expense")
|
||||
public class ErpExpense implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 支出ID
|
||||
*/
|
||||
@TableId(value = "expense_id", type = IdType.AUTO)
|
||||
private String expenseId;
|
||||
|
||||
/**
|
||||
* 关联流水ID
|
||||
*/
|
||||
@TableField("zflow_id")
|
||||
private String zflowId;
|
||||
|
||||
/**
|
||||
* 支出账户ID
|
||||
*/
|
||||
@TableField("account_id")
|
||||
private String accountId;
|
||||
|
||||
/**
|
||||
* 支出分类ID
|
||||
*/
|
||||
@TableField("category_id")
|
||||
private String categoryId;
|
||||
|
||||
/**
|
||||
* 交易金额(正数)
|
||||
*/
|
||||
@TableField("amount")
|
||||
private BigDecimal amount;
|
||||
|
||||
@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,87 +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_income")
|
||||
public class ErpIncome implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 收入ID
|
||||
*/
|
||||
@TableId(value = "income_id", type = IdType.AUTO)
|
||||
private String incomeId;
|
||||
|
||||
/**
|
||||
* 关联流水ID
|
||||
*/
|
||||
@TableField("sflow_id")
|
||||
private String sflowId;
|
||||
|
||||
/**
|
||||
* 收入账户ID
|
||||
*/
|
||||
@TableField("account_id")
|
||||
private String accountId;
|
||||
|
||||
/**
|
||||
* 收入分类ID
|
||||
*/
|
||||
@TableField("category_id")
|
||||
private String categoryId;
|
||||
|
||||
/**
|
||||
* 交易金额(正数)
|
||||
*/
|
||||
@TableField("amount")
|
||||
private BigDecimal amount;
|
||||
|
||||
@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,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;
|
||||
}
|
||||
@@ -1,111 +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_transaction_flow")
|
||||
public class ErpTransactionFlow implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 流水ID
|
||||
*/
|
||||
@TableId(value = "flow_id", type = IdType.AUTO)
|
||||
private String flowId;
|
||||
|
||||
/**
|
||||
* 交易名称
|
||||
*/
|
||||
@TableField("flow_name")
|
||||
private String flowName;
|
||||
|
||||
/**
|
||||
* 交易类型
|
||||
*/
|
||||
@TableField("transaction_type")
|
||||
private String transactionType;
|
||||
|
||||
/**
|
||||
* 交易金额(正数)
|
||||
*/
|
||||
@TableField("amount")
|
||||
private BigDecimal amount;
|
||||
|
||||
/**
|
||||
* 交易时间
|
||||
*/
|
||||
@TableField("transaction_time")
|
||||
private LocalDateTime transactionTime;
|
||||
|
||||
/**
|
||||
* 交易账户
|
||||
*/
|
||||
@TableField("account_id")
|
||||
private String accountId;
|
||||
|
||||
/**
|
||||
* 交易分类
|
||||
*/
|
||||
@TableField("category_id")
|
||||
private String categoryId;
|
||||
|
||||
/**
|
||||
* 交易备注
|
||||
*/
|
||||
@TableField("remark")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 是否记账
|
||||
*/
|
||||
@TableField("is_finish")
|
||||
private String isFinish;
|
||||
|
||||
@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,93 +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_transfer")
|
||||
public class ErpTransfer implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 转账ID
|
||||
*/
|
||||
@TableId(value = "transfer_id", type = IdType.AUTO)
|
||||
private String transferId;
|
||||
|
||||
/**
|
||||
* 转出账户
|
||||
*/
|
||||
@TableField("from_account_id")
|
||||
private String fromAccountId;
|
||||
|
||||
/**
|
||||
* 转入账户
|
||||
*/
|
||||
@TableField("to_account_id")
|
||||
private String toAccountId;
|
||||
|
||||
/**
|
||||
* 支出分类
|
||||
*/
|
||||
@TableField("category_id")
|
||||
private String categoryId;
|
||||
|
||||
/**
|
||||
* 交易金额
|
||||
*/
|
||||
@TableField("amount")
|
||||
private BigDecimal amount;
|
||||
|
||||
/**
|
||||
* 交易备注
|
||||
*/
|
||||
@TableField("remark")
|
||||
private String remark;
|
||||
|
||||
@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,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizCities;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 市区信息表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizCitiesMapper extends BaseMapper<BizCities> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizCompany;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 公司信息表,用于存储公司基本信息 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizCompanyMapper extends BaseMapper<BizCompany> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMailAccount;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 邮件账户配置表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizMailAccountMapper extends BaseMapper<BizMailAccount> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMailSent;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 发送邮件表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizMailSentMapper extends BaseMapper<BizMailSent> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMonitorHost;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 主机信息表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-10
|
||||
*/
|
||||
public interface BizMonitorHostMapper extends BaseMapper<BizMonitorHost> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMunicipalities;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 地市信息表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizMunicipalitiesMapper extends BaseMapper<BizMunicipalities> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizProjectInfo;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 项目表用于存储公司内部各个项目的详细信息 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizProjectInfoMapper extends BaseMapper<BizProjectInfo> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizProjectReport;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 项目汇报信息表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizProjectReportMapper extends BaseMapper<BizProjectReport> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizProjectRequirements;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 项目需求表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizProjectRequirementsMapper extends BaseMapper<BizProjectRequirements> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizProvince;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 省份信息表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizProvinceMapper extends BaseMapper<BizProvince> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizResumeEmployee;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 员工表用于存储公司内部员工的基本信息 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizResumeEmployeeMapper extends BaseMapper<BizResumeEmployee> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.BizWebsiteStorage;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 网站信息存储表,用于记录网站登录信息及相关信息 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizWebsiteStorageMapper extends BaseMapper<BizWebsiteStorage> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpAccount;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 账户信息 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpAccountMapper extends BaseMapper<ErpAccount> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpCategory;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 收支分类 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpCategoryMapper extends BaseMapper<ErpCategory> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpExpense;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 支出明细表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpExpenseMapper extends BaseMapper<ErpExpense> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpIncome;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 收入明细表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.mapper;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpTransactionFlow;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 收支流水总表 Mapper 接口
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizCities;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 市区信息表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizCitiesService extends IService<BizCities> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizCompany;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 公司信息表,用于存储公司基本信息 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizCompanyService extends IService<BizCompany> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMailAccount;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 邮件账户配置表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizMailAccountService extends IService<BizMailAccount> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMailSent;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 发送邮件表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizMailSentService extends IService<BizMailSent> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMonitorHost;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 主机信息表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-10
|
||||
*/
|
||||
public interface BizMonitorHostService extends IService<BizMonitorHost> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizMunicipalities;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 地市信息表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizMunicipalitiesService extends IService<BizMunicipalities> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizProjectInfo;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 项目表用于存储公司内部各个项目的详细信息 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizProjectInfoService extends IService<BizProjectInfo> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizProjectReport;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 项目汇报信息表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizProjectReportService extends IService<BizProjectReport> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizProjectRequirements;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 项目需求表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizProjectRequirementsService extends IService<BizProjectRequirements> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizProvince;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 省份信息表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizProvinceService extends IService<BizProvince> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizResumeEmployee;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 员工表用于存储公司内部员工的基本信息 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizResumeEmployeeService extends IService<BizResumeEmployee> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.BizWebsiteStorage;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 网站信息存储表,用于记录网站登录信息及相关信息 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface BizWebsiteStorageService extends IService<BizWebsiteStorage> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpAccount;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 账户信息 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpAccountService extends IService<ErpAccount> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpCategory;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 收支分类 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpCategoryService extends IService<ErpCategory> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpExpense;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 支出明细表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpExpenseService extends IService<ErpExpense> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpIncome;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 收入明细表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpPeriodSummary;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 账单汇总表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpPeriodSummaryService extends IService<ErpPeriodSummary> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.ErpTransactionFlow;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 收支流水总表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-11-09
|
||||
*/
|
||||
public interface ErpTransactionFlowService extends IService<ErpTransactionFlow> {
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user