|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.logpm.factorydata.suofeiya.vo; |
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty; |
|
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
@ -7,7 +8,10 @@ import java.io.Serializable;
|
|
|
|
|
@Data |
|
|
|
|
public class Resp implements Serializable { |
|
|
|
|
|
|
|
|
|
@JsonProperty("result_code") |
|
|
|
|
private String resultCode; |
|
|
|
|
|
|
|
|
|
@JsonProperty("result_message") |
|
|
|
|
private String resultMessage; |
|
|
|
|
|
|
|
|
|
public Resp(String code, String message) { |
|
|
|
|