Examples of TSConfig


Examples of org.jeecgframework.web.system.pojo.base.TSConfig

   */
  @RequestMapping(params = "save")
  @ResponseBody
  public AjaxJson save(TSConfig tsConfig,HttpServletRequest request) {
    if (StringUtil.isEmpty(tsConfig.getId())) {
      TSConfig tsConfig2=systemService.findUniqueByProperty(TSConfig.class, "code", tsConfig.getCode());
      if(tsConfig2!=null){
        message = "编码为: " + tsConfig.getCode() + "的配置信息已存在";
      }else{
        tsConfig.setTSUser(ResourceUtil.getSessionUserName());
        systemService.save(tsConfig);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.