Commit b1f0ac1b by zhiwj

添加查询短信签名的接口

parent 73ebdce9
...@@ -11,19 +11,28 @@ import java.util.List; ...@@ -11,19 +11,28 @@ import java.util.List;
*/ */
public class SmsSignResourceDTO implements Serializable { public class SmsSignResourceDTO implements Serializable {
private static final long serialVersionUID = -6009818220117316815L; private static final long serialVersionUID = -6009818220117316815L;
private String ids;
// //
private List<Long> ids; private List<Long> idList;
// 1:全部 2:部分 // 1:全部 2:部分
private Integer type; private Integer type;
public List<Long> getIds() { public String getIds() {
return ids; return ids;
} }
public void setIds(List<Long> ids) { public void setIds(String ids) {
this.ids = ids; this.ids = ids;
} }
public List<Long> getIdList() {
return idList;
}
public void setIdList(List<Long> idList) {
this.idList = idList;
}
public Integer getType() { public Integer getType() {
return type; return type;
} }
......
...@@ -172,7 +172,7 @@ public class ResourceApiServiceImpl implements ResourceApiService { ...@@ -172,7 +172,7 @@ public class ResourceApiServiceImpl implements ResourceApiService {
} }
} }
} }
result.setIds(resultIds); result.setIdList(resultIds);
return EnterpriseServiceResponse.success(result); return EnterpriseServiceResponse.success(result);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment