10 lines
253 B
Plaintext
10 lines
253 B
Plaintext
|
|
package com.sercurityControl.decision.service;
|
||
|
|
|
||
|
|
|
||
|
|
import com.sercurityControl.decision.domain.vo.QueryVo;
|
||
|
|
import javax.servlet.http.HttpServletResponse;
|
||
|
|
|
||
|
|
public interface ExportService {
|
||
|
|
void getList(HttpServletResponse response, QueryVo queryVo);
|
||
|
|
}
|