f712942d10dfda22be80bb743f3d94b8cf7423ba
[institute/sw-backend.git] /
1 package com.supwisdom.institute.backend.system.api.vo.response;
2
3 import java.util.List;
4
5 import lombok.Getter;
6 import lombok.Setter;
7
8 import com.supwisdom.institute.backend.common.framework.vo.response.data.IApiResponseData;
9
10 /**
11  * @author loie
12  */
13 public class AccountDeleteBatchResponseData implements IApiResponseData {
14
15   /**
16    * 
17    */
18   private static final long serialVersionUID = 8625399816385346436L;
19
20   @Getter
21   @Setter
22   private List<String> ids;
23
24   private AccountDeleteBatchResponseData() {
25     
26   }
27   
28   public static AccountDeleteBatchResponseData build(List<String> ids) {
29     AccountDeleteBatchResponseData data = new AccountDeleteBatchResponseData();
30     data.setIds(ids);
31     
32     return data;
33   }
34   
35 }