-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
关于开发标准 #26
Comments
先写,等变成shit了就重构 |
我说了算 |
首先关于请求的 dto,由于每个请求(应该)只会有一个 dto,所以可以统一一下 dto 的命名 |
可以使用 👍 或者 👎 投票 @Him188 @mzdluo123 |
Request 的实体类请求我们一般不会叫做 DTO ,只有负责数据库与持久层直接关联的实体类才附带DTO(当然我更喜欢将他们叫做pojo) ,接口请求我们一般使用使用 Vo |
Vo 的意思是? |
我是傻逼 |
不好意思,之前我都忘了有这回事了刚才突然收到通知。vo意思是view object,其实都可以啦,看开发人员喜欢了。 |
急需开发标准
or become a shit mountain
数据库表命名
Spring Model
所有请求
RequestData
结尾所有响应
ResponseData
或RespData
结尾Remarks
至于
RequestData
为什么不选择用ReqData
,是因为我觉得req
这个缩写太丑了。所有 Spring Component
val userSvc: UserService
val userRepo: UserRepository
所有函数
return
语句(不强制)所有类字段/属性访问
this.xxx
(不强制)The text was updated successfully, but these errors were encountered: