feat:[REQ-3488] 增加默认值
This commit is contained in:
parent
f541b831fd
commit
28518628a2
@ -1,5 +1,6 @@
|
||||
package cn.axzo.orgmanax.dto.cooperateship.req;
|
||||
|
||||
import cn.hutool.core.collection.CollUtil;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
@ -67,10 +68,10 @@ public class ListOrgCooperateShipReq {
|
||||
private Set<Integer> partnerShips = Collections.emptySet();
|
||||
|
||||
/**
|
||||
* 在场状态集合
|
||||
* 在场状态集合, 默认为在场
|
||||
*/
|
||||
@Builder.Default
|
||||
private Set<Integer> statuses = Collections.emptySet();
|
||||
private Set<Integer> statuses = CollUtil.newHashSet(1);
|
||||
|
||||
/**
|
||||
* 根据人员进行节点过滤
|
||||
|
||||
Loading…
Reference in New Issue
Block a user