记得上下班打卡 | git大法好,push需谨慎

Commit 53a6ee43 authored by GaoHu's avatar GaoHu

exit:黑名单字段返回

parent ee215d2e
......@@ -108,6 +108,8 @@ public class KylinPerformanceVo implements Serializable, Cloneable{
@ApiModelProperty(value = "分销人名称")
private String agentName;
@ApiModelProperty(value = "0正常、1黑名单")
private Integer state;
@ApiModelProperty(value = "注册时间")
private String createdAt;
......
......@@ -261,6 +261,8 @@ public class KylinPerformancesServiceImpl implements IKylinPerformancesService {
});
String agentName = responseDto.getData().getName();
performancesInfo.setAgentName(agentName);
Integer state = responseDto.getData().getState();
performancesInfo.setState(state);
} catch (Exception e) {
log.error("演出详情 获取小家伙名称异常 eMsg:{}", e.getMessage());
performancesInfo.setAgentName("");
......
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