use of com.netsteadfast.greenstep.vo.DataQueryVO in project bamboobsc by billchen198318.
the class QueryDataAction method delete.
private void delete() throws ControllerException, AuthorityException, ServiceException, Exception {
DataQueryVO dataQuery = new DataQueryVO();
this.transformFields2ValueObject(dataQuery, new String[] { "oid" });
DefaultResult<Boolean> result = this.dataQueryLogicService.delete(dataQuery);
this.message = result.getSystemMessage().getValue();
if (result.getValue() != null && result.getValue()) {
this.success = IS_YES;
}
}
Aggregations