新增图表接口

This commit is contained in:
2025-11-12 13:07:06 +08:00
parent 798abce05e
commit 83076a77dd
121 changed files with 4054 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 市区信息表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizCities")
public class BizCitiesController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 公司信息表,用于存储公司基本信息 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizCompany")
public class BizCompanyController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 邮件账户配置表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizMailAccount")
public class BizMailAccountController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 发送邮件表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizMailSent")
public class BizMailSentController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* SSH账号密码表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizMonitorAccount")
public class BizMonitorAccountController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 主机信息表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizMonitorHost")
public class BizMonitorHostController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 地市信息表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizMunicipalities")
public class BizMunicipalitiesController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 项目表用于存储公司内部各个项目的详细信息 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizProjectInfo")
public class BizProjectInfoController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 项目汇报信息表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizProjectReport")
public class BizProjectReportController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 项目需求表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizProjectRequirements")
public class BizProjectRequirementsController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 省份信息表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizProvince")
public class BizProvinceController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 员工表用于存储公司内部员工的基本信息 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizResumeEmployee")
public class BizResumeEmployeeController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 网站信息存储表,用于记录网站登录信息及相关信息 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/bizWebsiteStorage")
public class BizWebsiteStorageController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 账户信息 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/erpAccount")
public class ErpAccountController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 收支分类 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/erpCategory")
public class ErpCategoryController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 支出明细表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/erpExpense")
public class ErpExpenseController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 收入明细表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/erpIncome")
public class ErpIncomeController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* VIEW 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/erpSummaryAllView")
public class ErpSummaryAllViewController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* VIEW 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/erpSummarySourceView")
public class ErpSummarySourceViewController {
}

View File

@@ -0,0 +1,18 @@
package com.mini.capi.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 收支流水总表 前端控制器
* </p>
*
* @author gaoxq
* @since 2025-11-12
*/
@RestController
@RequestMapping("/biz/erpTransactionFlow")
public class ErpTransactionFlowController {
}