Commit 4303fc88 by guojx

Merge branch 'bugfix-2024-01-17-rank' into 'master'

竞赛单项添加数据类型字段

See merge request !1633
parents ad1ed598 997e183f
...@@ -51,6 +51,11 @@ public class IndexVO implements Serializable { ...@@ -51,6 +51,11 @@ public class IndexVO implements Serializable {
*/ */
private String itemId; private String itemId;
/**
* 0:个数/人数 1:元 2: 万元 3:比率值,需要自己加% 4:比值,乘以100+%
*/
private String dataType;
public List<String> getIndexRemarkList() { public List<String> getIndexRemarkList() {
if (StringUtils.isNotBlank(indexRemark)) { if (StringUtils.isNotBlank(indexRemark)) {
return Arrays.stream(indexRemark.split(";")).collect(Collectors.toList()); return Arrays.stream(indexRemark.split(";")).collect(Collectors.toList());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment