use of com.netsteadfast.greenstep.vo.DataQueryMapperVO in project bamboobsc by billchen198318.
the class DataQueryMapperSaveOrUpdateAction method save.
private void save() throws ControllerException, AuthorityException, ServiceException, Exception {
this.checkFields();
DataQueryMapperVO queryMapper = new DataQueryMapperVO();
this.transformFields2ValueObject(queryMapper, new String[] { "name", "description" });
DefaultResult<DataQueryMapperVO> result = this.dataQueryMapperLogicService.createMapper(queryMapper, this.fillFieldsMapperData());
this.message = result.getSystemMessage().getValue();
if (result.getValue() != null) {
this.success = IS_YES;
}
}
Aggregations