上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 53 下一页
摘要: 阅读全文
posted @ 2020-12-30 16:09 A汉克先生 阅读(58) 评论(0) 推荐(0) 编辑
摘要: (一)购物商城数据库设计-前期准备 (二)购物商城数据库设计-商品表设计 https://blog.csdn.net/thc1987/article/details/80426063 (三)购物商城数据库设计-商品表设计 https://blog.csdn.net/thc1987/article/d 阅读全文
posted @ 2020-12-29 17:07 A汉克先生 阅读(871) 评论(0) 推荐(0) 编辑
摘要: 1. 表结构一样 insert into 表1 select * from 表2 2. 表结构不一样( insert into sys_user_role(user_id,role_id)(select user_id,2 from sys_user) ) insert into sys_dept_ 阅读全文
posted @ 2020-12-28 16:46 A汉克先生 阅读(352) 评论(0) 推荐(0) 编辑
摘要: package com.foen.hr.utils; /** * 员工状态 * @author: gzh * @date: 2020年12月26日下午5:20:58 */ public enum UserEmpnoStatusEnum { STATUS0("0","在职人员"), STATUS1(" 阅读全文
posted @ 2020-12-28 11:22 A汉克先生 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 初始化 java构造方法 无参,有参 package com.foen.cloud.utils; import java.util.HashMap; /** * @Description:类说明:后台返回前端请求处理结果基类 * @author: gzh * @date: 2018年9月23日下午2 阅读全文
posted @ 2020-12-24 15:43 A汉克先生 阅读(73) 评论(0) 推荐(0) 编辑
摘要: com.alibaba.fastjson.JSONObject jsonObject = com.alibaba.fastjson.JSONObject.parseObject(sResult); jsonObject . getObject("key") get("key") 阅读全文
posted @ 2020-12-24 13:43 A汉克先生 阅读(294) 评论(0) 推荐(0) 编辑
摘要: -- 分页查询(通用型) select top pageSize * from (select row_number() over(order by sno asc) as rownumber,* from student) temp_row where rownumber>((pageIndex- 阅读全文
posted @ 2020-12-22 11:37 A汉克先生 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Insert into ALU_KINGDEE_POWDER_STORE(org_code,verify_date,material_code,material_name,brand,storage,type,weight)VALUES (?,?,?,?,?,?,?,?) , (?,?,?,?,?, 阅读全文
posted @ 2020-12-14 10:47 A汉克先生 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: if(listNew.size()>0){ logger.info("走批量插入一个大list:"+listNew.size()+"分70一分小list"); List< List<InstantQtyEntity>> listMap = new ArrayList<>(); int size =7 阅读全文
posted @ 2020-12-10 15:22 A汉克先生 阅读(353) 评论(0) 推荐(0) 编辑
摘要: @Component @ConfigurationProperties(prefix = "api") @PropertySource(value = { "classpath:api.yml" }) package com.foen.api.config; import org.springfra 阅读全文
posted @ 2020-12-04 15:44 A汉克先生 阅读(224) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 53 下一页