摘要:
//1.获取到主要数据rows = contentMapper.selectPageOrder(params); // 2.获取平台 for (int i = 0; i < rows.size(); i++) {//3.查询出所有的key List<Integer> typeKey = conten 阅读全文
摘要:
params.put("startRow", startRow); params.put("size", size); Integer total = orderSettingMapper.countOrderList(params); //1.这里需要先查询出,已经点击预约的人数 List<Map 阅读全文
摘要:
1.已经存好了一个List ,需要把另一个list的值更新到一个已经存好数据的list,这里可以通过会员编号,两个list 都有这个值,然后进行筛选,匹配,更新数据。nr = pushService.pushGzMsg(pushGzMsgParams); System.out.println("nr 阅读全文
摘要:
拉取代码 提交代码 1.查看分支 git branch -a 2.切换分支 git checkout dev 3.push代码 阅读全文
摘要:
<resultMap type="hotkidclub.model.qa.Qa" id="qaResultMap"> <id column="key" property="key"/> <result column="name" property="name"/> <result column="d 阅读全文
摘要:
mysql 常用的分页方式:(1)limit分页公式:curPage是当前第几页;pageSize是一页多少条记录 select * from dual where 1=1 limit (curPage-1)*pageSize,pageSize Oracle 常用的分页方式: select * fr 阅读全文
摘要:
<insert id="insertNotifySettingRecord" parameterType="list" useGeneratedKeys="true" keyProperty="key"> insert into hotkidclub_notification.notify_sett 阅读全文
摘要:
1.安装软件。Visual Studio Code 2.安装node.js 安装完成后输入 node -v 提示 command not found 于是,百度了报错原因。 mac下node安装提示command not found 找到一篇文章,解决了上面的报错。 官网下载了node的.pkg文件 阅读全文
摘要:
定义了一个常量,在UtilService 里面,需要获取到,直接访问就可以拿到了。UtilService.SEND_CONTENT 可以直接获取到。 阅读全文
org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].Standard
摘要:
项目启动突然报错,然后,查询了很久资料,发现,需要加上一个文件。 <dependency> <groupId>com.sun.activation</groupId> <artifactId>javax.activation</artifactId> <version>1.2.0</version> 阅读全文