refactor(sdk): 初始化请求字段
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
parent
2a2df4e501
commit
2786cd9a7f
@ -2,6 +2,7 @@ package org.dromara.sis.sdk.e8.domain.custom.req;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@ -110,7 +111,7 @@ public class CustomAddReq {
|
||||
/**
|
||||
* 客户明细
|
||||
*/
|
||||
private CustomerDetail detail;
|
||||
private CustomerDetail detail = new CustomerDetail();
|
||||
|
||||
/**
|
||||
* 车牌号
|
||||
@ -135,17 +136,17 @@ public class CustomAddReq {
|
||||
/**
|
||||
* 绑定车辆信息
|
||||
*/
|
||||
private List<Vehicle> vehicleInfos;
|
||||
private List<Vehicle> vehicleInfos = new ArrayList<>();
|
||||
|
||||
/**
|
||||
* 相关联区域
|
||||
*/
|
||||
private List<RelatedArea> relAreas;
|
||||
private List<RelatedArea> relAreas = new ArrayList<>() ;
|
||||
|
||||
/**
|
||||
* 是否特殊车牌
|
||||
*/
|
||||
private Boolean isSpecialPlate;
|
||||
private Boolean isSpecialPlate = false;
|
||||
|
||||
/**
|
||||
* 车辆信息·
|
||||
|
Loading…
Reference in New Issue
Block a user