|
|
@@ -89,10 +89,10 @@ public class AiAuditAspect {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 将审核结果写入入参的status字段(通过=1,不通过=0)
|
|
|
+ 将审核结果写入入参的status字段(通过=1,不通过=2)
|
|
|
*/
|
|
|
private void applyStatus(Object[] args, boolean passed) {
|
|
|
- int status = passed ? 1 : 0;
|
|
|
+ int status = passed ? 1 : 2;
|
|
|
for (Object arg : args) {
|
|
|
if (arg == null) {
|
|
|
continue;
|