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.
|
- package com.iformall.sm;
-
- import lombok.Data;
-
- @Data
- public class AiVideoHqResult {
- private boolean success;
- private Integer code;
- private String msg;
- private String url;
-
- public String getMsgInfo(Integer code, String msg) {
- if (code == 5000 && msg.equals("success")) {
- return "成功";
- }
- return msg;
- }
-
- }
|