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