fxkh-txl-service/README.MD

43 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 漳河大坝安全api
## 目录
```
java
|_annotation放置项目自定义注解
|_aspect放置切面代码
|_config放置配置类
|_constant放置常量、枚举等定义
|__consist存放常量定义
|__enums存放枚举定义
|_controller放置控制器代码
|_filter放置一些过滤、拦截相关的代码
|_mapper放置数据访问层代码接口
|_model放置数据模型代码
|__entity放置数据库实体对象定义
|__dto存放数据传输对象定义
|__vo存放显示层对象定义
|_service放置具体的业务逻辑代码接口和实现分离
|__intf存放业务逻辑接口定义
|__impl存放业务逻辑实际实现
|_utils放置工具类和辅助代码
```
```
resources
|_mapper存放mybatis的XML映射文件如果是mybatis项目
|_static存放网页静态资源比如下面的js/css/img
|__js
|__css
|__img
|__font
|__等等
|_template存放网页模板比如thymeleaf/freemarker模板等
|__header
|__sidebar
|__bottom
|__XXX.html等等
|_application.yml 基本配置文件
|_application-dev.yml 开发环境配置文件
|_application-test.yml 测试环境配置文件
|_application-prod.yml 生产环境配置文件
```