1. 可以提前入园的话,一路小跑,入园后直接往右边跑到“飞越地平线”2. 玩过飞越地平线后,直接跑向加勒比海盗,排队时间5分钟左右。3. 七个小矮人矿山车4.小雄维尼历险记5.小飞侠天空奇遇6.创极速光轮7.喷气背包飞行器8.抱抱龙冲天赛车9.胡迪牛仔嘉年华10.米奇俱乐部 此时下午3:15左右,就 Read More
posted @ 2024-02-04 15:47 Li_ll Views(1) Comments(0) Diggs(0) Edit
先SQL查询表名 SELECT * from 表 for update ; 把锁打开 , 然后复制Excel的数据项 , 往数据库拷贝 , 点击保存 , 然后 在提交事务 --DROP TABLE ZZSYD_TMP; --建立临时表 create table ZZSYD_TMP ( XH NVAR Read More
posted @ 2023-11-22 14:54 Li_ll Views(4) Comments(0) Diggs(0) Edit
查询select sess.sid, sess.serial#, lo.oracle_username, lo.os_user_name, ao.object_name, lo.locked_mode from v$locked_object lo, dba_objects ao, v$sessio Read More
posted @ 2023-06-30 15:08 Li_ll Views(12) Comments(0) Diggs(0) Edit
问题 : 主数据库 为oracle , 配置数据库 SqlServer , 有个子页面查询SqlServer数据库视图 , 需要二十多秒才给响应 处理方案 : 把查询分页数据的SQL 和 查询分页计数的SQL 异步处理 原代码: page=iMpckService.getsympzkcSqlserv Read More
posted @ 2023-06-14 09:27 Li_ll Views(22) Comments(0) Diggs(0) Edit
正确写法: <if test=" xxx==1 "> 或者 <if test=" xxx=='1'.toString() "> 或者 <if test=' xxx=="1" '> 错误写法 <if test=" xxx=='1' "> 如果判断条件是数字,则不能加单引号,否则将会不生效! 拓展: m Read More
posted @ 2023-06-08 16:31 Li_ll Views(1271) Comments(0) Diggs(0) Edit
前端组件 <hd-flex> <el-dialog v-model="isUploadDialog" width="50%" lock-scroll=false> <el-upload class="upload-demo" drag :action="url" :on-success="succe Read More
posted @ 2023-06-02 17:41 Li_ll Views(126) Comments(0) Diggs(0) Edit
错误的查询返回格式 //dao 层 List query_T_JS_DHGL_XMLGJ(Map<String, String> queryParams); 正确的的查询返回格式 ArrayList<Map> query_T_JS_DHGL_XMLGJ(Map<String, String> que Read More
posted @ 2023-05-29 18:01 Li_ll Views(26) Comments(0) Diggs(0) Edit
Controller层 @ApiOperation(value = "毛坯反馈参数(越南)导出") @ApiImplicitParams({ @ApiImplicitParam(name = "ZzcsVO",value = "查询条件",required = false,dataType = "Z Read More
posted @ 2023-03-23 14:09 Li_ll Views(61) Comments(0) Diggs(0) Edit
public static Boolean is18Card(String idCard18) { //证件省份 HashMap<String, String> aCity = new HashMap<>(); aCity.put("11","北京"); aCity.put("12","天津"); Read More
posted @ 2023-02-22 16:20 Li_ll Views(20) Comments(0) Diggs(0) Edit
<vxe-table @cell-click="handleClickCell" :span-method="spanMethods" //自动合并单元格 :data="tableData2"> </vxe-table> spanMethods({row, $rowIndex, column, da Read More
posted @ 2022-11-01 11:15 Li_ll Views(1610) Comments(0) Diggs(0) Edit