Commit 2a17d76b by 刘鑫

Merge branch 'develop' of https://gitlab.dituhui.com/bsh/project/project into develop

2 parents a35dad8c 56456c6d
......@@ -87,7 +87,7 @@ public class OrderInfoEntity {
private String source;
@Column(name = "bean_priority", length = 10)
private String beanPriority;
private String beanPriority = "0";
@Column(name = "bean_tags", length = 200)
private String beanTags;
......
......@@ -246,7 +246,7 @@ public class EngineerGanttServiceImpl implements EngineerGanttService {
private String getTags(OrderInfoEntity order) {
List<String> tagList = new ArrayList();
if (StringUtils.isNotBlank(order.getBeanTags())) {
tagList = Arrays.asList(order.getBeanTags().split(","));
tagList = Arrays.stream(order.getBeanTags().split(",")).collect(Collectors.toList());
}
if (order.getIsCutoff() == 1) {
tagList.add(OrderPeaTagsEnum.cutoff.getTag());
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!