You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
466 B

package com.project.receive.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
@Data
public class SfRouteResponse {
@JsonProperty("return_code")
private String returnCode;
@JsonProperty("return_msg")
private String returnMsg;
public static SfRouteResponse ok() {
SfRouteResponse res = new SfRouteResponse();
res.setReturnCode("0000");
res.setReturnMsg("成功");
return res;
}
}