package com.artfess.uc.controller; import java.util.List; import com.artfess.base.annotation.UpdateMethod; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import javax.annotation.Resource; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import com.artfess.base.annotation.ApiGroup; import com.artfess.base.constants.ApiGroupConsts; import com.artfess.base.controller.BaseController; import com.artfess.base.query.PageBean; import com.artfess.base.query.PageList; import com.artfess.base.query.QueryFilter; import com.artfess.uc.manager.PropertiesService; import com.artfess.uc.model.Properties; import com.artfess.base.model.CommonResult; import com.artfess.uc.params.properties.PropertiesVo; import com.artfess.base.util.BeanUtils; /** * 系统参数组织模块接口 * @author zhangxw * */ @RestController @RequestMapping("/api/properties/v1/") @Api(tags="系统参数") @ApiGroup(group= {ApiGroupConsts.GROUP_UC}) public class PropertiesController extends BaseController { @Resource PropertiesService propertiesService; /** * 查询系统参数 * @param filter * @return * @throws Exception */ @RequestMapping(value="properties/getPropertiesPage",method=RequestMethod.POST, produces = { "application/json; charset=utf-8" }) @ApiOperation(value = "获取系统参数列表(带分页信息)", httpMethod = "POST", notes = "获取系统参数列表") public PageList getPropertiesPage(@ApiParam(name = "filter", value = "查询参数", required = true) @RequestBody QueryFilter filter) throws Exception{ return propertiesService.query(filter); } /** * 获取所有系统参数 * @param filter * @return * @throws Exception */ @RequestMapping(value="properties/getPropertiesList",method=RequestMethod.POST, produces = { "application/json; charset=utf-8" }) @ApiOperation(value = "获取所有系统参数", httpMethod = "POST", notes = "获取所有系统参数") public List getPropertiesList(@ApiParam(name = "filter", value = "查询参数", required = true) @RequestBody QueryFilter filter) throws Exception{ if(BeanUtils.isEmpty(filter)){ filter = QueryFilter.build(); } filter.setPageBean(new PageBean(1,10000)); return propertiesService.query(filter).getRows(); } /** * 更新系统参数 * @param Properties * @return * @throws Exception */ @RequestMapping(value="properties/updateProperties",method=RequestMethod.PUT, produces = { "application/json; charset=utf-8" }) @ApiOperation(value = "更新系统参数", httpMethod = "PUT", notes = "更新系统参数") @UpdateMethod(type=PropertiesVo.class) public CommonResult updateProperties(@ApiParam(name="Properties",value="系统参数参数对象", required = true) @RequestBody PropertiesVo Properties) throws Exception{ return propertiesService.updateProperties(Properties); } /** * 获取系统参数信息 * @param json * @return * @throws Exception */ @RequestMapping(value="properties/getProperties",method=RequestMethod.GET, produces = { "application/json; charset=utf-8" }) @ApiOperation(value = "根据编码获取系统参数信息", httpMethod = "GET", notes = "获取系统参数信息") public Properties getProperties(@ApiParam(name="code",value="系统参数编码", required = true) @RequestParam String code) throws Exception{ return propertiesService.getPropertiesByCode(code); } }