Merge remote-tracking branch 'origin/master'
| | |
| | | |
| | | @Override |
| | | public int deleteSalesLedgerByIds(Long[] ids) { |
| | | for (Long id : ids) { |
| | | if (id == null) { |
| | | return 1; |
| | | } |
| | | } |
| | | return commonFileMapper.deleteBatchIds(Arrays.asList(ids)); |
| | | } |
| | | |
| | |
| | | servlet: |
| | | multipart: |
| | | # 单个文件大小 |
| | | max-file-size: 10MB |
| | | max-file-size: 1GB |
| | | # 设置总上传的文件大小 |
| | | max-request-size: 20MB |
| | | max-request-size: 2GB |
| | | # 服务模块 |
| | | devtools: |
| | | restart: |
| | | # 热部署开关 |
| | | enabled: true |
| | | enabled: false |
| | | # redis 配置 |
| | | redis: |
| | | # 地址 |
| | |
| | | # 数据库索引 |
| | | database: 0 |
| | | # 密码 |
| | | # password: root2022! |
| | | password: root2022! |
| | | # password: 123456 |
| | | |
| | | # 连接超时时间 |
| | | timeout: 10s |
| | | lettuce: |