forked from rongchao/epmet-cloud-rizhao
2 changed files with 46 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||
|
package com.epmet.resi.partymember.dto.icpartyact.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.Valid; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2022/8/22 12:25 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class BatchAddPartyActFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 2616937693642413548L; |
||||
|
private List<String> delActIds; |
||||
|
@Valid |
||||
|
private List<IcPartyActAddOrUpdateFormDTO> actList; |
||||
|
} |
||||
|
|
Loading…
Reference in new issue