public interface RiskControlTaskDAO
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getAllTaskName() |
RiskControlTask |
getRiskControlTaskByName(String taskName) |
int |
getRiskControlTaskCount(String taskName,
String inUse,
String fromTime,
String toTime)
根据非空属性,查找符合条件的值的数量
|
List<RiskControlTask> |
getRiskControlTaskList(String taskName,
String inUse,
String fromTime,
String toTime,
String orderBy,
String limit)
根据非空属性,查找符合条件的值
orderBy 能造成sql注入,目前该方法仅限用于渠道后台
|
void |
saveRiskControlTask(RiskControlTask riskControlTask) |
void |
updateRiskControlTask(RiskControlTask riskControlTask)
根据taskName更新所有属性值
|
RiskControlTask getRiskControlTaskByName(String taskName) throws org.springframework.dao.DataAccessException
org.springframework.dao.DataAccessExceptionList<String> getAllTaskName() throws org.springframework.dao.DataAccessException
org.springframework.dao.DataAccessExceptionint getRiskControlTaskCount(String taskName, String inUse, String fromTime, String toTime) throws org.springframework.dao.DataAccessException
taskName - inUse - fromTime - 以create_time为筛选toTime - 以create_time为筛选org.springframework.dao.DataAccessExceptionList<RiskControlTask> getRiskControlTaskList(String taskName, String inUse, String fromTime, String toTime, String orderBy, String limit) throws org.springframework.dao.DataAccessException
taskName - inUse - fromTime - 以create_time为筛选toTime - 以create_time为筛选orderBy - limit - org.springframework.dao.DataAccessExceptionvoid saveRiskControlTask(RiskControlTask riskControlTask) throws org.springframework.dao.DataAccessException
org.springframework.dao.DataAccessExceptionvoid updateRiskControlTask(RiskControlTask riskControlTask) throws org.springframework.dao.DataAccessException
riskControlTask - org.springframework.dao.DataAccessExceptionCopyright © 2016. All rights reserved.