# com.onlineshop.highgee **Repository Path**: Salthai/HighGee ## Basic Information - **Project Name**: com.onlineshop.highgee - **Description**: highgee - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-12-19 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 每次提交前先测试功能,不会分支没关系,直接主分支怼。 ------ 1)类名使用 UpperCamelCase 风格。UserDao 2)方法名、参数名、成员变量、局部变量都统一使用 lowerCamelCase 风格,例如findAll() 3)常量名要大写 4)包名小写:应用工具类包名为 com . alibaba . ai . util 、类名为 MessageUtils( 此规则参考 spring 的框架结构 ) 注解 ```java /** * @author salthai * @date 2019年12月18日 下午7:19:17 * @version 1.0 */ 类写上按照我的格式 public class ProductDaoImpl implements ProductDao { Connection con = null; Statement sta = null; ResultSet res = null; /** * 查询所有商品 * @return List */ 方法名注解,写清楚这个方法干嘛的,返回值 ``` 数据库表; 命名按照卢龙发的