13 changed files with 67 additions and 16 deletions
@ -0,0 +1,4 @@
|
||||
update negative set check_status_code = checkStatus where checkStatus in (1, 2); |
||||
update negative set check_status_code = '5' where checkStatus = 3; |
||||
update negative set check_status_code = '5' where checkStatus = 4; |
||||
update negative set checkStatus = '3' where checkStatus = 4; |
||||
@ -0,0 +1,23 @@
|
||||
package com.biutag.supervision.constants.enums; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import lombok.Getter; |
||||
|
||||
@Getter |
||||
@AllArgsConstructor |
||||
public enum CheckStatusEnum { |
||||
|
||||
// 属实
|
||||
TRUE("1", "属实"), |
||||
// 部分属实
|
||||
PARTIALLY_TRUE("2", "部分属实"), |
||||
// 不属实
|
||||
QTFT("3", "不属实,但发现存在其他问题"), |
||||
WFCS("4", "现有证据暂时无法查实"), |
||||
FALSE("5", "不属实"); |
||||
|
||||
private String value; |
||||
|
||||
private String label; |
||||
|
||||
} |
||||
Binary file not shown.
Loading…
Reference in new issue