Compare commits
4 Commits
cursor/bc-
...
v2.6.1(jdk
Author | SHA1 | Date | |
---|---|---|---|
![]() |
4a111d2cb5 | ||
![]() |
1978603bd9 | ||
![]() |
aef47bcf70 | ||
![]() |
a10e7aedaa |
2
pom.xml
2
pom.xml
@@ -32,7 +32,7 @@
|
|||||||
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<revision>2.6.0-SNAPSHOT</revision>
|
<revision>2.6.1-SNAPSHOT</revision>
|
||||||
<!-- Maven 相关 -->
|
<!-- Maven 相关 -->
|
||||||
<java.version>17</java.version>
|
<java.version>17</java.version>
|
||||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||||
|
@@ -14,7 +14,7 @@
|
|||||||
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<revision>2.6.0-SNAPSHOT</revision>
|
<revision>2.6.1-SNAPSHOT</revision>
|
||||||
<flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>
|
<flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>
|
||||||
<!-- 统一依赖管理 -->
|
<!-- 统一依赖管理 -->
|
||||||
<spring.boot.version>3.4.5</spring.boot.version>
|
<spring.boot.version>3.4.5</spring.boot.version>
|
||||||
|
@@ -316,7 +316,7 @@ public class ${table.className}ServiceImpl implements ${table.className}Service
|
|||||||
}
|
}
|
||||||
// 插入
|
// 插入
|
||||||
#end
|
#end
|
||||||
${subClassNameVar}.clean() // 清理掉创建、更新时间等相关属性值
|
${subClassNameVar}.clean(); // 清理掉创建、更新时间等相关属性值
|
||||||
${subClassNameVars.get($index)}Mapper.insert(${subClassNameVar});
|
${subClassNameVars.get($index)}Mapper.insert(${subClassNameVar});
|
||||||
return ${subClassNameVar}.getId();
|
return ${subClassNameVar}.getId();
|
||||||
}
|
}
|
||||||
|
@@ -180,7 +180,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
|
|||||||
#end
|
#end
|
||||||
},
|
},
|
||||||
toolbarConfig: {
|
toolbarConfig: {
|
||||||
refresh: { code: 'query' },
|
refresh: true,
|
||||||
search: true,
|
search: true,
|
||||||
},
|
},
|
||||||
} as VxeTableGridOptions<${simpleClassName}Api.${simpleClassName}>,
|
} as VxeTableGridOptions<${simpleClassName}Api.${simpleClassName}>,
|
||||||
|
@@ -131,7 +131,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
|
|||||||
enabled: true,
|
enabled: true,
|
||||||
},
|
},
|
||||||
toolbarConfig: {
|
toolbarConfig: {
|
||||||
refresh: { code: 'query' },
|
refresh: true,
|
||||||
search: true,
|
search: true,
|
||||||
},
|
},
|
||||||
#else
|
#else
|
||||||
|
@@ -174,7 +174,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
|
|||||||
#end
|
#end
|
||||||
},
|
},
|
||||||
toolbarConfig: {
|
toolbarConfig: {
|
||||||
refresh: { code: 'query' },
|
refresh: true,
|
||||||
search: true,
|
search: true,
|
||||||
},
|
},
|
||||||
} as VxeTableGridOptions<${simpleClassName}Api.${simpleClassName}>,
|
} as VxeTableGridOptions<${simpleClassName}Api.${simpleClassName}>,
|
||||||
|
@@ -125,7 +125,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
|
|||||||
enabled: true,
|
enabled: true,
|
||||||
},
|
},
|
||||||
toolbarConfig: {
|
toolbarConfig: {
|
||||||
refresh: { code: 'query' },
|
refresh: true,
|
||||||
search: true,
|
search: true,
|
||||||
},
|
},
|
||||||
#else
|
#else
|
||||||
|
@@ -264,9 +264,6 @@ public class PayTransferServiceImpl implements PayTransferService {
|
|||||||
}
|
}
|
||||||
int count = 0;
|
int count = 0;
|
||||||
for (PayTransferDO transfer : list) {
|
for (PayTransferDO transfer : list) {
|
||||||
if (!transfer.getId().equals(54L)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
count += syncTransfer(transfer) ? 1 : 0;
|
count += syncTransfer(transfer) ? 1 : 0;
|
||||||
}
|
}
|
||||||
return count;
|
return count;
|
||||||
|
Reference in New Issue
Block a user