上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页
摘要: 1、菜单新增权限 上面我配置的是查询本部门的数据。 如果项配置查询所有数据,不需要配置,因为你在给角色分配相应数据权限时,分配了部门就是部门权限,不分配就是所有权限。 2、分配角色 3、接口层 4、serviceimpl层 5、mapper.xml层 执行后日志显示sql为 阅读全文
posted @ 2022-06-27 23:01 花田007 阅读(1879) 评论(0) 推荐(0)
摘要: <choose> <when test="bic.duedateQueryStart != null or bic.duedateQueryEnd != null"> <if test="bic.duedateQueryStart != null and bic.duedateQueryStart 阅读全文
posted @ 2022-06-27 16:48 花田007 阅读(73) 评论(0) 推荐(0)
摘要: <insert id="saveOrUpdatePayinfo" parameterType="com.bill.invoice.entity.BusBillPayinfo"> replace into bus_bill_payinfo <trim prefix="(" suffix=")" suf 阅读全文
posted @ 2022-06-26 18:22 花田007 阅读(65) 评论(0) 推荐(0)
摘要: //1.获取年月日 时分秒 select SYSDATE() AS '年月日 时分秒'; 2020-07-02 16:36:17 //2.获取(年月日) select DATE(CURDATE()) as '年月日'; select CURDATE() as '年月日'; select curren 阅读全文
posted @ 2022-06-19 22:33 花田007 阅读(8665) 评论(0) 推荐(0)
摘要: update BUS_BILL_INFO_CUST t set t.UPDATE_TIME = sysdate(), t.UPDATE_BY ='222', t.SYS_ORG_CODE ='2223' where t.ID = '0a41ca95d6a549219bfaea22bb72cdb0'; 阅读全文
posted @ 2022-06-17 17:54 花田007 阅读(115) 评论(0) 推荐(0)
摘要: 问题描述(虽然报错但是数据库没有回滚): 问题原因: mysql数据库引擎设置错误, 解决办法: 使用DBeaver修改表的引擎。 DBeaver下载地址 https://dbeaver.io/ 阅读全文
posted @ 2022-06-15 11:26 花田007 阅读(114) 评论(0) 推荐(0)
摘要: 安装cnpm: npm install -g cnpm --registry=https://registry.npm.taobao.org 搭建vue开发环境 1、必须要安装nodejs 2、搭建vue的开发环境 ,安装vue的脚手架工具 官方命令行工具 npm install --global 阅读全文
posted @ 2022-06-14 15:17 花田007 阅读(34) 评论(0) 推荐(0)
摘要: invoiceSubmit(record) { const _this = this; //判断签收状态是否签收和拒收 if(record.operflag == 'N'){ this.$message.error('已操作,不可再次签收'); return; } if (record.flag = 阅读全文
posted @ 2022-06-09 22:44 花田007 阅读(908) 评论(0) 推荐(0)
摘要: public Double CNYtoN(String amount) { double result = 0; double temp = -1;//存放一个单位的数字如:十万 int count = 0;//判断是否有chArr Map<Character, Double> map = new 阅读全文
posted @ 2022-06-09 11:20 花田007 阅读(221) 评论(0) 推荐(0)
摘要: public static void main(String[] args) throws ParseException { Calendar c1 = Calendar.getInstance();//实例化 Calendar c2 = Calendar.getInstance(); Simple 阅读全文
posted @ 2022-06-08 13:39 花田007 阅读(891) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页