[参数变更]
This commit is contained in:
yangyakun
2026-03-19 11:20:45 +08:00
parent bd22a7198e
commit cf2c81907e

View File

@@ -8,20 +8,20 @@ import java.io.Serializable;
* @since: 11/15/21
*/
public class UpgradeAppMyFlowRequest implements Serializable {
private String sn;
private String vin;
private String appType;
public UpgradeAppMyFlowRequest(String sn, String appType) {
this.sn = sn;
this.vin = sn;
this.appType = appType;
}
public String getSn() {
return sn;
public String getVin() {
return vin;
}
public void setSn(String sn) {
this.sn = sn;
public void setVin(String vin) {
this.vin = vin;
}
public String getAppType() {