Commit 29648548 by 陶光胜

通过电话号码查询商户

parent 6addd5e6
......@@ -5,6 +5,9 @@ import java.io.Serializable;
public class UnionEnterpriseResourceDTO implements Serializable {
private Long resource;
private Integer unionEnterpriseId;
private Integer resourceType;
private Integer authorizationStatus;
private String authorizationMessage;
public Long getResource() {
return resource;
......@@ -21,4 +24,28 @@ public class UnionEnterpriseResourceDTO implements Serializable {
public void setUnionEnterpriseId(Integer unionEnterpriseId) {
this.unionEnterpriseId = unionEnterpriseId;
}
public Integer getResourceType() {
return resourceType;
}
public void setResourceType(Integer resourceType) {
this.resourceType = resourceType;
}
public Integer getAuthorizationStatus() {
return authorizationStatus;
}
public void setAuthorizationStatus(Integer authorizationStatus) {
this.authorizationStatus = authorizationStatus;
}
public String getAuthorizationMessage() {
return authorizationMessage;
}
public void setAuthorizationMessage(String authorizationMessage) {
this.authorizationMessage = authorizationMessage;
}
}
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