fix 78182 企业标准-标准状态 封存状态排序错误

This commit is contained in:
liao
2023-11-07 09:21:32 +08:00
parent 73ed203721
commit d23bee3843
5 changed files with 5 additions and 5 deletions
@@ -64,7 +64,7 @@ public class LawsEnterpriseStandardTest {
lawsEnterpriseStandard.setEnglishName(faker.commerce().productName());
lawsEnterpriseStandard.setReleaseDate(faker.date().past(1, TimeUnit.SECONDS));
lawsEnterpriseStandard.setImplementationDate(faker.date().past(1, TimeUnit.SECONDS));
lawsEnterpriseStandard.setStandardState(faker.random().nextInt(5));
lawsEnterpriseStandard.setStandardState(faker.random().nextInt(5) + "");
return lawsEnterpriseStandard;
}