将工作评议的三四环节对调

This commit is contained in:
lijiaqi 2022-09-21 14:54:13 +08:00
parent 624901c174
commit f09745b4f5
1 changed files with 4 additions and 4 deletions

View File

@ -25,12 +25,12 @@ public class ReviewWork extends BaseEntity {
private static final long serialVersionUID = 1L;
//当前环节 (内部上报拟评议部门inReport:1 上报评议部门report:2 向社会征求被评议部门意见ask:3
//调查报告check:4 评议意见opinion:5 整改结果result:6 公示public:7)
//当前环节 (内部上报拟评议部门inReport:1 上报评议部门report:2 调查报告check:3
// 向社会征求被评议部门意见ask:4 评议意见opinion:5 整改结果result:6 公示public:7)
public static Integer STATE_IN_REPORT = 1;
public static Integer STATE_REPORT = 2;
public static Integer STATE_ASK = 3;
public static Integer STATE_CHECK = 4;
public static Integer STATE_CHECK = 3;
public static Integer STATE_ASK = 4;
public static Integer STATE_OPINION = 5;
public static Integer STATE_RESULT = 6;
public static Integer STATE_PUBLIC = 7;