3 Commits 838fc03999 ... 6b4c23642e

Auteur SHA1 Message Date
  panzhilin 6b4c23642e Merge remote-tracking branch 'origin/sit' into sit il y a 3 mois
  panzhilin c8ebfed8ef Merge branch 'BugFix-panzhilin' into sit il y a 3 mois
  panzhilin 389d79f1c4 BugFix:演出嘉宾要有职位和擅长,现在只展示职位添加映射标签 il y a 3 mois

+ 6 - 0
alien-entity/src/main/java/shop/alien/entity/store/vo/PerformerVo.java

@@ -43,5 +43,11 @@ public class PerformerVo implements Serializable {
      */
     @ApiModelProperty(value = "职位")
     private String style;
+
+    /**
+     * 标签(对应 store_staff_config.tag)
+     */
+    @ApiModelProperty(value = "标签")
+    private String tag;
 }
 

+ 1 - 0
alien-store/src/main/java/shop/alien/store/service/impl/BarPerformanceServiceImpl.java

@@ -534,6 +534,7 @@ public class BarPerformanceServiceImpl implements BarPerformanceService {
         performerVo.setAvatar(staffConfig.getStaffImage());
         performerVo.setName(staffConfig.getName());
         performerVo.setStyle(staffConfig.getStaffPosition());
+        performerVo.setTag(staffConfig.getTag());
         return performerVo;
     }