Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
二
二医大银行收款回单
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JAVA
二医大银行收款回单
Merge requests
!77
枚举查询
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
枚举查询
jiangxiaoming
into
dev
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
jiangxiaoming
requested to merge
jiangxiaoming
into
dev
11 months ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
ba6a7e39
1 commit,
11 months ago
2 files
+
159
−
0
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
ServiceSite/facade/src/main/java/com/seasky/ledgerincome/interfaces/controller/api/EnumController.java
0 → 100644
+
64
−
0
Options
package
com.seasky.ledgerincome.interfaces.controller.api
;
import
com.seasky.core.common.Result
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
java.util.List
;
/**
* @Author jxm
* @Date 2024/8/12 15:20
* @Version 1.0
*/
@Api
(
tags
=
"枚举"
)
@RequestMapping
(
"enum"
)
public
interface
EnumController
{
@ApiOperation
(
"获取凭证状态"
)
@PostMapping
(
"/getVoucherState"
)
Result
<
String
>
getVoucherState
();
@ApiOperation
(
"获取发票类型"
)
@PostMapping
(
"/getBillType"
)
Result
<
String
>
getBillType
();
@ApiOperation
(
"获取发票状态"
)
@PostMapping
(
"/getInvoiceState"
)
Result
<
String
>
getInvoiceState
();
@ApiOperation
(
"获取发票类型"
)
@PostMapping
(
"/getInvoiceType"
)
Result
<
String
>
getInvoiceType
();
@ApiOperation
(
"获取回单进度"
)
@PostMapping
(
"/getIncomeSpeed"
)
Result
<
String
>
getIncomeSpeed
();
@ApiOperation
(
"获取操作符"
)
@PostMapping
(
"/getOperator"
)
Result
<
String
>
getOperator
();
@ApiOperation
(
"获取关系操作符"
)
@PostMapping
(
"/getRelationship"
)
Result
<
String
>
getRelationship
();
@ApiOperation
(
"获取筛选属性"
)
@PostMapping
(
"/getFilterAttr"
)
Result
<
String
>
getFilterAttr
();
@ApiOperation
(
"获取文件类型"
)
@PostMapping
(
"/getFileType"
)
Result
<
String
>
getFileType
();
@ApiOperation
(
"获取入账类型"
)
@PostMapping
(
"/getEntryType"
)
Result
<
String
>
getEntryType
();
@ApiOperation
(
"获取补充状态"
)
@PostMapping
(
"/getSupplementState"
)
Result
<
String
>
getSupplementState
();
}