refactor(sdk): 初始化请求字段
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
zcxlsm 2025-07-24 22:38:24 +08:00
parent 2a2df4e501
commit 2786cd9a7f

View File

@ -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;
/**
* 车辆信息·