package com.cloud.user.model;
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* c 服务返回结果
|
*/
|
@Data
|
@Api(description = "c 返回个人状态",value = "CSerResult")
|
public class CSerResult implements Serializable {
|
private static final long serialVersionUID = -2745876607871769839L;
|
/**
|
* 查询和更新返回执行结果 1 exist/0 notexist false -1
|
* 添加返回结果 1 true/-1 false
|
*/
|
@ApiModelProperty(value = "result 返回执行结果 1:exist/0:notexist/-1:false")
|
private String result;
|
/**
|
* 返回执行信息
|
*/
|
@ApiModelProperty(value = "msg 返回执行信息")
|
private String msg;
|
/**
|
* 添加人员判断人员 persinId
|
*/
|
@ApiModelProperty(value = "personId 判断人员 persinId")
|
private String personId;
|
/**
|
* 查询人员状态 返回存在结果
|
*/
|
@ApiModelProperty(value = "existDataBase list集合 查询人员底库状态")
|
private List<SyncDataBase> existDataBase = new ArrayList<>();
|
|
}
|