# wxshop **Repository Path**: houzw_admin/wxshop ## Basic Information - **Project Name**: wxshop - **Description**: springboot+thymeleaf+layui - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2018-07-20 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 编码规范 1.在`*mapper.xml`中,所有的`CRUD(增删改查)`操作需要使用``加以标注 2.在所有需要我们编码的类中加入类文档注释 格式如下: ```java /** * 文档注释,文档注释格式在下面的超链接里 */ public class Xxx{ //your code... } ``` [如何让IDEA在创建类/接口时自动添加文档注释](http://blog.csdn.net/qq_34581118/article/details/78409782) 3.在所有的方法上加入文档注释,格式由IDEA自建,只需填入内容即可(服务层中注释写在接口中,实现类就不用写了) ## 开发注意事项 1.[如何在IDEA中使用git](http://blog.csdn.net/autfish/article/details/52513465)