已添加47个文件
已删除6个文件
已修改56个文件
已重命名1个文件
| | |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody BaseTag baseTag) { |
| | | PageUtils.startPageByPost(baseTag.getPageNum(), baseTag.getPageSize()); |
| | | if (baseTag.getTagcategoryid() == 0) baseTag.setTagcategoryid(null); |
| | | if (baseTag.getTagcategoryid() == 0 || baseTag.getTagcategoryid() == null) baseTag.setTagcategoryid(null); |
| | | List<BaseTag> list = baseTagService.selectBaseTagList(baseTag); |
| | | return getDataTable(list); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.PageUtils; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.Icd10; |
| | | import com.smartor.service.IIcd10Service; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ç¾ç
Controller |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Api(description = "ç¾ç
åå
¸ä¿¡æ¯") |
| | | @RestController |
| | | @RequestMapping("/smartor/icd10") |
| | | public class Icd10Controller extends BaseController { |
| | | @Autowired |
| | | private IIcd10Service icd10Service; |
| | | |
| | | /** |
| | | * æ¥è¯¢ç¾ç
å表 |
| | | */ |
| | | @ApiOperation("æ¥è¯¢ç¾ç
å表") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody Icd10 icd10) { |
| | | PageUtils.startPageByPost(icd10.getPageNum(),icd10.getPageSize()); |
| | | List<Icd10> list = icd10Service.selectIcd10List(icd10); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºç¾ç
å表 |
| | | */ |
| | | @ApiOperation("导åºç¾ç
å表") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:export')") |
| | | @Log(title = "ç¾ç
", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, Icd10 icd10) { |
| | | List<Icd10> list = icd10Service.selectIcd10List(icd10); |
| | | ExcelUtil<Icd10> util = new ExcelUtil<Icd10>(Icd10.class); |
| | | util.exportExcel(response, list, "ç¾ç
æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åç¾ç
详ç»ä¿¡æ¯ |
| | | */ |
| | | @ApiOperation("è·åç¾ç
详ç»ä¿¡æ¯") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:query')") |
| | | @GetMapping(value = "/getInfo/{icdid}") |
| | | public AjaxResult getInfo(@PathVariable("icdid") Long icdid) { |
| | | return success(icd10Service.selectIcd10ByIcdid(icdid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ç¾ç
|
| | | */ |
| | | @ApiOperation("æ°å¢ç¾ç
") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:add')") |
| | | @Log(title = "ç¾ç
", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody Icd10 icd10) { |
| | | return toAjax(icd10Service.insertIcd10(icd10)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ç¾ç
|
| | | */ |
| | | @ApiOperation("ä¿®æ¹ç¾ç
") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:edit')") |
| | | @Log(title = "ç¾ç
", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody Icd10 icd10) { |
| | | return toAjax(icd10Service.updateIcd10(icd10)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ç¾ç
|
| | | */ |
| | | @ApiOperation("å é¤ç¾ç
") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:remove')") |
| | | @Log(title = "ç¾ç
", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{icdids}") |
| | | public AjaxResult remove(@PathVariable Long[] icdids) { |
| | | return toAjax(icd10Service.deleteIcd10ByIcdids(icdids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.PageUtils; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.IvrLibaTargetIcd10; |
| | | import com.smartor.service.IIvrLibaOutIcd10Service; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ ç¾ç
Controller |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-20 |
| | | */ |
| | | @Api(description = "ææ ç¾ç
") |
| | | @RestController |
| | | @RequestMapping("/smartor/outicd10") |
| | | public class IvrLibaOutIcd10Controller extends BaseController { |
| | | @Autowired |
| | | private IIvrLibaOutIcd10Service ivrLibaOutIcd10Service; |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ ç¾ç
å表 |
| | | */ |
| | | @ApiOperation("æ¥è¯¢ææ ç¾ç
å表") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrLibaTargetIcd10 ivrLibaTargetIcd10) { |
| | | PageUtils.startPageByPost(ivrLibaTargetIcd10.getPageNum(), ivrLibaTargetIcd10.getPageSize()); |
| | | List<IvrLibaTargetIcd10> list = ivrLibaOutIcd10Service.selectIvrLibaTargetIcd10List(ivrLibaTargetIcd10); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºææ ç¾ç
å表 |
| | | */ |
| | | @ApiOperation("å¯¼åºææ ç¾ç
å表") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:export')") |
| | | @Log(title = "ææ ç¾ç
", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaTargetIcd10 ivrLibaTargetIcd10) { |
| | | List<IvrLibaTargetIcd10> list = ivrLibaOutIcd10Service.selectIvrLibaTargetIcd10List(ivrLibaTargetIcd10); |
| | | ExcelUtil<IvrLibaTargetIcd10> util = new ExcelUtil<IvrLibaTargetIcd10>(IvrLibaTargetIcd10.class); |
| | | util.exportExcel(response, list, "ææ ç¾ç
æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åææ ç¾ç
详ç»ä¿¡æ¯ |
| | | */ |
| | | @ApiOperation("è·åææ ç¾ç
详ç»ä¿¡æ¯") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(ivrLibaOutIcd10Service.selectIvrLibaTargetIcd10ById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ ç¾ç
|
| | | */ |
| | | @ApiOperation("æ°å¢ææ ç¾ç
") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:add')") |
| | | @Log(title = "ææ ç¾ç
", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrLibaTargetIcd10 ivrLibaTargetIcd10) { |
| | | return toAjax(ivrLibaOutIcd10Service.insertIvrLibaTargetIcd10(ivrLibaTargetIcd10)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ ç¾ç
|
| | | */ |
| | | @ApiOperation("ä¿®æ¹ææ ç¾ç
") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:edit')") |
| | | @Log(title = "ææ ç¾ç
", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrLibaTargetIcd10 ivrLibaTargetIcd10) { |
| | | return toAjax(ivrLibaOutIcd10Service.updateIvrLibaTargetIcd10(ivrLibaTargetIcd10)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿æ ç¾ç
|
| | | */ |
| | | @ApiOperation("å 餿æ ç¾ç
") |
| | | @PreAuthorize("@ss.hasPermi('system:icd10:remove')") |
| | | @Log(title = "ææ ç¾ç
", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |
| | | return toAjax(ivrLibaOutIcd10Service.deleteIvrLibaTargetIcd10ByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.IvrLibaScriptAssort; |
| | | import com.smartor.domain.IvrLibaScriptAssortVO; |
| | | import com.smartor.service.IIvrLibaScriptAssortService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯åç±»åº |
| | | * Controller |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/scriptassort") |
| | | public class IvrLibaScriptAssortController extends BaseController { |
| | | @Autowired |
| | | private IIvrLibaScriptAssortService ivrLibaScriptAssortService; |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯åç±»åº(æ ç¶) |
| | | * å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:assort:list')") |
| | | @PostMapping("/selectIvrLibaScriptAssortList") |
| | | public TableDataInfo list(@RequestBody IvrLibaScriptAssort ivrLibaScriptAssort) { |
| | | List<IvrLibaScriptAssortVO> list = ivrLibaScriptAssortService.selectIvrLibaScriptAssortList(ivrLibaScriptAssort); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºé®é¢è¯æ¯åç±»åº |
| | | * å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:assort:export')") |
| | | @Log(title = "é®é¢è¯æ¯åç±»åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaScriptAssort ivrLibaScriptAssort) { |
| | | List<IvrLibaScriptAssortVO> list = ivrLibaScriptAssortService.selectIvrLibaScriptAssortList(ivrLibaScriptAssort); |
| | | ExcelUtil<IvrLibaScriptAssortVO> util = new ExcelUtil<IvrLibaScriptAssortVO>(IvrLibaScriptAssortVO.class); |
| | | util.exportExcel(response, list, "é®é¢è¯æ¯åç±»åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åé®é¢è¯æ¯åç±»åº |
| | | * 详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:assort:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(ivrLibaScriptAssortService.selectIvrLibaScriptAssortById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯åç±»åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:assort:add')") |
| | | @Log(title = "é®é¢è¯æ¯åç±»åº", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrLibaScriptAssort ivrLibaScriptAssort) { |
| | | return toAjax(ivrLibaScriptAssortService.insertIvrLibaScriptAssort(ivrLibaScriptAssort)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯åç±»åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:assort:edit')") |
| | | @Log(title = "é®é¢è¯æ¯åç±»åº", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrLibaScriptAssort ivrLibaScriptAssort) { |
| | | return toAjax(ivrLibaScriptAssortService.updateIvrLibaScriptAssort(ivrLibaScriptAssort)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯åç±»åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:assort:remove')") |
| | | @Log(title = "é®é¢è¯æ¯åç±»åº", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |
| | | return toAjax(ivrLibaScriptAssortService.deleteIvrLibaScriptAssortByIds(ids)); |
| | | } |
| | | } |
| | |
| | | package com.smartor.controller; |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import java.util.List; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.PutMapping; |
| | | import org.springframework.web.bind.annotation.DeleteMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.smartor.domain.IvrLibaScript; |
| | | import com.smartor.service.IIvrLibaScriptService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.exception.base.BaseException; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.IvrLibaScript; |
| | | import com.smartor.domain.IvrLibaScriptVO; |
| | | import com.smartor.service.IIvrLibaScriptService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.apache.commons.lang3.ObjectUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * è¯æ¯åºController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | * é®é¢è¯æ¯åºController |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Api(description = "é®é¢è¯æ¯åº") |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrlibascript") |
| | | public class IvrLibaScriptController extends BaseController |
| | | { |
| | | @RequestMapping("/smartor/script") |
| | | public class IvrLibaScriptController extends BaseController { |
| | | @Autowired |
| | | private IIvrLibaScriptService ivrLibaScriptService; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºå表 |
| | | * æ¥è¯¢é®é¢è¯æ¯åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrLibaScript ivrLibaScript) |
| | | { |
| | | @ApiOperation("æ¥è¯¢é®é¢è¯æ¯åºå表") |
| | | @PreAuthorize("@ss.hasPermi('system:script:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrLibaScript ivrLibaScript) { |
| | | startPage(); |
| | | List<IvrLibaScript> list = ivrLibaScriptService.selectIvrLibaScriptList(ivrLibaScript); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºè¯æ¯åºå表 |
| | | * 导åºé®é¢è¯æ¯åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:export')") |
| | | @Log(title = "è¯æ¯åº", businessType = BusinessType.EXPORT) |
| | | @ApiOperation("导åºé®é¢è¯æ¯åºå表") |
| | | @PreAuthorize("@ss.hasPermi('system:script:export')") |
| | | @Log(title = "é®é¢è¯æ¯åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaScript ivrLibaScript) |
| | | { |
| | | public void export(HttpServletResponse response, IvrLibaScript ivrLibaScript) { |
| | | List<IvrLibaScript> list = ivrLibaScriptService.selectIvrLibaScriptList(ivrLibaScript); |
| | | ExcelUtil<IvrLibaScript> util = new ExcelUtil<IvrLibaScript>(IvrLibaScript.class); |
| | | util.exportExcel(response, list, "è¯æ¯åºæ°æ®"); |
| | | util.exportExcel(response, list, "é®é¢è¯æ¯åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åè¯æ¯åºè¯¦ç»ä¿¡æ¯ |
| | | * è·åé®é¢è¯æ¯åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:query')") |
| | | @GetMapping(value = "/{questionid}") |
| | | public AjaxResult getInfo(@PathVariable("questionid") String questionid) |
| | | { |
| | | @ApiOperation("è·åé®é¢è¯æ¯åºè¯¦ç»ä¿¡æ¯") |
| | | @PreAuthorize("@ss.hasPermi('system:script:query')") |
| | | @GetMapping(value = "/getInfo/{questionid}") |
| | | public AjaxResult getInfo(@PathVariable("questionid") String questionid) { |
| | | return success(ivrLibaScriptService.selectIvrLibaScriptByQuestionid(questionid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åº |
| | | * æ°å¢é®é¢è¯æ¯åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:add')") |
| | | @Log(title = "è¯æ¯åº", businessType = BusinessType.INSERT) |
| | | @ApiOperation("æ°å¢é®é¢è¯æ¯åº") |
| | | @PreAuthorize("@ss.hasPermi('system:script:add')") |
| | | @Log(title = "é®é¢è¯æ¯åº", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrLibaScript ivrLibaScript) |
| | | { |
| | | public AjaxResult add(@RequestBody IvrLibaScript ivrLibaScript) { |
| | | return toAjax(ivrLibaScriptService.insertIvrLibaScript(ivrLibaScript)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åº |
| | | * ä¿®æ¹é®é¢è¯æ¯åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:edit')") |
| | | @Log(title = "è¯æ¯åº", businessType = BusinessType.UPDATE) |
| | | @ApiOperation("ä¿®æ¹é®é¢è¯æ¯åº") |
| | | @PreAuthorize("@ss.hasPermi('system:script:edit')") |
| | | @Log(title = "é®é¢è¯æ¯åº", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrLibaScript ivrLibaScript) |
| | | { |
| | | public AjaxResult edit(@RequestBody IvrLibaScript ivrLibaScript) { |
| | | return toAjax(ivrLibaScriptService.updateIvrLibaScript(ivrLibaScript)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åº |
| | | * å é¤é®é¢è¯æ¯åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:remove')") |
| | | @Log(title = "è¯æ¯åº", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{questionids}") |
| | | public AjaxResult remove(@PathVariable String[] questionids) |
| | | { |
| | | @ApiOperation("å é¤é®é¢è¯æ¯åº") |
| | | @PreAuthorize("@ss.hasPermi('system:script:remove')") |
| | | @Log(title = "é®é¢è¯æ¯åº", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{questionids}") |
| | | public AjaxResult remove(@PathVariable String[] questionids) { |
| | | return toAjax(ivrLibaScriptService.deleteIvrLibaScriptByQuestionids(questionids)); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯è¯¦æ
æ ¹æ®æ¡ä»¶ |
| | | */ |
| | | @ApiOperation("æ¥è¯¢é®é¢è¯æ¯è¯¦æ
æ ¹æ®æ¡ä»¶") |
| | | @PreAuthorize("@ss.hasPermi('system:script:list')") |
| | | @PostMapping("/selectInfoByCondition") |
| | | public AjaxResult selectInfoByCondition(@RequestBody IvrLibaScriptVO ivrLibaScriptVO) { |
| | | if (ObjectUtils.isEmpty(ivrLibaScriptVO)) { |
| | | throw new BaseException("å
¥å为空ï¼è¯·æ£æ¥å
¥å"); |
| | | } |
| | | startPage(); |
| | | IvrLibaScriptVO ivrLibaScriptVO1 = ivrLibaScriptService.selectInfoByCondition(ivrLibaScriptVO); |
| | | return success(ivrLibaScriptVO1); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æä¿®æ¹é®é¢è¯¦æ
|
| | | */ |
| | | @ApiOperation("æ°å¢æä¿®æ¹é®é¢è¯¦æ
") |
| | | @PreAuthorize("@ss.hasPermi('system:script:list')") |
| | | @PostMapping("/saveOrUpdateScript") |
| | | public AjaxResult saveOrUpdateScript(@RequestBody IvrLibaScriptVO ivrLibaScriptVO) { |
| | | if (ObjectUtils.isEmpty(ivrLibaScriptVO)) { |
| | | throw new BaseException("å
¥å为空ï¼è¯·æ£æ¥å
¥å"); |
| | | } |
| | | return success(ivrLibaScriptService.saveOrUpdateScript(ivrLibaScriptVO)); |
| | | } |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.IvrLibaScriptTag; |
| | | import com.smartor.service.IIvrLibaScriptTagService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯æ ç¾åºController |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/scripttag") |
| | | public class IvrLibaScriptTagController extends BaseController { |
| | | @Autowired |
| | | private IIvrLibaScriptTagService ivrLibaScriptTagService; |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯æ ç¾åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrLibaScriptTag ivrLibaScriptTag) { |
| | | startPage(); |
| | | List<IvrLibaScriptTag> list = ivrLibaScriptTagService.selectIvrLibaScriptTagList(ivrLibaScriptTag); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºé®é¢è¯æ¯æ ç¾åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:export')") |
| | | @Log(title = "é®é¢è¯æ¯æ ç¾åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaScriptTag ivrLibaScriptTag) { |
| | | List<IvrLibaScriptTag> list = ivrLibaScriptTagService.selectIvrLibaScriptTagList(ivrLibaScriptTag); |
| | | ExcelUtil<IvrLibaScriptTag> util = new ExcelUtil<IvrLibaScriptTag>(IvrLibaScriptTag.class); |
| | | util.exportExcel(response, list, "é®é¢è¯æ¯æ ç¾åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åé®é¢è¯æ¯æ ç¾åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(ivrLibaScriptTagService.selectIvrLibaScriptTagById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯æ ç¾åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:add')") |
| | | @Log(title = "é®é¢è¯æ¯æ ç¾åº", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrLibaScriptTag ivrLibaScriptTag) { |
| | | return toAjax(ivrLibaScriptTagService.insertIvrLibaScriptTag(ivrLibaScriptTag)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯æ ç¾åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:edit')") |
| | | @Log(title = "é®é¢è¯æ¯æ ç¾åº", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrLibaScriptTag ivrLibaScriptTag) { |
| | | return toAjax(ivrLibaScriptTagService.updateIvrLibaScriptTag(ivrLibaScriptTag)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯æ ç¾åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:remove')") |
| | | @Log(title = "é®é¢è¯æ¯æ ç¾åº", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |
| | | return toAjax(ivrLibaScriptTagService.deleteIvrLibaScriptTagByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.IvrLibaScriptTargetoption; |
| | | import com.smartor.service.IIvrLibaScriptTargetoptionService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯ææ é项åºController |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/scripttargetoption") |
| | | public class IvrLibaScriptTargetoptionController extends BaseController { |
| | | @Autowired |
| | | private IIvrLibaScriptTargetoptionService ivrLibaScriptTargetoptionService; |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯ææ é项åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrLibaScriptTargetoption ivrLibaScriptTargetoption) { |
| | | startPage(); |
| | | List<IvrLibaScriptTargetoption> list = ivrLibaScriptTargetoptionService.selectIvrLibaScriptTargetoptionList(ivrLibaScriptTargetoption); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºé®é¢è¯æ¯ææ é项åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:export')") |
| | | @Log(title = "é®é¢è¯æ¯ææ é项åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaScriptTargetoption ivrLibaScriptTargetoption) { |
| | | List<IvrLibaScriptTargetoption> list = ivrLibaScriptTargetoptionService.selectIvrLibaScriptTargetoptionList(ivrLibaScriptTargetoption); |
| | | ExcelUtil<IvrLibaScriptTargetoption> util = new ExcelUtil<IvrLibaScriptTargetoption>(IvrLibaScriptTargetoption.class); |
| | | util.exportExcel(response, list, "é®é¢è¯æ¯ææ éé¡¹åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åé®é¢è¯æ¯ææ é项åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:query')") |
| | | @GetMapping(value = "/getInfo/{targetoptionid}") |
| | | public AjaxResult getInfo(@PathVariable("targetoptionid") String targetoptionid) { |
| | | return success(ivrLibaScriptTargetoptionService.selectIvrLibaScriptTargetoptionByTargetoptionid(targetoptionid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯ææ éé¡¹åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:add')") |
| | | @Log(title = "é®é¢è¯æ¯ææ é项åº", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrLibaScriptTargetoption ivrLibaScriptTargetoption) { |
| | | return toAjax(ivrLibaScriptTargetoptionService.insertIvrLibaScriptTargetoption(ivrLibaScriptTargetoption)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯ææ éé¡¹åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:edit')") |
| | | @Log(title = "é®é¢è¯æ¯ææ é项åº", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrLibaScriptTargetoption ivrLibaScriptTargetoption) { |
| | | return toAjax(ivrLibaScriptTargetoptionService.updateIvrLibaScriptTargetoption(ivrLibaScriptTargetoption)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯ææ éé¡¹åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:remove')") |
| | | @Log(title = "é®é¢è¯æ¯ææ é项åº", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{targetoptionids}") |
| | | public AjaxResult remove(@PathVariable String[] targetoptionids) { |
| | | return toAjax(ivrLibaScriptTargetoptionService.deleteIvrLibaScriptTargetoptionByTargetoptionids(targetoptionids)); |
| | | } |
| | | } |
| | |
| | | import com.smartor.domain.IvrLibaTargetAssort; |
| | | import com.smartor.domain.IvrLibaTargetAssortVO; |
| | | import com.smartor.service.IIvrLibaTargetAssortService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | * @author ruoyi |
| | | * @date 2023-12-14 |
| | | */ |
| | | @Api(description = "ææ åç±»") |
| | | @RestController |
| | | @RequestMapping("/smartor/assort") |
| | | public class IvrLibaTargetAssortController extends BaseController |
| | |
| | | /** |
| | | * æ¥è¯¢ææ åç±»å表 |
| | | */ |
| | | @ApiOperation("æ¥è¯¢ææ åç±»å表") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:list')") |
| | | @PostMapping("/selectIvrLibaTargetAssortList") |
| | | public TableDataInfo list(@RequestBody IvrLibaTargetAssort ivrLibaTargetAssort) |
| | |
| | | /** |
| | | * å¯¼åºææ åç±»å表 |
| | | */ |
| | | @ApiOperation("å¯¼åºææ åç±»å表") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:export')") |
| | | @Log(title = "ææ åç±»", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | |
| | | /** |
| | | * è·åææ å类详ç»ä¿¡æ¯ |
| | | */ |
| | | @ApiOperation("è·åææ å类详ç»ä¿¡æ¯") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | |
| | | /** |
| | | * æ°å¢ææ åç±» |
| | | */ |
| | | @ApiOperation("æ°å¢ææ åç±»") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:add')") |
| | | @Log(title = "ææ åç±»", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | |
| | | /** |
| | | * ä¿®æ¹ææ åç±» |
| | | */ |
| | | @ApiOperation("ä¿®æ¹ææ åç±»") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:edit')") |
| | | @Log(title = "ææ åç±»", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | |
| | | /** |
| | | * å 餿æ åç±» |
| | | */ |
| | | @ApiOperation("å 餿æ åç±»") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:remove')") |
| | | @Log(title = "ææ åç±»", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import cn.hutool.db.Page; |
| | | import com.github.pagehelper.PageInfo; |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.constant.HttpStatus; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | |
| | | import com.ruoyi.common.utils.PageUtils; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.IvrLibaTarget; |
| | | import com.smartor.domain.IvrLibaTargetAssort; |
| | | import com.smartor.domain.IvrLibaTargetVO; |
| | | import com.smartor.service.IIvrLibaTargetService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | * @author ruoyi |
| | | * @date 2023-12-14 |
| | | */ |
| | | @Api(description = "ææ åº") |
| | | @RestController |
| | | @RequestMapping("/smartor/target") |
| | | public class IvrLibaTargetController extends BaseController { |
| | |
| | | /** |
| | | * æ¥è¯¢ææ é项åºå表 |
| | | */ |
| | | @ApiOperation("æ¥è¯¢ææ å表") |
| | | @PreAuthorize("@ss.hasPermi('system:target:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrLibaTarget ivrLibaTarget) { |
| | | PageUtils.startPageByPost(ivrLibaTarget.getPageNum(),ivrLibaTarget.getPageSize()); |
| | | public TableDataInfo list(@RequestBody IvrLibaTarget ivrLibaTarget) { |
| | | PageUtils.startPageByPost(ivrLibaTarget.getPageNum(), ivrLibaTarget.getPageSize()); |
| | | List<IvrLibaTarget> list = ivrLibaTargetService.selectIvrLibaTargetList(ivrLibaTarget); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºææ é项åºå表 |
| | | * å¯¼åºææ å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:target:export')") |
| | | @Log(title = "ææ é项åº", businessType = BusinessType.EXPORT) |
| | | @Log(title = "ææ åº", businessType = BusinessType.EXPORT) |
| | | @ApiOperation("å¯¼åºææ å表") |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaTarget ivrLibaTarget) { |
| | | List<IvrLibaTarget> list = ivrLibaTargetService.selectIvrLibaTargetList(ivrLibaTarget); |
| | |
| | | } |
| | | |
| | | /** |
| | | * è·åææ é项åºè¯¦ç»ä¿¡æ¯ |
| | | * è·åææ ä¿¡æ¯éè¿targetID |
| | | */ |
| | | @ApiOperation("è·åææ ä¿¡æ¯éè¿targetID") |
| | | @PreAuthorize("@ss.hasPermi('system:target:query')") |
| | | @GetMapping(value = "/getInfo/{targetID}") |
| | | public AjaxResult getInfo(@PathVariable("targetID") Long targetID) { |
| | |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ éé¡¹åº |
| | | * æ°å¢ææ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:target:add')") |
| | | @Log(title = "ææ é项åº", businessType = BusinessType.INSERT) |
| | | @ApiOperation("æ°å¢ææ ï¼è¿ä¸ªæ¥å£æ²¡å¥ç¨äºï¼ç¨âæ°å¢æä¿®æ¹ææ ä¿¡æ¯âè¿ä¸ªæ¥å£å¥½ä¸äºï¼") |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrLibaTarget ivrLibaTarget) { |
| | | return toAjax(ivrLibaTargetService.insertIvrLibaTarget(ivrLibaTarget)); |
| | | public AjaxResult add(@RequestBody IvrLibaTargetVO ivrLibaTargetVO) { |
| | | return toAjax(ivrLibaTargetService.insertIvrLibaTarget(ivrLibaTargetVO)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ éé¡¹åº |
| | | * æ°å¢æä¿®æ¹ææ ä¿¡æ¯ |
| | | */ |
| | | @ApiOperation("æ°å¢æä¿®æ¹ææ ä¿¡æ¯") |
| | | @PreAuthorize("@ss.hasPermi('system:target:edit')") |
| | | @Log(title = "ææ é项åº", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrLibaTarget ivrLibaTarget) { |
| | | return toAjax(ivrLibaTargetService.updateIvrLibaTarget(ivrLibaTarget)); |
| | | @PostMapping("/saveOrupdateIvrLibaTarget") |
| | | public AjaxResult saveOrupdateIvrLibaTarget(@RequestBody IvrLibaTargetVO ivrLibaTargetVO) { |
| | | return toAjax(ivrLibaTargetService.saveOrupdateIvrLibaTarget(ivrLibaTargetVO)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿æ éé¡¹åº |
| | | * å 餿æ |
| | | */ |
| | | @ApiOperation("å 餿æ ") |
| | | @PreAuthorize("@ss.hasPermi('system:target:remove')") |
| | | @Log(title = "ææ é项åº", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{targetIDs}") |
| | | public AjaxResult remove(@PathVariable Long[] targetIDs) { |
| | | return toAjax(ivrLibaTargetService.deleteIvrLibaTargetByTargetIDs(targetIDs)); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ é项åºå表 |
| | | */ |
| | | @ApiOperation("æ¥è¯¢ææ åå
³èçææ é项") |
| | | @PreAuthorize("@ss.hasPermi('system:target:list')") |
| | | @PostMapping("/targetInfo") |
| | | public TableDataInfo targetInfo(@RequestBody IvrLibaTarget ivrLibaTarget) { |
| | | PageUtils.startPageByPost(ivrLibaTarget.getPageNum(), ivrLibaTarget.getPageSize()); |
| | | //è¿ä¸ªç¨æ¥è·ååé¡µæ°æ® |
| | | List<IvrLibaTargetVO> ivrLibaTargetVOS = ivrLibaTargetService.targetInfo(ivrLibaTarget); |
| | | |
| | | //ç¨äºå页 |
| | | List<IvrLibaTarget> ivrLibaTargets = ivrLibaTargetService.selectIvrLibaTargetList(null); |
| | | //å页 |
| | | TableDataInfo rspData = new TableDataInfo(); |
| | | rspData.setCode(HttpStatus.SUCCESS); |
| | | rspData.setMsg("æ¥è¯¢æå"); |
| | | rspData.setRows(ivrLibaTargetVOS); |
| | | rspData.setTotal(new PageInfo(ivrLibaTargets).getTotal()); |
| | | |
| | | return rspData; |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.IvrLibaTargetTag; |
| | | import com.smartor.service.IIvrLibaTargetTagService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ æ ç¾Controller |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/tag") |
| | | public class IvrLibaTargetTagController extends BaseController { |
| | | @Autowired |
| | | private IIvrLibaTargetTagService ivrLibaTargetTagService; |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ æ ç¾å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrLibaTargetTag ivrLibaTargetTag) { |
| | | startPage(); |
| | | List<IvrLibaTargetTag> list = ivrLibaTargetTagService.selectIvrLibaTargetTagList(ivrLibaTargetTag); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºææ æ ç¾å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:export')") |
| | | @Log(title = "ææ æ ç¾", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaTargetTag ivrLibaTargetTag) { |
| | | List<IvrLibaTargetTag> list = ivrLibaTargetTagService.selectIvrLibaTargetTagList(ivrLibaTargetTag); |
| | | ExcelUtil<IvrLibaTargetTag> util = new ExcelUtil<IvrLibaTargetTag>(IvrLibaTargetTag.class); |
| | | util.exportExcel(response, list, "ææ æ ç¾æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åææ æ ç¾è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(ivrLibaTargetTagService.selectIvrLibaTargetTagById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ æ ç¾ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:add')") |
| | | @Log(title = "ææ æ ç¾", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrLibaTargetTag ivrLibaTargetTag) { |
| | | return toAjax(ivrLibaTargetTagService.insertIvrLibaTargetTag(ivrLibaTargetTag)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ æ ç¾ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:edit')") |
| | | @Log(title = "ææ æ ç¾", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrLibaTargetTag ivrLibaTargetTag) { |
| | | return toAjax(ivrLibaTargetTagService.updateIvrLibaTargetTag(ivrLibaTargetTag)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ææ æ ç¾ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:tag:remove')") |
| | | @Log(title = "ææ æ ç¾", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |
| | | return toAjax(ivrLibaTargetTagService.deleteIvrLibaTargetTagByIds(ids)); |
| | | } |
| | | } |
| | |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.IvrLibaTargetoption; |
| | | import com.smartor.service.IIvrLibaTargetoptionService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | * @author ruoyi |
| | | * @date 2023-12-14 |
| | | */ |
| | | @Api(description = "ææ é项åº") |
| | | @RestController |
| | | @RequestMapping("/smartor/targetoption") |
| | | public class IvrLibaTargetoptionController extends BaseController |
| | |
| | | /** |
| | | * æ¥è¯¢ææ é项åºå表 |
| | | */ |
| | | @ApiOperation("æ¥è¯¢ææ é项åºå表") |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody IvrLibaTargetoption ivrLibaTargetoption) |
| | |
| | | /** |
| | | * å¯¼åºææ é项åºå表 |
| | | */ |
| | | @ApiOperation("å¯¼åºææ é项åºå表") |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:export')") |
| | | @Log(title = "ææ é项åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | |
| | | /** |
| | | * è·åææ é项åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @ApiOperation("è·åææ é项åºè¯¦ç»ä¿¡æ¯") |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:query')") |
| | | @GetMapping(value = "/getInfo/{targetoptionid}") |
| | | public AjaxResult getInfo(@PathVariable("targetoptionid") Long targetoptionid) |
| | |
| | | /** |
| | | * æ°å¢ææ éé¡¹åº |
| | | */ |
| | | @ApiOperation("æ°å¢ææ é项åº") |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:add')") |
| | | @Log(title = "ææ é项åº", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | |
| | | /** |
| | | * ä¿®æ¹ææ éé¡¹åº |
| | | */ |
| | | @ApiOperation("ä¿®æ¹ææ é项åº") |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:edit')") |
| | | @Log(title = "ææ é项åº", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | |
| | | /** |
| | | * å 餿æ éé¡¹åº |
| | | */ |
| | | @ApiOperation("å 餿æ é项åº") |
| | | @PreAuthorize("@ss.hasPermi('system:targetoption:remove')") |
| | | @Log(title = "ææ é项åº", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{targetoptionids}") |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.web.controller.smartor; |
| | | |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.smartor.domain.IvrLibaTemplatetargetAssort; |
| | | import com.smartor.service.IIvrLibaTemplatetargetAssortService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ æ¨¡æ¿åç±»Controller |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | @Api(description = "ææ æ¨¡æ¿åç±»") |
| | | @RestController |
| | | @RequestMapping("/templatetarget/assort") |
| | | public class IvrLibaTemplatetargetAssortController extends BaseController { |
| | | @Autowired |
| | | private IIvrLibaTemplatetargetAssortService ivrLibaTemplatetargetAssortService; |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ 模æ¿åç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:assort:list')") |
| | | @PostMapping("/list") |
| | | @ApiOperation("æ¥è¯¢ææ 模æ¿åç±»å表") |
| | | public TableDataInfo list(@RequestBody IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort) { |
| | | startPage(); |
| | | List<IvrLibaTemplatetargetAssort> list = ivrLibaTemplatetargetAssortService.selectIvrLibaTemplatetargetAssortList(ivrLibaTemplatetargetAssort); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºææ æ¨¡æ¿åç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:assort:export')") |
| | | @Log(title = "ææ æ¨¡æ¿åç±»", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | @ApiOperation("å¯¼åºææ æ¨¡æ¿åç±»å表") |
| | | public void export(HttpServletResponse response, IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort) { |
| | | List<IvrLibaTemplatetargetAssort> list = ivrLibaTemplatetargetAssortService.selectIvrLibaTemplatetargetAssortList(ivrLibaTemplatetargetAssort); |
| | | ExcelUtil<IvrLibaTemplatetargetAssort> util = new ExcelUtil<IvrLibaTemplatetargetAssort>(IvrLibaTemplatetargetAssort.class); |
| | | util.exportExcel(response, list, "ææ æ¨¡æ¿åç±»æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åææ æ¨¡æ¿å类详ç»ä¿¡æ¯ |
| | | */ |
| | | @ApiOperation("è·åææ æ¨¡æ¿å类详ç»ä¿¡æ¯") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | return success(ivrLibaTemplatetargetAssortService.selectIvrLibaTemplatetargetAssortById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ 模æ¿åç±» |
| | | */ |
| | | @ApiOperation("æ°å¢ææ 模æ¿åç±»") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:add')") |
| | | @Log(title = "ææ æ¨¡æ¿åç±»", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort) { |
| | | return toAjax(ivrLibaTemplatetargetAssortService.insertIvrLibaTemplatetargetAssort(ivrLibaTemplatetargetAssort)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ æ¨¡æ¿åç±» |
| | | */ |
| | | @ApiOperation("ä¿®æ¹ææ æ¨¡æ¿åç±»") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:edit')") |
| | | @Log(title = "ææ æ¨¡æ¿åç±»", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort) { |
| | | return toAjax(ivrLibaTemplatetargetAssortService.updateIvrLibaTemplatetargetAssort(ivrLibaTemplatetargetAssort)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ææ æ¨¡æ¿åç±» |
| | | */ |
| | | @ApiOperation("å é¤ææ æ¨¡æ¿åç±»") |
| | | @PreAuthorize("@ss.hasPermi('system:assort:remove')") |
| | | @Log(title = "ææ æ¨¡æ¿åç±»", businessType = BusinessType.DELETE) |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) { |
| | | return toAjax(ivrLibaTemplatetargetAssortService.deleteIvrLibaTemplatetargetAssortByIds(ids)); |
| | | } |
| | | } |
| | |
| | | public class PatArchiveController extends BaseController { |
| | | @Autowired |
| | | private IPatArchiveService patArchiveService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
æ¡£æ¡å表 |
| | | */ |
| | | @ApiOperation("æ¥è¯¢æ£è
æ¡£æ¡å表") |
| | | @PreAuthorize("@ss.hasPermi('smartor:patarchive:list')") |
| | | @PostMapping("/list") |
| | | public TableDataInfo list(@RequestBody PatArchive patArchive) { |
| | | startPage(); |
| | | List<PatArchive> list = patArchiveService.selectPatArchiveList(patArchive); |
| | | return getDataTable(list); |
| | | } |
| | | // |
| | | // /** |
| | | // * æ¥è¯¢æ£è
æ¡£æ¡å表 |
| | | // */ |
| | | // @ApiOperation("æ¥è¯¢æ£è
æ¡£æ¡å表") |
| | | // @PreAuthorize("@ss.hasPermi('smartor:patarchive:list')") |
| | | // @PostMapping("/list") |
| | | // public TableDataInfo list(@RequestBody PatArchive patArchive) { |
| | | // startPage(); |
| | | // List<PatArchive> list = patArchiveService.selectPatArchiveList(patArchive); |
| | | // return getDataTable(list); |
| | | //} |
| | | |
| | | /** |
| | | * å¯¼åºæ£è
æ¡£æ¡å表 |
| | |
| | | return success(patArchiveService.selectPatArchiveByPatid(patid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ£è
æ¡£æ¡ |
| | | */ |
| | | @ApiOperation("æ°å¢æ£è
æ¡£æ¡") |
| | | @PreAuthorize("@ss.hasPermi('smartor:patarchive:add')") |
| | | @Log(title = "æ£è
æ¡£æ¡", businessType = BusinessType.INSERT) |
| | | @PostMapping("/add") |
| | | public AjaxResult add(@RequestBody PatArchive patArchive) { |
| | | return toAjax(patArchiveService.insertPatArchive(patArchive)); |
| | | } |
| | | // /** |
| | | // * æ°å¢æ£è
æ¡£æ¡ |
| | | // */ |
| | | // @ApiOperation("æ°å¢æ£è
æ¡£æ¡") |
| | | // @PreAuthorize("@ss.hasPermi('smartor:patarchive:add')") |
| | | // @Log(title = "æ£è
æ¡£æ¡", businessType = BusinessType.INSERT) |
| | | // @PostMapping("/add") |
| | | // public AjaxResult add(@RequestBody PatArchive patArchive) { |
| | | // return toAjax(patArchiveService.insertPatArchive(patArchive)); |
| | | // } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
æ¡£æ¡ |
| | | * æ°å¢æä¿®æ¹æ£è
æ¡£ä¿¡æ¯ |
| | | */ |
| | | @ApiOperation("ä¿®æ¹æ£è
æ¡£æ¡") |
| | | @ApiOperation("æ°å¢æä¿®æ¹æ£è
档信æ¯") |
| | | @PreAuthorize("@ss.hasPermi('smartor:patarchive:edit')") |
| | | @Log(title = "æ£è
æ¡£æ¡", businessType = BusinessType.UPDATE) |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@RequestBody PatArchive patArchive) { |
| | | return toAjax(patArchiveService.updatePatArchive(patArchive)); |
| | | @PostMapping("/saveOrUpdatePatInfo") |
| | | public AjaxResult saveOrUpdatePatInfo(@RequestBody PatArchiveVO patArchiveVO) { |
| | | return toAjax(patArchiveService.saveOrUpdatePatInfo(patArchiveVO)); |
| | | } |
| | | |
| | | /** |
| | |
| | | @ApiOperation("æ¥è¯¢æ£è
å表") |
| | | @PostMapping("/patInfoByContion") |
| | | public TableDataInfo patInfoByCondition(@RequestBody PatArchiveReq patArchive) { |
| | | PageUtils.startPageByPost(patArchive.getPageNum(),patArchive.getPageSize()); |
| | | PageUtils.startPageByPost(patArchive.getPageNum(), patArchive.getPageSize()); |
| | | return getDataTable(patArchiveService.patInfoByContion(patArchive)); |
| | | } |
| | | |
| | | |
| | | // /** |
| | | // * æ£è
æ ç¾ç®¡ç |
| | | // */ |
| | | // @ApiOperation("æ£è
æ ç¾ç®¡ç") |
| | | // @PostMapping("/patTagByContion") |
| | | // public TableDataInfo patTagByContion(@RequestBody List<Long> tagids) { |
| | | // startPage(); |
| | | // return getDataTable(patArchiveService.patTagByContion(tagids)); |
| | | // } |
| | | |
| | | |
| | | /** |
| | |
| | | } |
| | | ExcelUtil<PatArchive> util = new ExcelUtil<PatArchive>(PatArchive.class); |
| | | util.exportExcel(response, patArchives, "æ£è
æ¡£æ¡æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åç¨æ·è¯çä¿¡æ¯ï¼å»çæ¡£æ¡ï¼ |
| | | * |
| | | * @return |
| | | */ |
| | | @ApiOperation("è·åç¨æ·è¯çä¿¡æ¯ï¼å»çæ¡£æ¡") |
| | | @PostMapping("/getUserTreatmentInfo") |
| | | public AjaxResult getUserTreatmentInfo(@RequestParam("pid") String pid,@RequestParam("type") String type) { |
| | | return null; |
| | | } |
| | | |
| | | } |
| | |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('system:menu:edit')") |
| | | @Log(title = "èå管ç", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @PostMapping("/edit") |
| | | public AjaxResult edit(@Validated @RequestBody SysMenu menu) |
| | | { |
| | | if (UserConstants.NOT_UNIQUE.equals(menuService.checkMenuNameUnique(menu))) |
| | |
| | | } |
| | | |
| | | public static void main(String[] args) throws ApiException, IOException { |
| | | String str = "æè¿æ²¡è´«å¹³åè¡æåè¿é¥"; |
| | | String pattern = "(?!ä¸.*|没.*|æª.*)^.*([è´«å¹³åè¡]|è´«è¡|è¯å¦|è¯å¦),10"; |
| | | String str = "æè¿ä¸æ¯æ²¡æåè¿é¥"; |
| | | String pattern = "[\\u4e00-\\u9fa5]*(å¦|å¯|䏿¯|åäº|å·²ç»å¥½äº|宿)[\\u4e00-\\u9fa5]*"; |
| | | |
| | | Pattern r = Pattern.compile(pattern); |
| | | Matcher m = r.matcher(str); |
| | |
| | | } |
| | | |
| | | /** |
| | | * ååºè¯·æ±åé¡µæ°æ® |
| | | */ |
| | | @SuppressWarnings({ "rawtypes", "unchecked" }) |
| | | protected TableDataInfo getDataTable2(List<?> list,List<?> list2) |
| | | { |
| | | TableDataInfo rspData = new TableDataInfo(); |
| | | rspData.setCode(HttpStatus.SUCCESS); |
| | | rspData.setMsg("æ¥è¯¢æå"); |
| | | rspData.setRows(list2); |
| | | rspData.setTotal(new PageInfo(list).getTotal()); |
| | | return rspData; |
| | | } |
| | | |
| | | /** |
| | | * è¿åæå |
| | | */ |
| | | public AjaxResult success() |
| | |
| | | package com.ruoyi.system.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * ç¨æ·å¯¹è±¡ base_user_info |
| | |
| | | @ApiModelProperty("æ¯å¦å¼å¯ 1å¼å¯ 0å
³é") |
| | | private Integer isenable; |
| | | |
| | | @ApiModelProperty(value = "æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤") |
| | | private Integer isoperation; |
| | | |
| | | /** |
| | | * pageNum |
| | | */ |
| | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long id; |
| | | |
| | | /** |
| | | * åç±»åç§° |
| | | */ |
| | | @ApiModelProperty(name = "åç±»åç§°") |
| | | @ApiModelProperty(value = "åç±»åç§°") |
| | | private String categoryname; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | private Date uploadTime; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @ApiModelProperty(name = "ç¶ID") |
| | | @ApiModelProperty(value = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @ApiModelProperty(name = "GUID") |
| | | @ApiModelProperty(value = "GUID") |
| | | private String guid; |
| | | |
| | | @Override |
| | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long id; |
| | | |
| | | /** |
| | | * åç±»åç§° |
| | | */ |
| | | @ApiModelProperty(name = "åç±»åç§°") |
| | | @ApiModelProperty(value = "åç±»åç§°") |
| | | private String categoryname; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | private Date uploadTime; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @ApiModelProperty(name = "ç¶ID") |
| | | @ApiModelProperty(value = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * guid |
| | | */ |
| | | @ApiModelProperty(name = "guid") |
| | | @ApiModelProperty(value = "guid") |
| | | private String guid; |
| | | |
| | | /** |
| | | * åæ°æ® |
| | | */ |
| | | @ApiModelProperty(name = "åæ°æ®") |
| | | @ApiModelProperty(value = "åæ°æ®") |
| | | private List<HeCategory> heCategoryList; |
| | | |
| | | @Override |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * ç¾ç
对象 icd10 |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @ApiModel(value = "Icd10", description = "ç¾ç
对象") |
| | | @Data |
| | | public class Icd10 extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("主é®") |
| | | private Long icdid; |
| | | |
| | | /** |
| | | * icd10ç¼ç |
| | | */ |
| | | @ApiModelProperty("icd10ç¼ç ") |
| | | @Excel(name = "icd10ç¼ç ") |
| | | private String icdcode; |
| | | |
| | | /** |
| | | * icd10åç§° |
| | | */ |
| | | @ApiModelProperty("icd10åç§°") |
| | | @Excel(name = "icd10åç§°") |
| | | private String icdname; |
| | | |
| | | /** |
| | | * æ¼é³ç |
| | | */ |
| | | @ApiModelProperty("æ¼é³ç ") |
| | | @Excel(name = "æ¼é³ç ") |
| | | private String icdpym; |
| | | |
| | | /** |
| | | * äºç¬ç |
| | | */ |
| | | @ApiModelProperty("äºç¬ç ") |
| | | @Excel(name = "äºç¬ç ") |
| | | private String icdwbm; |
| | | |
| | | /** |
| | | * æºæid |
| | | */ |
| | | @ApiModelProperty("æºæid") |
| | | @Excel(name = "æºæid") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * å 餿 è¯ |
| | | */ |
| | | @ApiModelProperty("å 餿 è¯") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @ApiModelProperty("ç¶ID") |
| | | @Excel(name = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @ApiModelProperty("GUID") |
| | | @Excel(name = "GUID") |
| | | private String guid; |
| | | |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty("pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty("pageSize") |
| | | private Integer pageSize; |
| | | |
| | | |
| | | } |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * è¯æ¯åºå¯¹è±¡ ivr_liba_script |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | * é®é¢è¯æ¯åºå¯¹è±¡ ivr_liba_script |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | public class IvrLibaScript extends BaseEntity |
| | | { |
| | | @Data |
| | | @ApiModel(value = "IvrLibaScript", description = "é®é¢è¯æ¯åºå¯¹è±¡") |
| | | public class IvrLibaScript extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** */ |
| | | private String questionid; |
| | | /** |
| | | * é®é¢è¯æ¯id |
| | | */ |
| | | @ApiModelProperty("é®é¢è¯æ¯idï¼ä¸»é®ï¼") |
| | | private Long id; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String questionpoint; |
| | | /** |
| | | * é®é¢è¯æ¯æ é¢ |
| | | */ |
| | | @ApiModelProperty("é®é¢è¯æ¯æ é¢") |
| | | @Excel(name = "é®é¢è¯æ¯æ é¢") |
| | | private String questiontitle; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * è¯æ¯å
容 |
| | | */ |
| | | @ApiModelProperty("è¯æ¯å
容") |
| | | @Excel(name = "è¯æ¯å
容") |
| | | private String questiontext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * è¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("è¯æ¯è¯é³") |
| | | @Excel(name = "è¯æ¯è¯é³") |
| | | private String questionvoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * æ å¹é
è¯æ¯ |
| | | */ |
| | | @ApiModelProperty("æ å¹é
è¯æ¯") |
| | | @Excel(name = "æ å¹é
è¯æ¯") |
| | | private String nomatchtext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * æ å¹é
è¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("æ å¹é
è¯æ¯è¯é³") |
| | | @Excel(name = "æ å¹é
è¯æ¯è¯é³") |
| | | private String nomatchvoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * éé»è¯æ¯ |
| | | */ |
| | | @ApiModelProperty("éé»è¯æ¯") |
| | | @Excel(name = "éé»è¯æ¯") |
| | | private String sliencetext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * éé»è¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("éé»è¯æ¯è¯é³") |
| | | @Excel(name = "éé»è¯æ¯è¯é³") |
| | | private String sliencevoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * éç¨åºå¹é
åè¯æ¯ |
| | | */ |
| | | @ApiModelProperty("éç¨åºå¹é
åè¯æ¯") |
| | | @Excel(name = "éç¨åºå¹é
åè¯æ¯") |
| | | private String submoduletext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * éç¨åºå¹é
åè¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("éç¨åºå¹é
åè¯æ¯è¯é³") |
| | | @Excel(name = "éç¨åºå¹é
åè¯æ¯è¯é³") |
| | | private String submodulevoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * å¬ä¸æ¸
è¯æ¯ |
| | | */ |
| | | @ApiModelProperty("å¬ä¸æ¸
è¯æ¯") |
| | | @Excel(name = "å¬ä¸æ¸
è¯æ¯") |
| | | private String noclearlytext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * å¬ä¸æ¸
è¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("å¬ä¸æ¸
è¯æ¯è¯é³") |
| | | @Excel(name = "å¬ä¸æ¸
è¯æ¯è¯é³") |
| | | private String noclearlyvoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * é®é¢ç±»å |
| | | */ |
| | | @ApiModelProperty("é®é¢ç±»å") |
| | | @Excel(name = "é®é¢ç±»å ") |
| | | private String questiontype; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String categoryname; |
| | | /** |
| | | * 对åºçivr_liba_target表çä¸»é® |
| | | */ |
| | | @ApiModelProperty("对åºçivr_liba_target表ç主é®") |
| | | @Excel(name = "对åºçivr_liba_target表ç主é®") |
| | | private Long targetid; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * ææ åç§° |
| | | */ |
| | | @ApiModelProperty("ææ åç§°") |
| | | @Excel(name = "ææ åç§°") |
| | | private String targetname; |
| | | |
| | | /** |
| | | * ææ æ éé¡¹æ±æ» |
| | | */ |
| | | @ApiModelProperty("ææ æ éé¡¹æ±æ»") |
| | | @Excel(name = "ææ æ éé¡¹æ±æ»") |
| | | private String targetoptions; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * éç¨è¯è¨ |
| | | */ |
| | | @ApiModelProperty("éç¨è¯è¨") |
| | | @Excel(name = "éç¨è¯è¨") |
| | | private String language; |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String note; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private Long version; |
| | | /** |
| | | * çæ¬ |
| | | */ |
| | | @ApiModelProperty("çæ¬") |
| | | @Excel(name = "çæ¬") |
| | | private String version; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private Long isenable; |
| | | /** |
| | | * å¯ç¨ç¶æ |
| | | */ |
| | | @ApiModelProperty("å¯ç¨ç¶æ") |
| | | @Excel(name = "å¯ç¨ç¶æ") |
| | | private Long usestate; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private Long isdel; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("æ·»å 人ID") |
| | | @Excel(name = "æ·»å 人ID") |
| | | private String adduserid; |
| | | |
| | | /** */ |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("æ·»å æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @Excel(name = "æ·»å æ¶é´", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date addtime; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("è°æ´äººid") |
| | | @Excel(name = "è°æ´äººid") |
| | | private String modifyuserid; |
| | | |
| | | /** */ |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("è°æ´æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @Excel(name = "è°æ´æ¶é´", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date modifytime; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String groupid; |
| | | /** |
| | | * åç±»id |
| | | */ |
| | | @ApiModelProperty("åç±»id") |
| | | @Excel(name = "åç±»id") |
| | | private String assortid; |
| | | |
| | | /** å 餿 è®° */ |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty("å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty("ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | /** |
| | | * å¼ç±»åï¼1 é项 2 ææ¬ 3 æ°å¼ï¼ |
| | | */ |
| | | @ApiModelProperty(value = "å¼ç±»åï¼1 é项 2 ææ¬ 3 æ°å¼ï¼") |
| | | @Excel(name = "å¼ç±»å", readConverterExp = "1=,é=项,2=,æ=æ¬,3=,æ°=å¼") |
| | | private Long isenable; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty("ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** æºæID */ |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty("æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | public void setQuestionid(String questionid) |
| | | { |
| | | this.questionid = questionid; |
| | | } |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @ApiModelProperty("ç¶ID") |
| | | @Excel(name = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | public String getQuestionid() |
| | | { |
| | | return questionid; |
| | | } |
| | | public void setQuestionpoint(String questionpoint) |
| | | { |
| | | this.questionpoint = questionpoint; |
| | | } |
| | | /** |
| | | * GUID |
| | | */ |
| | | @ApiModelProperty("GUID") |
| | | @Excel(name = "GUID") |
| | | private String guid; |
| | | |
| | | public String getQuestionpoint() |
| | | { |
| | | return questionpoint; |
| | | } |
| | | public void setQuestiontext(String questiontext) |
| | | { |
| | | this.questiontext = questiontext; |
| | | } |
| | | |
| | | public String getQuestiontext() |
| | | { |
| | | return questiontext; |
| | | } |
| | | public void setQuestionvoice(String questionvoice) |
| | | { |
| | | this.questionvoice = questionvoice; |
| | | } |
| | | |
| | | public String getQuestionvoice() |
| | | { |
| | | return questionvoice; |
| | | } |
| | | public void setNomatchtext(String nomatchtext) |
| | | { |
| | | this.nomatchtext = nomatchtext; |
| | | } |
| | | |
| | | public String getNomatchtext() |
| | | { |
| | | return nomatchtext; |
| | | } |
| | | public void setNomatchvoice(String nomatchvoice) |
| | | { |
| | | this.nomatchvoice = nomatchvoice; |
| | | } |
| | | |
| | | public String getNomatchvoice() |
| | | { |
| | | return nomatchvoice; |
| | | } |
| | | public void setSliencetext(String sliencetext) |
| | | { |
| | | this.sliencetext = sliencetext; |
| | | } |
| | | |
| | | public String getSliencetext() |
| | | { |
| | | return sliencetext; |
| | | } |
| | | public void setSliencevoice(String sliencevoice) |
| | | { |
| | | this.sliencevoice = sliencevoice; |
| | | } |
| | | |
| | | public String getSliencevoice() |
| | | { |
| | | return sliencevoice; |
| | | } |
| | | public void setSubmoduletext(String submoduletext) |
| | | { |
| | | this.submoduletext = submoduletext; |
| | | } |
| | | |
| | | public String getSubmoduletext() |
| | | { |
| | | return submoduletext; |
| | | } |
| | | public void setSubmodulevoice(String submodulevoice) |
| | | { |
| | | this.submodulevoice = submodulevoice; |
| | | } |
| | | |
| | | public String getSubmodulevoice() |
| | | { |
| | | return submodulevoice; |
| | | } |
| | | public void setNoclearlytext(String noclearlytext) |
| | | { |
| | | this.noclearlytext = noclearlytext; |
| | | } |
| | | |
| | | public String getNoclearlytext() |
| | | { |
| | | return noclearlytext; |
| | | } |
| | | public void setNoclearlyvoice(String noclearlyvoice) |
| | | { |
| | | this.noclearlyvoice = noclearlyvoice; |
| | | } |
| | | |
| | | public String getNoclearlyvoice() |
| | | { |
| | | return noclearlyvoice; |
| | | } |
| | | public void setQuestiontype(String questiontype) |
| | | { |
| | | this.questiontype = questiontype; |
| | | } |
| | | |
| | | public String getQuestiontype() |
| | | { |
| | | return questiontype; |
| | | } |
| | | public void setCategoryname(String categoryname) |
| | | { |
| | | this.categoryname = categoryname; |
| | | } |
| | | |
| | | public String getCategoryname() |
| | | { |
| | | return categoryname; |
| | | } |
| | | public void setTargetoptions(String targetoptions) |
| | | { |
| | | this.targetoptions = targetoptions; |
| | | } |
| | | |
| | | public String getTargetoptions() |
| | | { |
| | | return targetoptions; |
| | | } |
| | | public void setLanguage(String language) |
| | | { |
| | | this.language = language; |
| | | } |
| | | |
| | | public String getLanguage() |
| | | { |
| | | return language; |
| | | } |
| | | public void setNote(String note) |
| | | { |
| | | this.note = note; |
| | | } |
| | | |
| | | public String getNote() |
| | | { |
| | | return note; |
| | | } |
| | | public void setVersion(Long version) |
| | | { |
| | | this.version = version; |
| | | } |
| | | |
| | | public Long getVersion() |
| | | { |
| | | return version; |
| | | } |
| | | public void setIsenable(Long isenable) |
| | | { |
| | | this.isenable = isenable; |
| | | } |
| | | |
| | | public Long getIsenable() |
| | | { |
| | | return isenable; |
| | | } |
| | | public void setIsdel(Long isdel) |
| | | { |
| | | this.isdel = isdel; |
| | | } |
| | | |
| | | public Long getIsdel() |
| | | { |
| | | return isdel; |
| | | } |
| | | public void setAdduserid(String adduserid) |
| | | { |
| | | this.adduserid = adduserid; |
| | | } |
| | | |
| | | public String getAdduserid() |
| | | { |
| | | return adduserid; |
| | | } |
| | | public void setAddtime(Date addtime) |
| | | { |
| | | this.addtime = addtime; |
| | | } |
| | | |
| | | public Date getAddtime() |
| | | { |
| | | return addtime; |
| | | } |
| | | public void setModifyuserid(String modifyuserid) |
| | | { |
| | | this.modifyuserid = modifyuserid; |
| | | } |
| | | |
| | | public String getModifyuserid() |
| | | { |
| | | return modifyuserid; |
| | | } |
| | | public void setModifytime(Date modifytime) |
| | | { |
| | | this.modifytime = modifytime; |
| | | } |
| | | |
| | | public Date getModifytime() |
| | | { |
| | | return modifytime; |
| | | } |
| | | public void setGroupid(String groupid) |
| | | { |
| | | this.groupid = groupid; |
| | | } |
| | | |
| | | public String getGroupid() |
| | | { |
| | | return groupid; |
| | | } |
| | | public void setDelFlag(String delFlag) |
| | | { |
| | | this.delFlag = delFlag; |
| | | } |
| | | |
| | | public String getDelFlag() |
| | | { |
| | | return delFlag; |
| | | } |
| | | public void setIsupload(Long isupload) |
| | | { |
| | | this.isupload = isupload; |
| | | } |
| | | |
| | | public Long getIsupload() |
| | | { |
| | | return isupload; |
| | | } |
| | | public void setUploadTime(Date uploadTime) |
| | | { |
| | | this.uploadTime = uploadTime; |
| | | } |
| | | |
| | | public Date getUploadTime() |
| | | { |
| | | return uploadTime; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("questionid", getQuestionid()) |
| | | .append("questionpoint", getQuestionpoint()) |
| | | .append("questiontext", getQuestiontext()) |
| | | .append("questionvoice", getQuestionvoice()) |
| | | .append("nomatchtext", getNomatchtext()) |
| | | .append("nomatchvoice", getNomatchvoice()) |
| | | .append("sliencetext", getSliencetext()) |
| | | .append("sliencevoice", getSliencevoice()) |
| | | .append("submoduletext", getSubmoduletext()) |
| | | .append("submodulevoice", getSubmodulevoice()) |
| | | .append("noclearlytext", getNoclearlytext()) |
| | | .append("noclearlyvoice", getNoclearlyvoice()) |
| | | .append("questiontype", getQuestiontype()) |
| | | .append("categoryname", getCategoryname()) |
| | | .append("targetoptions", getTargetoptions()) |
| | | .append("language", getLanguage()) |
| | | .append("note", getNote()) |
| | | .append("version", getVersion()) |
| | | .append("isenable", getIsenable()) |
| | | .append("isdel", getIsdel()) |
| | | .append("adduserid", getAdduserid()) |
| | | .append("addtime", getAddtime()) |
| | | .append("modifyuserid", getModifyuserid()) |
| | | .append("modifytime", getModifytime()) |
| | | .append("groupid", getGroupid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("orgid", getOrgid()) |
| | | .toString(); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯åç±»åº |
| | | * 对象 ivr_liba_script_assort |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaScriptAssort", description = "é®é¢è¯æ¯åç±»åº") |
| | | public class IvrLibaScriptAssort extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("主é®") |
| | | private Long id; |
| | | |
| | | /** |
| | | * ææ åç±»åç§° |
| | | */ |
| | | @ApiModelProperty("ææ åç±»åç§°") |
| | | @Excel(name = "ææ åç±»åç§°") |
| | | private String indexAssortName; |
| | | |
| | | /** |
| | | * å é¤ |
| | | */ |
| | | @ApiModelProperty("å é¤") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ç¶id |
| | | */ |
| | | @ApiModelProperty("ç¶id") |
| | | @Excel(name = "ç¶id") |
| | | private Long pid; |
| | | |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯åç±»å±ç¤ºåº |
| | | * 对象 ivr_liba_script_assort |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaScriptAssortVO", description = "é®é¢è¯æ¯åç±»å±ç¤ºåº") |
| | | public class IvrLibaScriptAssortVO extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("主é®") |
| | | private Long id; |
| | | |
| | | /** |
| | | * ææ åç±»åç§° |
| | | */ |
| | | @ApiModelProperty("ææ åç±»åç§°") |
| | | @Excel(name = "ææ åç±»åç§°") |
| | | private String indexAssortName; |
| | | |
| | | /** |
| | | * å é¤ |
| | | */ |
| | | @ApiModelProperty("å é¤") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ç¶id |
| | | */ |
| | | @ApiModelProperty("ç¶id") |
| | | @Excel(name = "ç¶id") |
| | | private Long pid; |
| | | |
| | | |
| | | /** |
| | | * åæ°æ® |
| | | */ |
| | | @ApiModelProperty(value = "åæ°æ®") |
| | | private List<IvrLibaScriptAssort> ivrLibaScriptAssortList; |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯æ ç¾åºå¯¹è±¡ ivr_liba_script_tag |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaScriptTag", description = "é®é¢è¯æ¯æ ç¾åºå¯¹è±¡") |
| | | public class IvrLibaScriptTag extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | @ApiModelProperty("主é®") |
| | | private Long id; |
| | | |
| | | /** æ ç¾åç±»ID */ |
| | | @ApiModelProperty("æ ç¾åç±»ID") |
| | | @Excel(name = " æ ç¾åç±»ID ") |
| | | private Long tagcategoryid; |
| | | |
| | | /** æ ç¾ID */ |
| | | @ApiModelProperty("æ ç¾ID") |
| | | @Excel(name = " æ ç¾ID ") |
| | | private Long tagid; |
| | | |
| | | /** ivr_liba_script çä¸»é® */ |
| | | @ApiModelProperty("ivr_liba_script ç主é®") |
| | | @Excel(name = " ivr_liba_script çä¸»é® ") |
| | | private Long scriptid; |
| | | |
| | | /** æºæID */ |
| | | @ApiModelProperty("æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | @ApiModelProperty("å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @ApiModelProperty("ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @ApiModelProperty("ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** æ ç¾ID */ |
| | | @ApiModelProperty("æ ç¾ID") |
| | | @Excel(name = "æ ç¾ID ") |
| | | private Long targetid; |
| | | |
| | | /** ç¶ID */ |
| | | @ApiModelProperty("ç¶ID") |
| | | @Excel(name = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** GUID */ |
| | | @ApiModelProperty("GUID") |
| | | @Excel(name = "GUID") |
| | | private String guid; |
| | | |
| | | /** æ ç¾å */ |
| | | @ApiModelProperty("æ ç¾å") |
| | | @Excel(name = "æ ç¾å") |
| | | private String tagname; |
| | | |
| | | /** |
| | | * æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤ |
| | | */ |
| | | @ApiModelProperty(value = "æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤") |
| | | private Integer isoperation; |
| | | |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯ææ é项åºå¯¹è±¡ ivr_liba_script_targetoption |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaScriptTargetoption", description = "é®é¢è¯æ¯ææ é项åºå¯¹è±¡") |
| | | public class IvrLibaScriptTargetoption extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("主é®") |
| | | private Long id; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("ææ ID") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long targetid; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("é®é¢ID") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long scriptid; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("主é®") |
| | | @Excel(name = "${ææ ç±»å}", readConverterExp = "$column.readConverterExp()") |
| | | private String targettype; |
| | | |
| | | /** |
| | | * ç±»å«åç§° |
| | | */ |
| | | @Excel(name = "ç±»å«åç§°") |
| | | @ApiModelProperty("ç±»å«åç§°") |
| | | private String categoryName; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("ææ å¼") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetvalue; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("ææ æ£å") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetregex; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("é项æè¿°") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String optiondesc; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("è¯è¨") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("çæ¬") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long version; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty("åç»ID") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String groupid; |
| | | |
| | | /** |
| | | * æ¯å¦å¼å¸¸æ è¯ |
| | | */ |
| | | @ApiModelProperty("æ¯å¦å¼å¸¸æ è¯") |
| | | @Excel(name = "æ¯å¦å¼å¸¸æ è¯") |
| | | private Long isabnormal; |
| | | |
| | | /** |
| | | * é¢è¦éå¼ä¸é |
| | | */ |
| | | @ApiModelProperty("é¢è¦éå¼ä¸é") |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | private Long warnup; |
| | | |
| | | /** |
| | | * é¢è¦éå¼ä¸é |
| | | */ |
| | | @ApiModelProperty("é¢è¦éå¼ä¸é") |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | private Long warndown; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty("å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty("ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty("ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty("æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @ApiModelProperty("ç¶ID") |
| | | @Excel(name = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @ApiModelProperty("GUID") |
| | | @Excel(name = "GUID") |
| | | private String guid; |
| | | |
| | | /** |
| | | * æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤ |
| | | */ |
| | | @ApiModelProperty(value = "æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤") |
| | | private Integer isoperation; |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import afu.org.checkerframework.checker.igj.qual.I; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯åºå¯¹è±¡ ivr_liba_script |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaScriptVO", description = "é®é¢è¯æ¯åºå
¥å对象") |
| | | public class IvrLibaScriptVO extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯id |
| | | */ |
| | | @ApiModelProperty("é®é¢è¯æ¯idï¼ä¸»é®ï¼") |
| | | private Long id; |
| | | |
| | | |
| | | /** |
| | | * å¼ç±»åï¼1 é项 2 ææ¬ 3 æ°å¼ï¼ |
| | | */ |
| | | @ApiModelProperty("å¼ç±»åï¼1 é项 2 ææ¬ 3 æ°å¼ï¼") |
| | | private Long isenable; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯æ é¢ |
| | | */ |
| | | @ApiModelProperty("é®é¢è¯æ¯æ é¢") |
| | | @Excel(name = "é®é¢è¯æ¯æ é¢") |
| | | private String questiontitle; |
| | | |
| | | /** |
| | | * è¯æ¯å
容 |
| | | */ |
| | | @ApiModelProperty("è¯æ¯å
容") |
| | | @Excel(name = "è¯æ¯å
容") |
| | | private String questiontext; |
| | | |
| | | /** |
| | | * è¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("è¯æ¯è¯é³") |
| | | @Excel(name = "è¯æ¯è¯é³") |
| | | private String questionvoice; |
| | | |
| | | /** |
| | | * æ å¹é
è¯æ¯ |
| | | */ |
| | | @ApiModelProperty("æ å¹é
è¯æ¯") |
| | | @Excel(name = "æ å¹é
è¯æ¯") |
| | | private String nomatchtext; |
| | | |
| | | /** |
| | | * æ å¹é
è¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("æ å¹é
è¯æ¯è¯é³") |
| | | @Excel(name = "æ å¹é
è¯æ¯è¯é³") |
| | | private String nomatchvoice; |
| | | |
| | | /** |
| | | * éé»è¯æ¯ |
| | | */ |
| | | @ApiModelProperty("éé»è¯æ¯") |
| | | @Excel(name = "éé»è¯æ¯") |
| | | private String sliencetext; |
| | | |
| | | /** |
| | | * éé»è¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("éé»è¯æ¯è¯é³") |
| | | @Excel(name = "éé»è¯æ¯è¯é³") |
| | | private String sliencevoice; |
| | | |
| | | /** |
| | | * éç¨åºå¹é
åè¯æ¯ |
| | | */ |
| | | @ApiModelProperty("éç¨åºå¹é
åè¯æ¯") |
| | | @Excel(name = "éç¨åºå¹é
åè¯æ¯") |
| | | private String submoduletext; |
| | | |
| | | /** |
| | | * éç¨åºå¹é
åè¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("éç¨åºå¹é
åè¯æ¯è¯é³") |
| | | @Excel(name = "éç¨åºå¹é
åè¯æ¯è¯é³") |
| | | private String submodulevoice; |
| | | |
| | | /** |
| | | * å¬ä¸æ¸
è¯æ¯ |
| | | */ |
| | | @ApiModelProperty("å¬ä¸æ¸
è¯æ¯") |
| | | @Excel(name = "å¬ä¸æ¸
è¯æ¯") |
| | | private String noclearlytext; |
| | | |
| | | /** |
| | | * å¬ä¸æ¸
è¯æ¯è¯é³ |
| | | */ |
| | | @ApiModelProperty("å¬ä¸æ¸
è¯æ¯è¯é³") |
| | | @Excel(name = "å¬ä¸æ¸
è¯æ¯è¯é³") |
| | | private String noclearlyvoice; |
| | | |
| | | /** |
| | | * é®é¢ç±»å |
| | | */ |
| | | @ApiModelProperty("é®é¢ç±»å") |
| | | @Excel(name = "é®é¢ç±»å ") |
| | | private String questiontype; |
| | | |
| | | /** |
| | | * 对åºçivr_liba_target表çä¸»é® |
| | | */ |
| | | @ApiModelProperty("对åºçivr_liba_target表ç主é®") |
| | | @Excel(name = "对åºçivr_liba_target表ç主é®") |
| | | private Long targetid; |
| | | |
| | | /** |
| | | * ææ åç§° |
| | | */ |
| | | @ApiModelProperty("ææ åç§°") |
| | | @Excel(name = "ææ åç§°") |
| | | private String targetname; |
| | | |
| | | /** |
| | | * ææ æ éé¡¹æ±æ» |
| | | */ |
| | | @ApiModelProperty("ææ æ éé¡¹æ±æ»") |
| | | @Excel(name = "ææ æ éé¡¹æ±æ»") |
| | | private String targetoptions; |
| | | |
| | | /** |
| | | * éç¨è¯è¨ |
| | | */ |
| | | @ApiModelProperty("éç¨è¯è¨") |
| | | @Excel(name = "éç¨è¯è¨") |
| | | private String language; |
| | | |
| | | /** |
| | | * çæ¬ |
| | | */ |
| | | @ApiModelProperty("çæ¬") |
| | | @Excel(name = "çæ¬") |
| | | private String version; |
| | | |
| | | /** |
| | | * å¯ç¨ç¶æ |
| | | */ |
| | | @ApiModelProperty("å¯ç¨ç¶æ") |
| | | @Excel(name = "å¯ç¨ç¶æ") |
| | | private Long usestate; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("æ·»å 人ID") |
| | | @Excel(name = "æ·»å 人ID") |
| | | private String adduserid; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("æ·»å æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "æ·»å æ¶é´", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date addtime; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("è°æ´äººid") |
| | | @Excel(name = "è°æ´äººid") |
| | | private String modifyuserid; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("è°æ´æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "è°æ´æ¶é´", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date modifytime; |
| | | |
| | | /** |
| | | * åç±»id |
| | | */ |
| | | @ApiModelProperty("åç±»id") |
| | | @Excel(name = "åç±»id") |
| | | private String assortid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty("å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty("ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty("ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty("æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * ææ éå |
| | | */ |
| | | @ApiModelProperty("ææ éå") |
| | | private List<IvrLibaScriptTarget> ivrLibaScriptTargetList; |
| | | |
| | | |
| | | /** |
| | | * é®é¢ææ é项éå |
| | | */ |
| | | @ApiModelProperty("é®é¢ææ é项éå") |
| | | private List<IvrLibaScriptTargetoption> ivrLibaScriptTargetoptionList; |
| | | |
| | | /** |
| | | * é®é¢æ ç¾éå |
| | | */ |
| | | @ApiModelProperty("é®é¢æ ç¾éå") |
| | | private List<IvrLibaScriptTag> ivrLibaScriptTagList; |
| | | |
| | | /** |
| | | * æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤ |
| | | */ |
| | | @ApiModelProperty(value = "æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤") |
| | | private Integer isoperation; |
| | | |
| | | } |
| | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(name = "主é®") |
| | | @ApiModelProperty(value = "主é®") |
| | | private Long targetID; |
| | | |
| | | /** |
| | | * åç»ID |
| | | */ |
| | | @Excel(name = "åç»ID") |
| | | @ApiModelProperty(name = "åç»ID") |
| | | @ApiModelProperty(value = "åç»ID") |
| | | private String groupid; |
| | | |
| | | /** |
| | | * ææ ç±»å |
| | | */ |
| | | @Excel(name = "ææ ç±»å") |
| | | @ApiModelProperty(name = "ææ ç±»å") |
| | | @ApiModelProperty(value = "ææ ç±»å") |
| | | private String targettype; |
| | | |
| | | /** |
| | | * ææ åç§° |
| | | */ |
| | | @Excel(name = "ææ åç§°") |
| | | @ApiModelProperty(name = "ææ åç§°") |
| | | @ApiModelProperty(value = "ææ åç§°") |
| | | private String targetname; |
| | | |
| | | /** |
| | | * ææ æè¿° |
| | | */ |
| | | @Excel(name = "ææ æè¿°") |
| | | @ApiModelProperty(name = "ææ æè¿°") |
| | | @ApiModelProperty(value = "ææ æè¿°") |
| | | private String targetdesc; |
| | | |
| | | /** |
| | | * è¯è¨ |
| | | */ |
| | | @Excel(name = "è¯è¨") |
| | | @ApiModelProperty(name = "è¯è¨") |
| | | @ApiModelProperty(value = "è¯è¨") |
| | | private String language; |
| | | |
| | | /** |
| | | * çæ¬ |
| | | */ |
| | | @Excel(name = "çæ¬") |
| | | @ApiModelProperty(name = "çæ¬") |
| | | private Long version; |
| | | @ApiModelProperty(value = "çæ¬") |
| | | private String version; |
| | | |
| | | /** |
| | | * å¼ç±»åï¼1 é项 2 ææ¬ 3 æ°å¼ï¼ |
| | | */ |
| | | @ApiModelProperty(name = "å¼ç±»åï¼1 é项 2 ææ¬ 3 æ°å¼ï¼") |
| | | @ApiModelProperty(value = "å¼ç±»åï¼1 é项 2 ææ¬ 3 æ°å¼ï¼") |
| | | @Excel(name = "å¼ç±»å", readConverterExp = "1=,é=项,2=,æ=æ¬,3=,æ°=å¼") |
| | | private Long isenable; |
| | | |
| | |
| | | * æ¯å¦å¼å¸¸æ è¯ |
| | | */ |
| | | @Excel(name = "æ¯å¦å¼å¸¸æ è¯") |
| | | @ApiModelProperty(name = "æ¯å¦å¼å¸¸æ è¯") |
| | | @ApiModelProperty(value = "æ¯å¦å¼å¸¸æ è¯") |
| | | private Long isabnormal; |
| | | |
| | | /** |
| | | * é¢è¦éå¼ä¸é |
| | | */ |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | @ApiModelProperty(name = "é¢è¦éå¼ä¸é") |
| | | @ApiModelProperty(value = "é¢è¦éå¼ä¸é") |
| | | private Long warnup; |
| | | |
| | | /** |
| | | * é¢è¦éå¼ä¸é |
| | | */ |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | @ApiModelProperty(name = "é¢è¦éå¼ä¸é") |
| | | @ApiModelProperty(value = "é¢è¦éå¼ä¸é") |
| | | private Long warndown; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | |
| | | * æºæID |
| | | */ |
| | | @Excel(name = " æºæID ") |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @Excel(name = "ç¶ID") |
| | | @ApiModelProperty(name = "ç¶ID") |
| | | @ApiModelProperty(value = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @Excel(name = "GUID") |
| | | @ApiModelProperty(name = "GUID") |
| | | @ApiModelProperty(value = "GUID") |
| | | private String guid; |
| | | |
| | | /** |
| | | * åç±»id |
| | | */ |
| | | @Excel(name = "åç±»id") |
| | | @ApiModelProperty(name = "åç±»id") |
| | | @ApiModelProperty(value = "åç±»id") |
| | | private Long assortid; |
| | | |
| | | /** |
| | | * æ¯å¦å¯ç¨ |
| | | */ |
| | | @Excel(name = "æ¯å¦å¯ç¨") |
| | | @ApiModelProperty(value = "æ¯å¦å¯ç¨") |
| | | private String isAvailable; |
| | | |
| | | /** |
| | | * éç¨ç¾ç
|
| | | */ |
| | | @Excel(name = "éç¨ç¾ç
") |
| | | @ApiModelProperty(value = "éç¨ç¾ç
") |
| | | private String suitDisease; |
| | | |
| | | |
| | | /** |
| | | * éç¨æ¹å¼ |
| | | */ |
| | | @Excel(name = "éç¨æ¹å¼") |
| | | @ApiModelProperty(value = "éç¨æ¹å¼") |
| | | private String suitWay; |
| | | |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty(name = "pageNum") |
| | | @ApiModelProperty(value = "pageNum") |
| | | @Excel(name = "pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty(name = "pageSize") |
| | | @ApiModelProperty(value = "pageSize") |
| | | @Excel(name = "pageSize") |
| | | private Integer pageSize; |
| | | |
| | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(name = "主é®") |
| | | @ApiModelProperty(value = "主é®") |
| | | private Long id; |
| | | |
| | | /** |
| | | * ææ åç±»åç§° |
| | | */ |
| | | @ApiModelProperty(name = "主é®") |
| | | @ApiModelProperty(value = "主é®") |
| | | @Excel(name = "ææ åç±»åç§°") |
| | | private String indexAssortName; |
| | | |
| | | /** |
| | | * å é¤ |
| | | */ |
| | | @ApiModelProperty(name = "å é¤") |
| | | @ApiModelProperty(value = "å é¤") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ç¶id |
| | | */ |
| | | @ApiModelProperty(name = "ç¶id") |
| | | @ApiModelProperty(value = "ç¶id") |
| | | @Excel(name = "ç¶id") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty(name = "pageNum") |
| | | @ApiModelProperty(value = "pageNum") |
| | | @Excel(name = "pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty(name = "pageSize") |
| | | @ApiModelProperty(value = "pageSize") |
| | | @Excel(name = "pageSize") |
| | | private Integer pageSize; |
| | | |
| | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(name = "主é®") |
| | | @ApiModelProperty(value = "主é®") |
| | | private Long id; |
| | | |
| | | /** |
| | | * ææ åç±»åç§° |
| | | */ |
| | | @ApiModelProperty(name = "主é®") |
| | | @ApiModelProperty(value = "主é®") |
| | | @Excel(name = "ææ åç±»åç§°") |
| | | private String indexAssortName; |
| | | |
| | | /** |
| | | * å é¤ |
| | | */ |
| | | @ApiModelProperty(name = "å é¤") |
| | | @ApiModelProperty(value = "å é¤") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ç¶id |
| | | */ |
| | | @ApiModelProperty(name = "ç¶id") |
| | | @ApiModelProperty(value = "ç¶id") |
| | | @Excel(name = "ç¶id") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty(name = "pageNum") |
| | | @ApiModelProperty(value = "pageNum") |
| | | @Excel(name = "pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty(name = "pageSize") |
| | | @ApiModelProperty(value = "pageSize") |
| | | @Excel(name = "pageSize") |
| | | private Integer pageSize; |
| | | |
| | | /** |
| | | * åæ°æ® |
| | | */ |
| | | @ApiModelProperty(name = "åæ°æ®") |
| | | @ApiModelProperty(value = "åæ°æ®") |
| | | private List<IvrLibaTargetAssort> ivrLibaTargetAssortList; |
| | | |
| | | @Override |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * ææ ç¾ç
对象 ivr_liba_target_icd10 |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-20 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaTargetIcd10", description = "ææ ç¾ç
对象") |
| | | public class IvrLibaTargetIcd10 extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(value = "主é®") |
| | | private Long id; |
| | | |
| | | /** |
| | | * ç¾ç
id |
| | | */ |
| | | @ApiModelProperty(value = "ç¾ç
id") |
| | | @Excel(name = "ç¾ç
id") |
| | | private Long icd10id; |
| | | |
| | | /** |
| | | * ç¾ç
ç¼ç |
| | | */ |
| | | @ApiModelProperty(value = "ç¾ç
ç¼ç ") |
| | | @Excel(name = "ç¾ç
ç¼ç ") |
| | | private String icd10code; |
| | | |
| | | /** |
| | | * ç¾ç
åç§° |
| | | */ |
| | | @ApiModelProperty(value = "ç¾ç
åç§°") |
| | | @Excel(name = "ç¾ç
åç§°") |
| | | private String icd10name; |
| | | |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(value = "æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** |
| | | * å¤é¨ID |
| | | */ |
| | | @ApiModelProperty(value = "å¤é¨ID") |
| | | @Excel(name = "å¤é¨ID ") |
| | | private Long outid; |
| | | |
| | | /** |
| | | * 1 ææ 2宣æ 3é®é¢ |
| | | */ |
| | | @ApiModelProperty(value = "1 ææ 2宣æ 3é®é¢") |
| | | @Excel(name = "1 ææ 2宣æ 3é®é¢ ") |
| | | private Long type; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @ApiModelProperty(value = "ç¶ID") |
| | | @Excel(name = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @ApiModelProperty(value = "GUID") |
| | | @Excel(name = "GUID") |
| | | private String guid; |
| | | |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty(value = "pageNum") |
| | | @Excel(name = "pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty(value = "pageSize") |
| | | @Excel(name = "pageSize") |
| | | private Integer pageSize; |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * ææ æ ç¾å¯¹è±¡ ivr_liba_target_tag |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaTargetTag", description = "ææ æ ç¾å¯¹è±¡") |
| | | public class IvrLibaTargetTag extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long id; |
| | | |
| | | /** |
| | | * æ ç¾åç±»ID |
| | | */ |
| | | @ApiModelProperty(value = "æ ç¾åç±»ID") |
| | | @Excel(name = " æ ç¾åç±»ID ") |
| | | private Long tagcategoryid; |
| | | |
| | | /** |
| | | * æ ç¾ID |
| | | */ |
| | | @ApiModelProperty(value = "æ ç¾ID") |
| | | @Excel(name = " æ ç¾ID ") |
| | | private Long tagid; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(value = "æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** |
| | | * æ ç¾ID |
| | | */ |
| | | @ApiModelProperty(value = "æ ç¾ID") |
| | | @Excel(name = "æ ç¾ID ") |
| | | private Long targetid; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @ApiModelProperty(value = "ç¶ID") |
| | | @Excel(name = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @ApiModelProperty(value = "GUID") |
| | | @Excel(name = "GUID") |
| | | private String guid; |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ æ ç¾å¯¹è±¡ ivr_liba_target_tag |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaTargetTagVO", description = "ææ æ ç¾å¯¹è±¡VO") |
| | | public class IvrLibaTargetTagVO extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long id; |
| | | |
| | | /** |
| | | * æ ç¾åç±»ID |
| | | */ |
| | | @ApiModelProperty(value = "æ ç¾åç±»ID") |
| | | @Excel(name = " æ ç¾åç±»ID ") |
| | | private Long tagcategoryid; |
| | | |
| | | /** |
| | | * æ ç¾ID |
| | | */ |
| | | @ApiModelProperty(value = "æ ç¾ID") |
| | | @Excel(name = " æ ç¾ID ") |
| | | private Long tagid; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(value = "æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** |
| | | * æ ç¾ID |
| | | */ |
| | | @ApiModelProperty(value = "æ ç¾ID") |
| | | @Excel(name = "æ ç¾ID ") |
| | | private Long targetid; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @ApiModelProperty(value = "ç¶ID") |
| | | @Excel(name = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @ApiModelProperty(value = "GUID") |
| | | @Excel(name = "GUID") |
| | | private String guid; |
| | | |
| | | /** |
| | | * æ ç¾åç§° |
| | | */ |
| | | @ApiModelProperty(value = "æ ç¾åç§°") |
| | | @Excel(name = "æ ç¾åç§°") |
| | | private List<BaseTag> tagList; |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ åºå¯¹è±¡è¿å IvrLibaTargetVO |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-14 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaTargetVO", description = "ææ åºå¯¹è±¡è¿å") |
| | | public class IvrLibaTargetVO { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "主é®") |
| | | private Long targetID; |
| | | |
| | | /** |
| | | * åç»ID |
| | | */ |
| | | @Excel(name = "åç»ID") |
| | | @ApiModelProperty(value = "åç»ID") |
| | | private String groupid; |
| | | |
| | | /** |
| | | * ææ ç±»å |
| | | */ |
| | | @Excel(name = "ææ ç±»å") |
| | | @ApiModelProperty(value = "ææ ç±»å") |
| | | private String targettype; |
| | | |
| | | /** |
| | | * ææ åç§° |
| | | */ |
| | | @Excel(name = "ææ åç§°") |
| | | @ApiModelProperty(value = "ææ åç§°") |
| | | private String targetname; |
| | | |
| | | /** |
| | | * ææ æè¿° |
| | | */ |
| | | @Excel(name = "ææ æè¿°") |
| | | @ApiModelProperty(value = "ææ æè¿°") |
| | | private String targetdesc; |
| | | |
| | | /** |
| | | * è¯è¨ |
| | | */ |
| | | @Excel(name = "è¯è¨") |
| | | @ApiModelProperty(value = "è¯è¨") |
| | | private String language; |
| | | |
| | | /** |
| | | * çæ¬ |
| | | */ |
| | | @Excel(name = "çæ¬") |
| | | @ApiModelProperty(value = "çæ¬") |
| | | private String version; |
| | | |
| | | /** |
| | | * å¼ç±»åï¼1 é项 2 ææ¬ 3 æ°å¼ï¼ |
| | | */ |
| | | @ApiModelProperty(value = "å¼ç±»åï¼1 é项 2 ææ¬ 3 æ°å¼ï¼") |
| | | @Excel(name = "å¼ç±»å", readConverterExp = "1=,é=项,2=,æ=æ¬,3=,æ°=å¼") |
| | | private Long isenable; |
| | | |
| | | /** |
| | | * æ¯å¦å¼å¸¸æ è¯ |
| | | */ |
| | | @Excel(name = "æ¯å¦å¼å¸¸æ è¯") |
| | | @ApiModelProperty(value = "æ¯å¦å¼å¸¸æ è¯") |
| | | private Long isabnormal; |
| | | |
| | | /** |
| | | * é¢è¦éå¼ä¸é |
| | | */ |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | @ApiModelProperty(value = "é¢è¦éå¼ä¸é") |
| | | private Long warnup; |
| | | |
| | | /** |
| | | * é¢è¦éå¼ä¸é |
| | | */ |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | @ApiModelProperty(value = "é¢è¦éå¼ä¸é") |
| | | private Long warndown; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @Excel(name = " æºæID ") |
| | | @ApiModelProperty(value = "æºæID") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @Excel(name = "ç¶ID") |
| | | @ApiModelProperty(value = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @Excel(name = "GUID") |
| | | @ApiModelProperty(value = "GUID") |
| | | private String guid; |
| | | |
| | | /** |
| | | * åç±»id |
| | | */ |
| | | @Excel(name = "åç±»id") |
| | | @ApiModelProperty(value = "åç±»id") |
| | | private Long assortid; |
| | | |
| | | /** |
| | | * æ¯å¦å¯ç¨ |
| | | */ |
| | | @Excel(name = "æ¯å¦å¯ç¨") |
| | | @ApiModelProperty(value = "æ¯å¦å¯ç¨") |
| | | private String isAvailable; |
| | | |
| | | /** |
| | | * éç¨ç¾ç
|
| | | */ |
| | | @Excel(name = "éç¨ç¾ç
") |
| | | @ApiModelProperty(value = "éç¨ç¾ç
") |
| | | private String suitDisease; |
| | | |
| | | |
| | | /** |
| | | * éç¨æ¹å¼ |
| | | */ |
| | | @Excel(name = "éç¨æ¹å¼") |
| | | @ApiModelProperty(value = "éç¨æ¹å¼") |
| | | private String suitWay; |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty(value = "pageNum") |
| | | @Excel(name = "pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty(value = "pageSize") |
| | | @Excel(name = "pageSize") |
| | | private Integer pageSize; |
| | | |
| | | @ApiModelProperty(value = "æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤") |
| | | private Integer isoperation; |
| | | |
| | | @ApiModelProperty(value = "ææ é项éå") |
| | | private List<IvrLibaTargetoption> targetoptionList; |
| | | |
| | | @ApiModelProperty(value = "æ ç¾éå") |
| | | private List<BaseTag> baseTagList; |
| | | |
| | | } |
| | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(name = "主é®") |
| | | @ApiModelProperty(value = "主é®") |
| | | private Long targetoptionid; |
| | | |
| | | @ApiModelProperty(name = "ææ ID") |
| | | @ApiModelProperty(value = "ææ ID") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long targetid; |
| | | |
| | | @ApiModelProperty(name = "ææ ç±»å") |
| | | @ApiModelProperty(value = "ææ ç±»å") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targettype; |
| | | |
| | | /** |
| | | * ç±»å«åç§° |
| | | */ |
| | | @ApiModelProperty(name = "ç±»å«åç§°") |
| | | @ApiModelProperty(value = "ç±»å«åç§°") |
| | | @Excel(name = "ç±»å«åç§°") |
| | | private String categoryName; |
| | | |
| | | @ApiModelProperty(name = "ææ å¼") |
| | | @ApiModelProperty(value = "ææ å¼") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetvalue; |
| | | |
| | | @ApiModelProperty(name = "æ£å") |
| | | @ApiModelProperty(value = "æ£å") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetregex; |
| | | |
| | | @ApiModelProperty(name = "é项æè¿°") |
| | | @ApiModelProperty(value = "é项æè¿°") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String optiondesc; |
| | | |
| | | @ApiModelProperty(name = "è¯è¨") |
| | | @ApiModelProperty(value = "è¯è¨") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | |
| | | @ApiModelProperty(name = "çæ¬å·") |
| | | @ApiModelProperty(value = "çæ¬å·") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long version; |
| | | |
| | | @ApiModelProperty(name = "åç»ID") |
| | | @ApiModelProperty(value = "åç»ID") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String groupid; |
| | | |
| | | /** |
| | | * æ¯å¦å¼å¸¸æ è¯ |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦å¼å¸¸æ è¯") |
| | | @ApiModelProperty(value = "æ¯å¦å¼å¸¸æ è¯") |
| | | @Excel(name = "æ¯å¦å¼å¸¸æ è¯") |
| | | private Long isabnormal; |
| | | |
| | | /** |
| | | * é¢è¦éå¼ä¸é |
| | | */ |
| | | @ApiModelProperty(name = "é¢è¦éå¼ä¸é") |
| | | @ApiModelProperty(value = "é¢è¦éå¼ä¸é") |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | private Long warnup; |
| | | |
| | | /** |
| | | * é¢è¦éå¼ä¸é |
| | | */ |
| | | @ApiModelProperty(name = "é¢è¦éå¼ä¸é") |
| | | @ApiModelProperty(value = "é¢è¦éå¼ä¸é") |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | private Long warndown; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * ç¶ID |
| | | */ |
| | | @ApiModelProperty(name = "ç¶ID") |
| | | @ApiModelProperty(value = "ç¶ID") |
| | | @Excel(name = "ç¶ID") |
| | | private Long pid; |
| | | |
| | | /** |
| | | * GUID |
| | | */ |
| | | @ApiModelProperty(name = "GUID") |
| | | @ApiModelProperty(value = "GUID") |
| | | @Excel(name = "GUID") |
| | | private String guid; |
| | | |
| | | @ApiModelProperty(value = "æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤") |
| | | private Integer isoperation; |
| | | |
| | | @ApiModelProperty(value = "æ»æ¡æ°") |
| | | private Integer allitems; |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty(name = "pageNum") |
| | | @ApiModelProperty(value = "pageNum") |
| | | @Excel(name = "pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty(name = "pageSize") |
| | | @ApiModelProperty(value = "pageSize") |
| | | @Excel(name = "pageSize") |
| | | private Integer pageSize; |
| | | |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºå¯¹è±¡ ivr_liba_template |
| | | * |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public class IvrLibaTemplate extends BaseEntity |
| | | { |
| | | @Data |
| | | @ApiModel(value = "IvrLibaTemplate", description = "è¯æ¯æ¨¡æ¿åºå¯¹è±¡") |
| | | public class IvrLibaTemplate extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "模æ¿id") |
| | | private String templateID; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | @ApiModelProperty(value = "模æ¿åç§°") |
| | | private String templateName; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | @ApiModelProperty(value = "silencetime") |
| | | private Long silencetime; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | @ApiModelProperty(value = "slienceRepeatTimes") |
| | | private Long slienceRepeatTimes; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "nomatchRepeatTimes") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long nomatchRepeatTimes; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "firstQuestionNum") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long firstQuestionNum; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "åç»ä»¶") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submodule; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "è¯è¨") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "æè¿°") |
| | | @Excel(name = "${note}", readConverterExp = "$column.readConverterExp()") |
| | | private String note; |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "isEnable") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isEnable; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isDel; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "æ·»å 人") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String addUserID; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "æ·»å æ¶é´") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date addTime; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "ä¿®æ¹äººid") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String modifyUserID; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "ä¿®æ¹æ¶é´") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date modifyTime; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "åç»id") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String groupID; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "æ ç¾ä¿¡æ¯") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String labelInfo; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "模æ¿id") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submoduleID; |
| | | |
| | | /** ææ¥ç±»å 0.è¯é³ä¼å
1.æåä¼å
*/ |
| | | /** |
| | | * ææ¥ç±»å 0.è¯é³ä¼å
1.æåä¼å
|
| | | */ |
| | | @ApiModelProperty(value = "ææ¥ç±»å 0.è¯é³ä¼å
1.æåä¼å
") |
| | | @Excel(name = "ææ¥ç±»å 0.è¯é³ä¼å
1.æåä¼å
") |
| | | private Long playType; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "icd10code") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String icd10code; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "icd10codename") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String icd10codename; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "atuoTaskDayOffset") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long atuoTaskDayOffset; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "é¨é¨id") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String DeptIds; |
| | | private String deptIds; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "é¨é¨åç§°") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String DeptNames; |
| | | private String deptNames; |
| | | |
| | | /** $column.columnComment */ |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "fKsdm") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String fKsdm; |
| | | |
| | | /** å 餿 è®° */ |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** æºæID */ |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(value = "æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | public void setTemplateID(String templateID) |
| | | { |
| | | this.templateID = templateID; |
| | | } |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(value = "åç±»id") |
| | | @Excel(name = " åç±»id ") |
| | | private Long assortid; |
| | | |
| | | public String getTemplateID() |
| | | { |
| | | return templateID; |
| | | } |
| | | public void setTemplateName(String templateName) |
| | | { |
| | | this.templateName = templateName; |
| | | } |
| | | |
| | | public String getTemplateName() |
| | | { |
| | | return templateName; |
| | | } |
| | | public void setSilencetime(Long silencetime) |
| | | { |
| | | this.silencetime = silencetime; |
| | | } |
| | | |
| | | public Long getSilencetime() |
| | | { |
| | | return silencetime; |
| | | } |
| | | public void setSlienceRepeatTimes(Long slienceRepeatTimes) |
| | | { |
| | | this.slienceRepeatTimes = slienceRepeatTimes; |
| | | } |
| | | |
| | | public Long getSlienceRepeatTimes() |
| | | { |
| | | return slienceRepeatTimes; |
| | | } |
| | | public void setNomatchRepeatTimes(Long nomatchRepeatTimes) |
| | | { |
| | | this.nomatchRepeatTimes = nomatchRepeatTimes; |
| | | } |
| | | |
| | | public Long getNomatchRepeatTimes() |
| | | { |
| | | return nomatchRepeatTimes; |
| | | } |
| | | public void setFirstQuestionNum(Long firstQuestionNum) |
| | | { |
| | | this.firstQuestionNum = firstQuestionNum; |
| | | } |
| | | |
| | | public Long getFirstQuestionNum() |
| | | { |
| | | return firstQuestionNum; |
| | | } |
| | | public void setSubmodule(String submodule) |
| | | { |
| | | this.submodule = submodule; |
| | | } |
| | | |
| | | public String getSubmodule() |
| | | { |
| | | return submodule; |
| | | } |
| | | public void setLanguage(String language) |
| | | { |
| | | this.language = language; |
| | | } |
| | | |
| | | public String getNote() |
| | | { |
| | | return note; |
| | | } |
| | | public void setNote(String note) |
| | | { |
| | | this.note = note; |
| | | } |
| | | |
| | | public String getLanguage() |
| | | { |
| | | return language; |
| | | } |
| | | public void setIsEnable(Long isEnable) |
| | | { |
| | | this.isEnable = isEnable; |
| | | } |
| | | |
| | | public Long getIsEnable() |
| | | { |
| | | return isEnable; |
| | | } |
| | | public void setIsDel(Long isDel) |
| | | { |
| | | this.isDel = isDel; |
| | | } |
| | | |
| | | public Long getIsDel() |
| | | { |
| | | return isDel; |
| | | } |
| | | public void setAddUserID(String addUserID) |
| | | { |
| | | this.addUserID = addUserID; |
| | | } |
| | | |
| | | public String getAddUserID() |
| | | { |
| | | return addUserID; |
| | | } |
| | | public void setAddTime(Date addTime) |
| | | { |
| | | this.addTime = addTime; |
| | | } |
| | | |
| | | public Date getAddTime() |
| | | { |
| | | return addTime; |
| | | } |
| | | public void setModifyUserID(String modifyUserID) |
| | | { |
| | | this.modifyUserID = modifyUserID; |
| | | } |
| | | |
| | | public String getModifyUserID() |
| | | { |
| | | return modifyUserID; |
| | | } |
| | | public void setModifyTime(Date modifyTime) |
| | | { |
| | | this.modifyTime = modifyTime; |
| | | } |
| | | |
| | | public Date getModifyTime() |
| | | { |
| | | return modifyTime; |
| | | } |
| | | public void setGroupID(String groupID) |
| | | { |
| | | this.groupID = groupID; |
| | | } |
| | | |
| | | public String getGroupID() |
| | | { |
| | | return groupID; |
| | | } |
| | | public void setLabelInfo(String labelInfo) |
| | | { |
| | | this.labelInfo = labelInfo; |
| | | } |
| | | |
| | | public String getLabelInfo() |
| | | { |
| | | return labelInfo; |
| | | } |
| | | public void setSubmoduleID(String submoduleID) |
| | | { |
| | | this.submoduleID = submoduleID; |
| | | } |
| | | |
| | | public String getSubmoduleID() |
| | | { |
| | | return submoduleID; |
| | | } |
| | | public void setPlayType(Long playType) |
| | | { |
| | | this.playType = playType; |
| | | } |
| | | |
| | | public Long getPlayType() |
| | | { |
| | | return playType; |
| | | } |
| | | public void setIcd10code(String icd10code) |
| | | { |
| | | this.icd10code = icd10code; |
| | | } |
| | | |
| | | public String getIcd10code() |
| | | { |
| | | return icd10code; |
| | | } |
| | | public void setIcd10codename(String icd10codename) |
| | | { |
| | | this.icd10codename = icd10codename; |
| | | } |
| | | |
| | | public String getIcd10codename() |
| | | { |
| | | return icd10codename; |
| | | } |
| | | public void setAtuoTaskDayOffset(Long atuoTaskDayOffset) |
| | | { |
| | | this.atuoTaskDayOffset = atuoTaskDayOffset; |
| | | } |
| | | |
| | | public Long getAtuoTaskDayOffset() |
| | | { |
| | | return atuoTaskDayOffset; |
| | | } |
| | | public void setDeptIds(String DeptIds) |
| | | { |
| | | this.DeptIds = DeptIds; |
| | | } |
| | | |
| | | public String getDeptIds() |
| | | { |
| | | return DeptIds; |
| | | } |
| | | public void setDeptNames(String DeptNames) |
| | | { |
| | | this.DeptNames = DeptNames; |
| | | } |
| | | |
| | | public String getDeptNames() |
| | | { |
| | | return DeptNames; |
| | | } |
| | | public void setfKsdm(String fKsdm) |
| | | { |
| | | this.fKsdm = fKsdm; |
| | | } |
| | | |
| | | public String getfKsdm() |
| | | { |
| | | return fKsdm; |
| | | } |
| | | public void setDelFlag(String delFlag) |
| | | { |
| | | this.delFlag = delFlag; |
| | | } |
| | | |
| | | public String getDelFlag() |
| | | { |
| | | return delFlag; |
| | | } |
| | | public void setIsupload(Long isupload) |
| | | { |
| | | this.isupload = isupload; |
| | | } |
| | | |
| | | public Long getIsupload() |
| | | { |
| | | return isupload; |
| | | } |
| | | public void setUploadTime(Date uploadTime) |
| | | { |
| | | this.uploadTime = uploadTime; |
| | | } |
| | | |
| | | public Date getUploadTime() |
| | | { |
| | | return uploadTime; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("templateID", getTemplateID()) |
| | | .append("templateName", getTemplateName()) |
| | | .append("silencetime", getSilencetime()) |
| | | .append("slienceRepeatTimes", getSlienceRepeatTimes()) |
| | | .append("nomatchRepeatTimes", getNomatchRepeatTimes()) |
| | | .append("firstQuestionNum", getFirstQuestionNum()) |
| | | .append("submodule", getSubmodule()) |
| | | .append("language", getLanguage()) |
| | | .append("note", getNote()) |
| | | .append("isEnable", getIsEnable()) |
| | | .append("isDel", getIsDel()) |
| | | .append("addUserID", getAddUserID()) |
| | | .append("addTime", getAddTime()) |
| | | .append("modifyUserID", getModifyUserID()) |
| | | .append("modifyTime", getModifyTime()) |
| | | .append("groupID", getGroupID()) |
| | | .append("labelInfo", getLabelInfo()) |
| | | .append("submoduleID", getSubmoduleID()) |
| | | .append("playType", getPlayType()) |
| | | .append("icd10code", getIcd10code()) |
| | | .append("icd10codename", getIcd10codename()) |
| | | .append("atuoTaskDayOffset", getAtuoTaskDayOffset()) |
| | | .append("DeptIds", getDeptIds()) |
| | | .append("DeptNames", getDeptNames()) |
| | | .append("fKsdm", getfKsdm()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("orgid", getOrgid()) |
| | | .toString(); |
| | | } |
| | | } |
| | |
| | | |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaTemplatescript", description = "è¯æ¯æ¨¡æ¿åºè¯æ¯å¯¹è±¡") |
| | | public class IvrLibaTemplatescript extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "templateQuestionID") |
| | | private String templateQuestionID; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "templateQuestionNum") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long templateQuestionNum; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "templateID") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templateID; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "questionID") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionID; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "questionPoint") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionPoint; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "questionText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "questionVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "noMatchText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noMatchText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "noMatchVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noMatchVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "slienceText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String slienceText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "slienceVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String slienceVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "submoduleText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submoduleText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "submoduleVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submoduleVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "noClearlyText") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noClearlyText; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "noClearlyVoice") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noClearlyVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "ç±»å«å") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String categoryName; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "ææ é项") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetOptions; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "è¯è¨") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | |
| | | /** $column.columnComment */ |
| | | @ApiModelProperty(value = "playWavOnly") |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long playWavOnly; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isEnable; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isDel; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | public void setTemplateQuestionID(String templateQuestionID) |
| | | { |
| | | this.templateQuestionID = templateQuestionID; |
| | | } |
| | | |
| | | public String getTemplateQuestionID() |
| | | { |
| | | return templateQuestionID; |
| | | } |
| | | public void setTemplateQuestionNum(Long templateQuestionNum) |
| | | { |
| | | this.templateQuestionNum = templateQuestionNum; |
| | | } |
| | | |
| | | public Long getTemplateQuestionNum() |
| | | { |
| | | return templateQuestionNum; |
| | | } |
| | | public void setTemplateID(String templateID) |
| | | { |
| | | this.templateID = templateID; |
| | | } |
| | | |
| | | public String getTemplateID() |
| | | { |
| | | return templateID; |
| | | } |
| | | public void setQuestionID(String questionID) |
| | | { |
| | | this.questionID = questionID; |
| | | } |
| | | |
| | | public String getQuestionID() |
| | | { |
| | | return questionID; |
| | | } |
| | | public void setQuestionPoint(String questionPoint) |
| | | { |
| | | this.questionPoint = questionPoint; |
| | | } |
| | | |
| | | public String getQuestionPoint() |
| | | { |
| | | return questionPoint; |
| | | } |
| | | public void setQuestionText(String questionText) |
| | | { |
| | | this.questionText = questionText; |
| | | } |
| | | |
| | | public String getQuestionText() |
| | | { |
| | | return questionText; |
| | | } |
| | | public void setQuestionVoice(String questionVoice) |
| | | { |
| | | this.questionVoice = questionVoice; |
| | | } |
| | | |
| | | public String getQuestionVoice() |
| | | { |
| | | return questionVoice; |
| | | } |
| | | public void setNoMatchText(String noMatchText) |
| | | { |
| | | this.noMatchText = noMatchText; |
| | | } |
| | | |
| | | public String getNoMatchText() |
| | | { |
| | | return noMatchText; |
| | | } |
| | | public void setNoMatchVoice(String noMatchVoice) |
| | | { |
| | | this.noMatchVoice = noMatchVoice; |
| | | } |
| | | |
| | | public String getNoMatchVoice() |
| | | { |
| | | return noMatchVoice; |
| | | } |
| | | public void setSlienceText(String slienceText) |
| | | { |
| | | this.slienceText = slienceText; |
| | | } |
| | | |
| | | public String getSlienceText() |
| | | { |
| | | return slienceText; |
| | | } |
| | | public void setSlienceVoice(String slienceVoice) |
| | | { |
| | | this.slienceVoice = slienceVoice; |
| | | } |
| | | |
| | | public String getSlienceVoice() |
| | | { |
| | | return slienceVoice; |
| | | } |
| | | public void setSubmoduleText(String submoduleText) |
| | | { |
| | | this.submoduleText = submoduleText; |
| | | } |
| | | |
| | | public String getSubmoduleText() |
| | | { |
| | | return submoduleText; |
| | | } |
| | | public void setSubmoduleVoice(String submoduleVoice) |
| | | { |
| | | this.submoduleVoice = submoduleVoice; |
| | | } |
| | | |
| | | public String getSubmoduleVoice() |
| | | { |
| | | return submoduleVoice; |
| | | } |
| | | public void setNoClearlyText(String noClearlyText) |
| | | { |
| | | this.noClearlyText = noClearlyText; |
| | | } |
| | | |
| | | public String getNoClearlyText() |
| | | { |
| | | return noClearlyText; |
| | | } |
| | | public void setNoClearlyVoice(String noClearlyVoice) |
| | | { |
| | | this.noClearlyVoice = noClearlyVoice; |
| | | } |
| | | |
| | | public String getNoClearlyVoice() |
| | | { |
| | | return noClearlyVoice; |
| | | } |
| | | public void setCategoryName(String categoryName) |
| | | { |
| | | this.categoryName = categoryName; |
| | | } |
| | | |
| | | public String getCategoryName() |
| | | { |
| | | return categoryName; |
| | | } |
| | | public void setTargetOptions(String targetOptions) |
| | | { |
| | | this.targetOptions = targetOptions; |
| | | } |
| | | |
| | | public String getTargetOptions() |
| | | { |
| | | return targetOptions; |
| | | } |
| | | public void setLanguage(String language) |
| | | { |
| | | this.language = language; |
| | | } |
| | | |
| | | public String getLanguage() |
| | | { |
| | | return language; |
| | | } |
| | | public void setPlayWavOnly(Long playWavOnly) |
| | | { |
| | | this.playWavOnly = playWavOnly; |
| | | } |
| | | |
| | | public Long getPlayWavOnly() |
| | | { |
| | | return playWavOnly; |
| | | } |
| | | public void setIsEnable(Long isEnable) |
| | | { |
| | | this.isEnable = isEnable; |
| | | } |
| | | |
| | | public Long getIsEnable() |
| | | { |
| | | return isEnable; |
| | | } |
| | | public void setIsDel(Long isDel) |
| | | { |
| | | this.isDel = isDel; |
| | | } |
| | | |
| | | public Long getIsDel() |
| | | { |
| | | return isDel; |
| | | } |
| | | public void setDelFlag(String delFlag) |
| | | { |
| | | this.delFlag = delFlag; |
| | | } |
| | | |
| | | public String getDelFlag() |
| | | { |
| | | return delFlag; |
| | | } |
| | | public void setIsupload(Long isupload) |
| | | { |
| | | this.isupload = isupload; |
| | | } |
| | | |
| | | public Long getIsupload() |
| | | { |
| | | return isupload; |
| | | } |
| | | public void setUploadTime(Date uploadTime) |
| | | { |
| | | this.uploadTime = uploadTime; |
| | | } |
| | | |
| | | public Date getUploadTime() |
| | | { |
| | | return uploadTime; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("templateQuestionID", getTemplateQuestionID()) |
| | | .append("templateQuestionNum", getTemplateQuestionNum()) |
| | | .append("templateID", getTemplateID()) |
| | | .append("questionID", getQuestionID()) |
| | | .append("questionPoint", getQuestionPoint()) |
| | | .append("questionText", getQuestionText()) |
| | | .append("questionVoice", getQuestionVoice()) |
| | | .append("noMatchText", getNoMatchText()) |
| | | .append("noMatchVoice", getNoMatchVoice()) |
| | | .append("slienceText", getSlienceText()) |
| | | .append("slienceVoice", getSlienceVoice()) |
| | | .append("submoduleText", getSubmoduleText()) |
| | | .append("submoduleVoice", getSubmoduleVoice()) |
| | | .append("noClearlyText", getNoClearlyText()) |
| | | .append("noClearlyVoice", getNoClearlyVoice()) |
| | | .append("categoryName", getCategoryName()) |
| | | .append("targetOptions", getTargetOptions()) |
| | | .append("language", getLanguage()) |
| | | .append("playWavOnly", getPlayWavOnly()) |
| | | .append("isEnable", getIsEnable()) |
| | | .append("isDel", getIsDel()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("orgid", getOrgid()) |
| | | .toString(); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | |
| | | /** |
| | | * ææ æ¨¡æ¿å类对象 ivr_liba_templatetarget_assort |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "IvrLibaTemplatetargetAssort", description = "ææ æ¨¡æ¿å类对象") |
| | | public class IvrLibaTemplatetargetAssort extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * $column.columnComment |
| | | */ |
| | | @ApiModelProperty(value = "主é®") |
| | | private Long id; |
| | | |
| | | /** |
| | | * ææ åç±»åç§° |
| | | */ |
| | | @Excel(name = "ææ åç±»åç§°") |
| | | @ApiModelProperty(value = "ææ åç±»åç§°") |
| | | private String indexAssortName; |
| | | |
| | | /** |
| | | * å é¤ |
| | | */ |
| | | @ApiModelProperty(value = "å é¤") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ç¶id |
| | | */ |
| | | @Excel(name = "ç¶id") |
| | | @ApiModelProperty(value = "ç¶id") |
| | | private Long pid; |
| | | |
| | | |
| | | } |
| | |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty(name = "pageNum") |
| | | @ApiModelProperty(value = "pageNum") |
| | | @Excel(name = "pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty(name = "pageSize") |
| | | @ApiModelProperty(value = "pageSize") |
| | | @Excel(name = "pageSize") |
| | | private Integer pageSize; |
| | | |
| | |
| | | @Excel(name = " æ ç¾ ", cellType = Excel.ColumnType.STRING) |
| | | private String tag; |
| | | |
| | | /** |
| | | * æ ç¾ |
| | | */ |
| | | @ApiModelProperty("æ ç¾id") |
| | | @Excel(name = " æ ç¾id ", cellType = Excel.ColumnType.STRING) |
| | | private Long tagid; |
| | | |
| | | @ApiModelProperty("æ ç¾éå") |
| | | private List<String> tagList; |
| | | private List<PatArchivetag> tagList; |
| | | |
| | | /** |
| | | * æ ç¾ |
| | |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty(name = "pageNum") |
| | | @ApiModelProperty(value = "pageNum") |
| | | @Excel(name = "pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty(name = "pageSize") |
| | | @ApiModelProperty(value = "pageSize") |
| | | @Excel(name = "pageSize") |
| | | private Integer pageSize; |
| | | |
ÎļþÃû´Ó smartor/src/main/java/com/smartor/domain/PatArchiveAndTag.java ÐÞ¸Ä |
| | |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @ApiModel(value = "PatArchive", description = "æ£è
æ¡£æ¡å¯¹è±¡") |
| | | @ApiModel(value = "PatArchiveVO", description = "æ£è
æ¡£æ¡å¯¹è±¡") |
| | | @Data |
| | | public class PatArchiveAndTag extends BaseEntity { |
| | | public class PatArchiveVO extends BaseEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | |
| | | private String tag; |
| | | |
| | | @ApiModelProperty("æ ç¾éå") |
| | | List<PatArchivetag> patArchivetags; |
| | | List<PatArchivetag> tagList; |
| | | |
| | | @ApiModelProperty(value = "æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤") |
| | | private Integer isoperation; |
| | | |
| | | @Override |
| | | public String toString() { |
| | |
| | | /** |
| | | * pageNum |
| | | */ |
| | | @ApiModelProperty(name = "pageNum") |
| | | @ApiModelProperty(value = "pageNum") |
| | | @Excel(name = "pageNum") |
| | | private Integer pageNum; |
| | | |
| | | /** |
| | | * pageSize |
| | | */ |
| | | @ApiModelProperty(name = "pageSize") |
| | | @ApiModelProperty(value = "pageSize") |
| | | @Excel(name = "pageSize") |
| | | private Integer pageSize; |
| | | |
| | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long id; |
| | | |
| | | /** |
| | | * æ ç¾åç±»ID |
| | | */ |
| | | @ApiModelProperty(name = "æ ç¾åç±»ID") |
| | | @ApiModelProperty(value = "æ ç¾åç±»ID") |
| | | private Long tagcategoryid; |
| | | |
| | | /** |
| | | * æ ç¾ID |
| | | */ |
| | | @ApiModelProperty(name = "æ ç¾ID") |
| | | @ApiModelProperty(value = "æ ç¾ID") |
| | | private Long tagid; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | @ApiModelProperty(name = "æ ç¾åç§°") |
| | | /** |
| | | * æ ç¾åç§°(ä½ä¸ºå
¥è¿å使ç¨ï¼è¡¨ä¸æ²¡æ) |
| | | */ |
| | | @ApiModelProperty(value = "æ ç¾åç§°") |
| | | private String tagname; |
| | | |
| | | /** |
| | | * æ¡£æ¡ID |
| | | */ |
| | | @ApiModelProperty(name = "æ¡£æ¡ID") |
| | | @ApiModelProperty(value = "æ¡£æ¡ID") |
| | | private Long patid; |
| | | |
| | | /** |
| | | * æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤")(ä½ä¸ºå
¥è¿å使ç¨ï¼è¡¨ä¸æ²¡æ) |
| | | */ |
| | | @ApiModelProperty(value = "æ¯å¦å卿ä½ï¼1 æ°å¢ 2ä¿®æ¹ 3å é¤") |
| | | private Integer isoperation; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("tagname", getTagname()).append("id", getId()).append("tagcategoryid", getTagcategoryid()).append("tagid", getTagid()).append("orgid", getOrgid()).append("delFlag", getDelFlag()).append("updateBy", getUpdateBy()).append("updateTime", getUpdateTime()).append("createBy", getCreateBy()).append("createTime", getCreateTime()).append("isupload", getIsupload()).append("uploadTime", getUploadTime()).append("patid", getPatid()).toString(); |
| | |
| | | // /** |
| | | // * èªå¢ID |
| | | // */ |
| | | // @ApiModelProperty(name = "èªå¢ID") |
| | | // @ApiModelProperty(value = "èªå¢ID") |
| | | // private Long id; |
| | | // |
| | | // /** |
| | | // * æ ç¾åç±»ID |
| | | // */ |
| | | // @ApiModelProperty(name = "æ ç¾åç±»ID") |
| | | // @ApiModelProperty(value = "æ ç¾åç±»ID") |
| | | // private Long tagcategoryid; |
| | | // |
| | | // /** |
| | | // * æ ç¾ID |
| | | // */ |
| | | // @ApiModelProperty(name = "æ ç¾ID") |
| | | // @ApiModelProperty(value = "æ ç¾ID") |
| | | // private Long tagid; |
| | | // |
| | | // /** |
| | | // * æºæID |
| | | // */ |
| | | // @ApiModelProperty(name = "æºæID") |
| | | // @ApiModelProperty(value = "æºæID") |
| | | // private String orgid; |
| | | // |
| | | // /** |
| | | // * å 餿 è®° |
| | | // */ |
| | | // @ApiModelProperty(name = "å 餿 è®°") |
| | | // @ApiModelProperty(value = "å 餿 è®°") |
| | | // private String delFlag; |
| | | // |
| | | // /** |
| | | // * ä¸ä¼ æ è®° |
| | | // */ |
| | | // @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | // @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | // private Long isupload; |
| | | // |
| | | // /** |
| | | // * ä¸ä¼ æ¶é´ |
| | | // */ |
| | | // @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | // @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | // @JsonFormat(pattern = "yyyy-MM-dd") |
| | | // @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | // private Date uploadTime; |
| | | |
| | | @ApiModelProperty(name = "æ ç¾åç§°") |
| | | @ApiModelProperty(value = "æ ç¾åç§°") |
| | | private String tagname; |
| | | |
| | | /** |
| | | * æ¡£æ¡ID |
| | | */ |
| | | @ApiModelProperty(name = "æ¡£æ¡ID") |
| | | @ApiModelProperty(value = "æ¡£æ¡ID") |
| | | private Long patid; |
| | | |
| | | @ApiModelProperty("æ£è
æ°é") |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long bloodsugarid; |
| | | |
| | | /** æµæ°´å· */ |
| | | @ApiModelProperty(name = "æµæ°´å·") |
| | | @ApiModelProperty(value = "æµæ°´å·") |
| | | @Excel(name = " æµæ°´å· ") |
| | | private String serialnum; |
| | | |
| | | /** è®°å½æ¶é´ */ |
| | | @ApiModelProperty(name = "è®°å½æ¶é´") |
| | | @ApiModelProperty(value = "è®°å½æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " è®°å½æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date recordtime; |
| | | |
| | | /** æºæID */ |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** æ¡£æ¡ID */ |
| | | @ApiModelProperty(name = "æ¡£æ¡ID") |
| | | @ApiModelProperty(value = "æ¡£æ¡ID") |
| | | @Excel(name = " æ¡£æ¡ID ") |
| | | private Long patid; |
| | | |
| | | /** æ°æ®ç±»å */ |
| | | @ApiModelProperty(name = "æ°æ®ç±»å") |
| | | @ApiModelProperty(value = "æ°æ®ç±»å") |
| | | @Excel(name = " æ°æ®ç±»å ") |
| | | private String typename; |
| | | |
| | | /** è¡ç³å¼ */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | @Excel(name = " è¡ç³å¼ ") |
| | | private BigDecimal sugarlevel; |
| | | |
| | | /** æ°æ®æ¥æº */ |
| | | @ApiModelProperty(name = "æ°æ®æ¥æº") |
| | | @ApiModelProperty(value = "æ°æ®æ¥æº") |
| | | @Excel(name = " æ°æ®æ¥æº ") |
| | | private String sourcename; |
| | | |
| | | /** 空è
¹è¡ç³ */ |
| | | @ApiModelProperty(name = "空è
¹è¡ç³") |
| | | @ApiModelProperty(value = "空è
¹è¡ç³") |
| | | @Excel(name = " 空è
¹è¡ç³ ") |
| | | private BigDecimal sugarlevelempty; |
| | | |
| | | /** å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£ */ |
| | | @ApiModelProperty(name = "å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£") |
| | | @ApiModelProperty(value = "å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£") |
| | | @Excel(name = " å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£ ") |
| | | private Long visittype; |
| | | |
| | | /** å°±è¯ID;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID */ |
| | | @Excel(name = " å°±è¯ID;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID ") |
| | | @ApiModelProperty(name = "å°±è¯ID;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID") |
| | | @ApiModelProperty(value = "å°±è¯ID;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID") |
| | | private Long visitid; |
| | | |
| | | public void setBloodsugarid(Long bloodsugarid) |
| | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long id; |
| | | |
| | | /** |
| | | * æµæ°´å· |
| | | */ |
| | | @Excel(name = " æµæ°´å· ") |
| | | @ApiModelProperty(name = "æµæ°´å·") |
| | | @ApiModelProperty(value = "æµæ°´å·") |
| | | private String serialnum; |
| | | |
| | | /** |
| | | * è®°å½æ¶é´ |
| | | */ |
| | | @ApiModelProperty(name = "è®°å½æ¶é´") |
| | | @ApiModelProperty(value = "è®°å½æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " è®°å½æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date recordtime; |
| | |
| | | /** |
| | | * æ°æ®ç±»å |
| | | */ |
| | | @ApiModelProperty(name = "æ°æ®ç±»å") |
| | | @ApiModelProperty(value = "æ°æ®ç±»å") |
| | | @Excel(name = " æ°æ®ç±»å ") |
| | | private String typename; |
| | | |
| | | /** |
| | | * æ¶ç¼©å |
| | | */ |
| | | @ApiModelProperty(name = "æ¶ç¼©å") |
| | | @ApiModelProperty(value = "æ¶ç¼©å") |
| | | @Excel(name = " æ¶ç¼©å ") |
| | | private BigDecimal systolicpressure; |
| | | |
| | | /** |
| | | * èå¼ å |
| | | */ |
| | | @ApiModelProperty(name = "èå¼ å") |
| | | @ApiModelProperty(value = "èå¼ å") |
| | | @Excel(name = " èå¼ å ") |
| | | private BigDecimal diastolicpressure; |
| | | |
| | | /** |
| | | * æ°æ®æ¥æº |
| | | */ |
| | | @ApiModelProperty(name = "æ°æ®æ¥æº") |
| | | @ApiModelProperty(value = "æ°æ®æ¥æº") |
| | | @Excel(name = " æ°æ®æ¥æº ") |
| | | private String sourcename; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | |
| | | /** |
| | | * æ¡£æ¡ID |
| | | */ |
| | | @ApiModelProperty(name = "æ¡£æ¡ID") |
| | | @ApiModelProperty(value = "æ¡£æ¡ID") |
| | | @Excel(name = " æ¡£æ¡ID ") |
| | | private Long patid; |
| | | |
| | | /** |
| | | * å¿ç;次/åé |
| | | */ |
| | | @ApiModelProperty(name = "å¿ç;次/åé") |
| | | @ApiModelProperty(value = "å¿ç;次/åé") |
| | | @Excel(name = " å¿ç;次/åé ") |
| | | private Long heartrate; |
| | | |
| | | /** |
| | | * å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£ |
| | | */ |
| | | @ApiModelProperty(name = "å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£") |
| | | @ApiModelProperty(value = "å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£") |
| | | @Excel(name = " å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£ ") |
| | | private Long visittype; |
| | | |
| | | /** |
| | | * å°±è¯ID;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID |
| | | */ |
| | | @ApiModelProperty(name = " å°±è¯ID;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID") |
| | | @ApiModelProperty(value = " å°±è¯ID;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID") |
| | | @Excel(name = " å°±è¯ID;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID ") |
| | | private Long visitid; |
| | | |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long id; |
| | | |
| | | /** æµæ°´å· */ |
| | | @ApiModelProperty(name = "æµæ°´å·") |
| | | @ApiModelProperty(value = "æµæ°´å·") |
| | | @Excel(name = " æµæ°´å· ") |
| | | private String serialnum; |
| | | |
| | | /** èèªéé */ |
| | | @ApiModelProperty(name = "èèªéé") |
| | | @ApiModelProperty(value = "èèªéé") |
| | | @Excel(name = " èèªéé ") |
| | | private BigDecimal fatweight; |
| | | |
| | | /** ä½é */ |
| | | @ApiModelProperty(name = "ä½é") |
| | | @ApiModelProperty(value = "ä½é") |
| | | @Excel(name = " ä½é ") |
| | | private BigDecimal bodyweight; |
| | | |
| | | /** è®°å½æ¶é´ */ |
| | | @ApiModelProperty(name = "è®°å½æ¶é´") |
| | | @ApiModelProperty(value = "è®°å½æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " è®°å½æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date recordtime; |
| | | |
| | | /** æºæID */ |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** æ¡£æ¡ID */ |
| | | @ApiModelProperty(name = "æ¡£æ¡ID") |
| | | @ApiModelProperty(value = "æ¡£æ¡ID") |
| | | @Excel(name = " æ¡£æ¡ID ") |
| | | private Long patid; |
| | | |
| | | /** æ°æ®æ¥æº */ |
| | | @ApiModelProperty(name = "æ°æ®æ¥æº") |
| | | @ApiModelProperty(value = "æ°æ®æ¥æº") |
| | | @Excel(name = " æ°æ®æ¥æº ") |
| | | private String sourcename; |
| | | |
| | | /** å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£ */ |
| | | @ApiModelProperty(name = "å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£") |
| | | @ApiModelProperty(value = "å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£") |
| | | @Excel(name = " å°±è¯ç±»å;1é¨è¯ 2ä½é¢ 3使£ ") |
| | | private Long visittype; |
| | | |
| | | /** å°±è¯;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID */ |
| | | @ApiModelProperty(name = "å°±è¯;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID") |
| | | @ApiModelProperty(value = "å°±è¯;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID") |
| | | @Excel(name = " å°±è¯;å°±è¯ç±»å为-1:åé¨è¯è®°å½ID 2:åä½é¢è®°å½ID 3;å使£è®°å½ID ") |
| | | private Long visitid; |
| | | |
| | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long topicid; |
| | | |
| | | |
| | | /** |
| | | * é¢ç® |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®") |
| | | @ApiModelProperty(value = "é¢ç®") |
| | | private String topic; |
| | | |
| | | /** |
| | | * é¢ç®code |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®code") |
| | | @ApiModelProperty(value = "é¢ç®code") |
| | | private String topiccode; |
| | | |
| | | |
| | | /** |
| | | * é¢ç®ç±»å;æä¸¾ 1.åé 2å¤é 3填空 |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®ç±»å;æä¸¾ 1.åé 2å¤é 3填空") |
| | | @ApiModelProperty(value = "é¢ç®ç±»å;æä¸¾ 1.åé 2å¤é 3填空") |
| | | private String topictype; |
| | | |
| | | /** |
| | | * ç±»å« |
| | | */ |
| | | @ApiModelProperty(name = "ç±»å«") |
| | | @ApiModelProperty(value = "ç±»å«") |
| | | private String tag; |
| | | |
| | | /** |
| | | * é项code |
| | | */ |
| | | @ApiModelProperty(name = "é项code") |
| | | @ApiModelProperty(value = "é项code") |
| | | private String optioncode; |
| | | |
| | | /** |
| | | * é项å
容 |
| | | */ |
| | | @ApiModelProperty(name = "é项å
容") |
| | | @ApiModelProperty(value = "é项å
容") |
| | | private String optioncontent; |
| | | |
| | | |
| | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long topicid; |
| | | |
| | | |
| | | /** |
| | | * é®å·ID |
| | | */ |
| | | @ApiModelProperty(name = "é®å·ID") |
| | | @ApiModelProperty(value = "é®å·ID") |
| | | private Long svyid; |
| | | |
| | | |
| | | /** |
| | | * é¢ç® |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®") |
| | | @ApiModelProperty(value = "é¢ç®") |
| | | @Excel(name = " é¢ç® ") |
| | | private String topic; |
| | | |
| | | /** |
| | | * ç±»å« |
| | | */ |
| | | @ApiModelProperty(name = "ç±»å«") |
| | | @ApiModelProperty(value = "ç±»å«") |
| | | @Excel(name = " ç±»å« ") |
| | | private String tag; |
| | | |
| | |
| | | /** |
| | | * é¢ç®ç±»å;æä¸¾ 1.åé 2å¤é 3填空 |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®ç±»å;æä¸¾ 1.åé 2å¤é 3填空") |
| | | @ApiModelProperty(value = "é¢ç®ç±»å;æä¸¾ 1.åé 2å¤é 3填空") |
| | | @Excel(name = " é¢ç®ç±»å;æä¸¾ 1.åé 2å¤é 3填空 ") |
| | | private String topictype; |
| | | |
| | | /** |
| | | * çæ¡ |
| | | */ |
| | | @ApiModelProperty(name = "çæ¡") |
| | | @ApiModelProperty(value = "çæ¡") |
| | | @Excel(name = " çæ¡ ") |
| | | private String answer; |
| | | |
| | | /** |
| | | * é项A |
| | | */ |
| | | @ApiModelProperty(name = "é项A") |
| | | @ApiModelProperty(value = "é项A") |
| | | @Excel(name = " é项A ") |
| | | private String optionA; |
| | | |
| | | /** |
| | | * é项B |
| | | */ |
| | | @ApiModelProperty(name = "é项B") |
| | | @ApiModelProperty(value = "é项B") |
| | | @Excel(name = " é项B ") |
| | | private String optionB; |
| | | |
| | | /** |
| | | * é项C |
| | | */ |
| | | @ApiModelProperty(name = "é项C") |
| | | @ApiModelProperty(value = "é项C") |
| | | @Excel(name = " é项C ") |
| | | private String optionC; |
| | | |
| | | /** |
| | | * é项D |
| | | */ |
| | | @ApiModelProperty(name = "é项D") |
| | | @ApiModelProperty(value = "é项D") |
| | | @Excel(name = " é项D ") |
| | | private String optionD; |
| | | |
| | | /** |
| | | * é项D |
| | | */ |
| | | @ApiModelProperty(name = "é项E") |
| | | @ApiModelProperty(value = "é项E") |
| | | @Excel(name = " é项E ") |
| | | private String optionE; |
| | | |
| | | /** |
| | | * é项D |
| | | */ |
| | | @ApiModelProperty(name = "é项F") |
| | | @ApiModelProperty(value = "é项F") |
| | | @Excel(name = " é项F ") |
| | | private String optionF; |
| | | |
| | | /** |
| | | * é项D |
| | | */ |
| | | @ApiModelProperty(name = "é项G") |
| | | @ApiModelProperty(value = "é项G") |
| | | @Excel(name = " é项G ") |
| | | private String optionG; |
| | | |
| | | /** |
| | | * é项D |
| | | */ |
| | | @ApiModelProperty(name = "é项H") |
| | | @ApiModelProperty(value = "é项H") |
| | | @Excel(name = " é项H ") |
| | | private String optionH; |
| | | |
| | | /** |
| | | * åæ° |
| | | */ |
| | | @ApiModelProperty(name = "åæ°") |
| | | @ApiModelProperty(value = "åæ°") |
| | | @Excel(name = " åæ° ") |
| | | private String score; |
| | | |
| | | /** |
| | | * 夿³¨ |
| | | */ |
| | | @ApiModelProperty(name = "夿³¨") |
| | | @ApiModelProperty(value = "夿³¨") |
| | | @Excel(name = " 夿³¨ ") |
| | | private String remark; |
| | | |
| | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long optionid; |
| | | |
| | | /** |
| | | * é¢ç®ID |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®ID") |
| | | @ApiModelProperty(value = "é¢ç®ID") |
| | | @Excel(name = " é¢ç®ID ") |
| | | private Long topicid; |
| | | |
| | | /** |
| | | * é®å·ID |
| | | */ |
| | | @ApiModelProperty(name = "é®å·ID") |
| | | @ApiModelProperty(value = "é®å·ID") |
| | | private Long svyid; |
| | | |
| | | /** |
| | | * é¢ç®ç±»å |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®ç±»å") |
| | | @ApiModelProperty(value = "é¢ç®ç±»å") |
| | | private Long topictype; |
| | | |
| | | /** |
| | | * é项Code |
| | | */ |
| | | @ApiModelProperty(name = "é项Code") |
| | | @ApiModelProperty(value = "é项Code") |
| | | private String optioncode; |
| | | |
| | | /** |
| | | * é项å
容 |
| | | */ |
| | | @ApiModelProperty(name = "é项å
容") |
| | | @ApiModelProperty(value = "é项å
容") |
| | | private String optioncontent; |
| | | |
| | | /** |
| | | * æ¯å¦åå¨æç» |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦å卿ç»") |
| | | @ApiModelProperty(value = "æ¯å¦å卿ç»") |
| | | private Long isexistdetail; |
| | | |
| | | /** |
| | | * æç»æ¯å¦å¿
å¡« |
| | | */ |
| | | @ApiModelProperty(name = "æç»æ¯å¦å¿
å¡«") |
| | | @ApiModelProperty(value = "æç»æ¯å¦å¿
å¡«") |
| | | private Long detailismandatory; |
| | | |
| | | /** |
| | | * æ¯å¦å¼å¸¸é¡¹ç® |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦å¼å¸¸é¡¹ç®") |
| | | @ApiModelProperty(value = "æ¯å¦å¼å¸¸é¡¹ç®") |
| | | private Long isexceptionitem; |
| | | |
| | | /** |
| | | * æ¯å¦è·è¿ |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦è·è¿") |
| | | @ApiModelProperty(value = "æ¯å¦è·è¿") |
| | | private Long istrack; |
| | | |
| | | /** |
| | | * åæ° |
| | | */ |
| | | @ApiModelProperty(name = "åæ°") |
| | | @ApiModelProperty(value = "åæ°") |
| | | private Long score; |
| | | |
| | | /** |
| | | * æç¤º |
| | | */ |
| | | @ApiModelProperty(name = "æç¤º") |
| | | @ApiModelProperty(value = "æç¤º") |
| | | private String prompt; |
| | | |
| | | /** |
| | | * 跳转 |
| | | */ |
| | | @ApiModelProperty(name = "跳转") |
| | | @ApiModelProperty(value = "跳转") |
| | | private String jump; |
| | | |
| | | /** |
| | | * ç¶é项ID |
| | | */ |
| | | @ApiModelProperty(name = "ç¶é项ID") |
| | | @ApiModelProperty(value = "ç¶é项ID") |
| | | private Long parentoptionid; |
| | | |
| | | /** |
| | | * æ¯å¦äºæ¥ |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦äºæ¥") |
| | | @ApiModelProperty(value = "æ¯å¦äºæ¥") |
| | | private Long ismutex; |
| | | |
| | | /** |
| | | * éªè¯è§å |
| | | */ |
| | | @ApiModelProperty(name = "éªè¯è§å") |
| | | @ApiModelProperty(value = "éªè¯è§å") |
| | | private String verifyrule; |
| | | |
| | | /** |
| | | * æåº |
| | | */ |
| | | @ApiModelProperty(name = "æåº") |
| | | @ApiModelProperty(value = "æåº") |
| | | private Long sort; |
| | | |
| | | /** |
| | | * éªè¯ç±»å;0.ä¸éªè¯ 1.æ´æ° 2.å°æ° 3.ææºå· 4.èº«ä»½è¯ 5.æ¥æ |
| | | */ |
| | | @ApiModelProperty(name = "éªè¯ç±»å;0.ä¸éªè¯ 1.æ´æ° 2.å°æ° 3.ææºå· 4.èº«ä»½è¯ 5.æ¥æ ") |
| | | @ApiModelProperty(value = "éªè¯ç±»å;0.ä¸éªè¯ 1.æ´æ° 2.å°æ° 3.ææºå· 4.èº«ä»½è¯ 5.æ¥æ ") |
| | | private Long verificationtype; |
| | | |
| | | /** |
| | | * æ¯å¦éå¶èå´ |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦éå¶èå´") |
| | | @ApiModelProperty(value = "æ¯å¦éå¶èå´") |
| | | private Long isrange; |
| | | |
| | | /** |
| | | * æå°èå´ |
| | | */ |
| | | @ApiModelProperty(name = "æå°èå´") |
| | | @ApiModelProperty(value = "æå°èå´") |
| | | private String minrange; |
| | | |
| | | /** |
| | | * æå¤§èå´ |
| | | */ |
| | | @ApiModelProperty(name = "æå¤§èå´") |
| | | @ApiModelProperty(value = "æå¤§èå´") |
| | | private String maxrange; |
| | | |
| | | /** |
| | | * èå´é¿åº¦;ç¨äºå°æ°ä¿ç使° |
| | | */ |
| | | @ApiModelProperty(name = "èå´é¿åº¦;ç¨äºå°æ°ä¿ç使°") |
| | | @ApiModelProperty(value = "èå´é¿åº¦;ç¨äºå°æ°ä¿ç使°") |
| | | private Long rangelength; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * ä¸ä¸çæ¬ID |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¸çæ¬ID") |
| | | @ApiModelProperty(value = "ä¸ä¸çæ¬ID") |
| | | private Long oldid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | private Date uploadTime; |
| | | |
| | | } |
| | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(name = "çæ¡") |
| | | @ApiModelProperty(value = "çæ¡") |
| | | private String answer; |
| | | |
| | | |
| | |
| | | /** |
| | | * é¢ç® |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®") |
| | | @ApiModelProperty(value = "é¢ç®") |
| | | private String topic; |
| | | |
| | | @ApiModelProperty(name = "é¢ç®ç±»å;æä¸¾ 1.åé 2å¤é 3填空") |
| | | @ApiModelProperty(value = "é¢ç®ç±»å;æä¸¾ 1.åé 2å¤é 3填空") |
| | | private String topicType; |
| | | |
| | | @ApiModelProperty(name = "ç±»å«") |
| | | @ApiModelProperty(value = "ç±»å«") |
| | | private String tag; |
| | | } |
| | |
| | | /** |
| | | * èªå¢ID |
| | | */ |
| | | @ApiModelProperty(name = "èªå¢ID") |
| | | @ApiModelProperty(value = "èªå¢ID") |
| | | private Long optionid; |
| | | |
| | | /** |
| | | * é¢ç®ID |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®ID") |
| | | @ApiModelProperty(value = "é¢ç®ID") |
| | | @Excel(name = " é¢ç®ID ") |
| | | private Long topicid; |
| | | |
| | | /** |
| | | * é®å·ID |
| | | */ |
| | | @ApiModelProperty(name = "é®å·ID") |
| | | @ApiModelProperty(value = "é®å·ID") |
| | | private Long svyid; |
| | | |
| | | /** |
| | | * é¢ç®ç±»å |
| | | */ |
| | | @ApiModelProperty(name = "é¢ç®ç±»å") |
| | | @ApiModelProperty(value = "é¢ç®ç±»å") |
| | | private Long topictype; |
| | | |
| | | /** |
| | | * é项Code |
| | | */ |
| | | @ApiModelProperty(name = "é项Code") |
| | | @ApiModelProperty(value = "é项Code") |
| | | private String optioncode; |
| | | |
| | | /** |
| | | * é项å
容 |
| | | */ |
| | | @ApiModelProperty(name = "é项å
容") |
| | | @ApiModelProperty(value = "é项å
容") |
| | | private String optioncontent; |
| | | |
| | | /** |
| | | * æ¯å¦åå¨æç» |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦å卿ç»") |
| | | @ApiModelProperty(value = "æ¯å¦å卿ç»") |
| | | private Long isexistdetail; |
| | | |
| | | /** |
| | | * æç»æ¯å¦å¿
å¡« |
| | | */ |
| | | @ApiModelProperty(name = "æç»æ¯å¦å¿
å¡«") |
| | | @ApiModelProperty(value = "æç»æ¯å¦å¿
å¡«") |
| | | private Long detailismandatory; |
| | | |
| | | /** |
| | | * æ¯å¦å¼å¸¸é¡¹ç® |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦å¼å¸¸é¡¹ç®") |
| | | @ApiModelProperty(value = "æ¯å¦å¼å¸¸é¡¹ç®") |
| | | private Long isexceptionitem; |
| | | |
| | | /** |
| | | * æ¯å¦è·è¿ |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦è·è¿") |
| | | @ApiModelProperty(value = "æ¯å¦è·è¿") |
| | | private Long istrack; |
| | | |
| | | /** |
| | | * åæ° |
| | | */ |
| | | @ApiModelProperty(name = "åæ°") |
| | | @ApiModelProperty(value = "åæ°") |
| | | private Long score; |
| | | |
| | | /** |
| | | * æç¤º |
| | | */ |
| | | @ApiModelProperty(name = "æç¤º") |
| | | @ApiModelProperty(value = "æç¤º") |
| | | private String prompt; |
| | | |
| | | /** |
| | | * 跳转 |
| | | */ |
| | | @ApiModelProperty(name = "跳转") |
| | | @ApiModelProperty(value = "跳转") |
| | | private String jump; |
| | | |
| | | /** |
| | | * ç¶é项ID |
| | | */ |
| | | @ApiModelProperty(name = "ç¶é项ID") |
| | | @ApiModelProperty(value = "ç¶é项ID") |
| | | private Long parentoptionid; |
| | | |
| | | /** |
| | | * æ¯å¦äºæ¥ |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦äºæ¥") |
| | | @ApiModelProperty(value = "æ¯å¦äºæ¥") |
| | | private Long ismutex; |
| | | |
| | | /** |
| | | * éªè¯è§å |
| | | */ |
| | | @ApiModelProperty(name = "éªè¯è§å") |
| | | @ApiModelProperty(value = "éªè¯è§å") |
| | | private String verifyrule; |
| | | |
| | | /** |
| | | * æåº |
| | | */ |
| | | @ApiModelProperty(name = "æåº") |
| | | @ApiModelProperty(value = "æåº") |
| | | private Long sort; |
| | | |
| | | /** |
| | | * éªè¯ç±»å;0.ä¸éªè¯ 1.æ´æ° 2.å°æ° 3.ææºå· 4.èº«ä»½è¯ 5.æ¥æ |
| | | */ |
| | | @ApiModelProperty(name = "éªè¯ç±»å;0.ä¸éªè¯ 1.æ´æ° 2.å°æ° 3.ææºå· 4.èº«ä»½è¯ 5.æ¥æ ") |
| | | @ApiModelProperty(value = "éªè¯ç±»å;0.ä¸éªè¯ 1.æ´æ° 2.å°æ° 3.ææºå· 4.èº«ä»½è¯ 5.æ¥æ ") |
| | | private Long verificationtype; |
| | | |
| | | /** |
| | | * æ¯å¦éå¶èå´ |
| | | */ |
| | | @ApiModelProperty(name = "æ¯å¦éå¶èå´") |
| | | @ApiModelProperty(value = "æ¯å¦éå¶èå´") |
| | | private Long isrange; |
| | | |
| | | /** |
| | | * æå°èå´ |
| | | */ |
| | | @ApiModelProperty(name = "æå°èå´") |
| | | @ApiModelProperty(value = "æå°èå´") |
| | | private String minrange; |
| | | |
| | | /** |
| | | * æå¤§èå´ |
| | | */ |
| | | @ApiModelProperty(name = "æå¤§èå´") |
| | | @ApiModelProperty(value = "æå¤§èå´") |
| | | private String maxrange; |
| | | |
| | | /** |
| | | * èå´é¿åº¦;ç¨äºå°æ°ä¿ç使° |
| | | */ |
| | | @ApiModelProperty(name = "èå´é¿åº¦;ç¨äºå°æ°ä¿ç使°") |
| | | @ApiModelProperty(value = "èå´é¿åº¦;ç¨äºå°æ°ä¿ç使°") |
| | | private Long rangelength; |
| | | |
| | | /** |
| | | * æºæID |
| | | */ |
| | | @ApiModelProperty(name = "æºæID") |
| | | @ApiModelProperty(value = "æºæID") |
| | | private String orgid; |
| | | |
| | | /** |
| | | * ä¸ä¸çæ¬ID |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¸çæ¬ID") |
| | | @ApiModelProperty(value = "ä¸ä¸çæ¬ID") |
| | | private Long oldid; |
| | | |
| | | /** |
| | | * å 餿 è®° |
| | | */ |
| | | @ApiModelProperty(name = "å 餿 è®°") |
| | | @ApiModelProperty(value = "å 餿 è®°") |
| | | private String delFlag; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ è®° |
| | | */ |
| | | @ApiModelProperty(name = "ä¸ä¼ æ è®°") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ è®°") |
| | | private Long isupload; |
| | | |
| | | /** |
| | | * ä¸ä¼ æ¶é´ |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @ApiModelProperty(name = "ä¸ä¼ æ¶é´") |
| | | @ApiModelProperty(value = "ä¸ä¼ æ¶é´") |
| | | private Date uploadTime; |
| | | |
| | | } |
| | |
| | | @ApiModel(value = "TreeNode", description = "èç¹æ ") |
| | | @Data |
| | | public class TreeNode { |
| | | @ApiModelProperty(name = "èç¹åç§°") |
| | | @ApiModelProperty(value = "èç¹åç§°") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(name = "åèç¹éå") |
| | | @ApiModelProperty(value = "åèç¹éå") |
| | | private List<TreeNode> children; |
| | | |
| | | public TreeNode(String name) { |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.Icd10; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ç¾ç
Mapperæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Mapper |
| | | public interface Icd10Mapper { |
| | | /** |
| | | * æ¥è¯¢ç¾ç
|
| | | * |
| | | * @param icdid ç¾ç
ä¸»é® |
| | | * @return ç¾ç
|
| | | */ |
| | | public Icd10 selectIcd10ByIcdid(Long icdid); |
| | | |
| | | /** |
| | | * æ¥è¯¢ç¾ç
å表 |
| | | * |
| | | * @param icd10 ç¾ç
|
| | | * @return ç¾ç
éå |
| | | */ |
| | | public List<Icd10> selectIcd10List(Icd10 icd10); |
| | | |
| | | /** |
| | | * æ°å¢ç¾ç
|
| | | * |
| | | * @param icd10 ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | public int insertIcd10(Icd10 icd10); |
| | | |
| | | /** |
| | | * ä¿®æ¹ç¾ç
|
| | | * |
| | | * @param icd10 ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | public int updateIcd10(Icd10 icd10); |
| | | |
| | | /** |
| | | * å é¤ç¾ç
|
| | | * |
| | | * @param icdid ç¾ç
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIcd10ByIcdid(Long icdid); |
| | | |
| | | /** |
| | | * æ¹éå é¤ç¾ç
|
| | | * |
| | | * @param icdids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIcd10ByIcdids(Long[] icdids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.IvrLibaTargetIcd10; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ ç¾ç
Mapperæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-20 |
| | | */ |
| | | @Mapper |
| | | public interface IvrLibaOutIcd10Mapper { |
| | | /** |
| | | * æ¥è¯¢ææ ç¾ç
|
| | | * |
| | | * @param id ææ ç¾ç
ä¸»é® |
| | | * @return ææ ç¾ç
|
| | | */ |
| | | public IvrLibaTargetIcd10 selectIvrLibaTargetIcd10ById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ ç¾ç
å表 |
| | | * |
| | | * @param ivrLibaTargetIcd10 ææ ç¾ç
|
| | | * @return ææ ç¾ç
éå |
| | | */ |
| | | public List<IvrLibaTargetIcd10> selectIvrLibaTargetIcd10List(IvrLibaTargetIcd10 ivrLibaTargetIcd10); |
| | | |
| | | /** |
| | | * æ°å¢ææ ç¾ç
|
| | | * |
| | | * @param ivrLibaTargetIcd10 ææ ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTargetIcd10(IvrLibaTargetIcd10 ivrLibaTargetIcd10); |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ ç¾ç
|
| | | * |
| | | * @param ivrLibaTargetIcd10 ææ ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTargetIcd10(IvrLibaTargetIcd10 ivrLibaTargetIcd10); |
| | | |
| | | /** |
| | | * å 餿æ ç¾ç
|
| | | * |
| | | * @param id ææ ç¾ç
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetIcd10ById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿æ ç¾ç
|
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetIcd10ByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.IvrLibaScriptAssort; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯åç±»åº |
| | | * Mapperæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Mapper |
| | | public interface IvrLibaScriptAssortMapper { |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯åç±»åº |
| | | * |
| | | * @param id é®é¢è¯æ¯åç±»åº |
| | | * ä¸»é® |
| | | * @return é®é¢è¯æ¯åç±»åº |
| | | */ |
| | | public IvrLibaScriptAssort selectIvrLibaScriptAssortById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯åç±»åº |
| | | * å表 |
| | | * |
| | | * @param ivrLibaScriptAssort é®é¢è¯æ¯åç±»åº |
| | | * @return é®é¢è¯æ¯åç±»åº |
| | | * éå |
| | | */ |
| | | public List<IvrLibaScriptAssort> selectIvrLibaScriptAssortList(IvrLibaScriptAssort ivrLibaScriptAssort); |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯åç±»åº |
| | | * |
| | | * @param ivrLibaScriptAssort é®é¢è¯æ¯åç±»åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScriptAssort(IvrLibaScriptAssort ivrLibaScriptAssort); |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯åç±»åº |
| | | * |
| | | * @param ivrLibaScriptAssort é®é¢è¯æ¯åç±»åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScriptAssort(IvrLibaScriptAssort ivrLibaScriptAssort); |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯åç±»åº |
| | | * |
| | | * @param id é®é¢è¯æ¯åç±»åº |
| | | * ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptAssortById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå é¤é®é¢è¯æ¯åç±»åº |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptAssortByIds(Long[] ids); |
| | | } |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaScript; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * è¯æ¯åºMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | * é®é¢è¯æ¯åºMapperæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | public interface IvrLibaScriptMapper |
| | | { |
| | | @Mapper |
| | | public interface IvrLibaScriptMapper { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åº |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return è¯æ¯åº |
| | | * æ¥è¯¢é®é¢è¯æ¯åº |
| | | * |
| | | * @param questionid é®é¢è¯æ¯åºä¸»é® |
| | | * @return é®é¢è¯æ¯åº |
| | | */ |
| | | public IvrLibaScript selectIvrLibaScriptByQuestionid(String questionid); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return è¯æ¯åºéå |
| | | * æ¥è¯¢é®é¢è¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibaScript é®é¢è¯æ¯åº |
| | | * @return é®é¢è¯æ¯åºéå |
| | | */ |
| | | public List<IvrLibaScript> selectIvrLibaScriptList(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * æ°å¢é®é¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript é®é¢è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScript(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * ä¿®æ¹é®é¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript é®é¢è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScript(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åº |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * å é¤é®é¢è¯æ¯åº |
| | | * |
| | | * @param id é®é¢è¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptByQuestionid(String questionid); |
| | | public int deleteIvrLibaScriptByQuestionid(Integer id); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯åº |
| | | * |
| | | * @param questionids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptByQuestionids(String[] questionids); |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.IvrLibaScriptTag; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯æ ç¾åºMapperæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Mapper |
| | | public interface IvrLibaScriptTagMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param id é®é¢è¯æ¯æ ç¾åºä¸»é® |
| | | * @return é®é¢è¯æ¯æ ç¾åº |
| | | */ |
| | | public IvrLibaScriptTag selectIvrLibaScriptTagById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯æ ç¾åºå表 |
| | | * |
| | | * @param ivrLibaScriptTag é®é¢è¯æ¯æ ç¾åº |
| | | * @return é®é¢è¯æ¯æ ç¾åºéå |
| | | */ |
| | | public List<IvrLibaScriptTag> selectIvrLibaScriptTagList(IvrLibaScriptTag ivrLibaScriptTag); |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param ivrLibaScriptTag é®é¢è¯æ¯æ ç¾åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScriptTag(IvrLibaScriptTag ivrLibaScriptTag); |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param ivrLibaScriptTag é®é¢è¯æ¯æ ç¾åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScriptTag(IvrLibaScriptTag ivrLibaScriptTag); |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param id é®é¢è¯æ¯æ ç¾åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptTagById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå é¤é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptTagByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.IvrLibaScriptTargetoption; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯ææ é项åºMapperæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Mapper |
| | | public interface IvrLibaScriptTargetoptionMapper { |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param targetoptionid é®é¢è¯æ¯ææ é项åºä¸»é® |
| | | * @return é®é¢è¯æ¯ææ éé¡¹åº |
| | | */ |
| | | public IvrLibaScriptTargetoption selectIvrLibaScriptTargetoptionByTargetoptionid(String targetoptionid); |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯ææ é项åºå表 |
| | | * |
| | | * @param ivrLibaScriptTargetoption é®é¢è¯æ¯ææ éé¡¹åº |
| | | * @return é®é¢è¯æ¯ææ é项åºéå |
| | | */ |
| | | public List<IvrLibaScriptTargetoption> selectIvrLibaScriptTargetoptionList(IvrLibaScriptTargetoption ivrLibaScriptTargetoption); |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaScriptTargetoption é®é¢è¯æ¯ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScriptTargetoption(IvrLibaScriptTargetoption ivrLibaScriptTargetoption); |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaScriptTargetoption é®é¢è¯æ¯ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScriptTargetoption(IvrLibaScriptTargetoption ivrLibaScriptTargetoption); |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param id é®é¢è¯æ¯ææ é项åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptTargetoptionByTargetoptionid(Long id); |
| | | |
| | | } |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.IvrLibaTarget; |
| | | import com.smartor.domain.IvrLibaTargetVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | |
| | | */ |
| | | public List<IvrLibaTarget> selectIvrLibaTargetList(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | public List<IvrLibaTargetVO> targetInfo(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | /** |
| | | * æ°å¢ææ éé¡¹åº |
| | | * |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.BaseTag; |
| | | import com.smartor.domain.IvrLibaTargetTag; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ æ ç¾Mapperæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | @Mapper |
| | | public interface IvrLibaTargetTagMapper { |
| | | /** |
| | | * æ¥è¯¢ææ æ ç¾ |
| | | * |
| | | * @param id ææ æ ç¾ä¸»é® |
| | | * @return ææ æ ç¾ |
| | | */ |
| | | public IvrLibaTargetTag selectIvrLibaTargetTagById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ åç§° |
| | | * |
| | | * @param id ææ æ ç¾ä¸»é® |
| | | * @return ææ æ ç¾ |
| | | */ |
| | | public List<BaseTag> selectTagName(Long targetid); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ æ ç¾å表 |
| | | * |
| | | * @param ivrLibaTargetTag ææ æ ç¾ |
| | | * @return ææ æ ç¾éå |
| | | */ |
| | | public List<IvrLibaTargetTag> selectIvrLibaTargetTagList(IvrLibaTargetTag ivrLibaTargetTag); |
| | | |
| | | /** |
| | | * æ°å¢ææ æ ç¾ |
| | | * |
| | | * @param ivrLibaTargetTag ææ æ ç¾ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTargetTag(IvrLibaTargetTag ivrLibaTargetTag); |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ æ ç¾ |
| | | * |
| | | * @param ivrLibaTargetTag ææ æ ç¾ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTargetTag(IvrLibaTargetTag ivrLibaTargetTag); |
| | | |
| | | /** |
| | | * å é¤ææ æ ç¾ |
| | | * |
| | | * @param id ææ æ ç¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetTagById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå é¤ææ æ ç¾ |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetTagByIds(Long[] ids); |
| | | } |
| | |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetoptionByTargetoptionids(Long[] targetoptionids); |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import com.smartor.domain.IvrLibaTemplatetargetAssort; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ æ¨¡æ¿åç±»Mapperæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | @Mapper |
| | | public interface IvrLibaTemplatetargetAssortMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢ææ 模æ¿åç±» |
| | | * |
| | | * @param id ææ æ¨¡æ¿åç±»ä¸»é® |
| | | * @return ææ æ¨¡æ¿åç±» |
| | | */ |
| | | public IvrLibaTemplatetargetAssort selectIvrLibaTemplatetargetAssortById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ 模æ¿åç±»å表 |
| | | * |
| | | * @param ivrLibaTemplatetargetAssort ææ æ¨¡æ¿åç±» |
| | | * @return ææ æ¨¡æ¿åç±»éå |
| | | */ |
| | | public List<IvrLibaTemplatetargetAssort> selectIvrLibaTemplatetargetAssortList(IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort); |
| | | |
| | | /** |
| | | * æ°å¢ææ 模æ¿åç±» |
| | | * |
| | | * @param ivrLibaTemplatetargetAssort ææ æ¨¡æ¿åç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTemplatetargetAssort(IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort); |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ æ¨¡æ¿åç±» |
| | | * |
| | | * @param ivrLibaTemplatetargetAssort ææ æ¨¡æ¿åç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTemplatetargetAssort(IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort); |
| | | |
| | | /** |
| | | * å é¤ææ æ¨¡æ¿åç±» |
| | | * |
| | | * @param id ææ æ¨¡æ¿åç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatetargetAssortById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå é¤ææ æ¨¡æ¿åç±» |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatetargetAssortByIds(Long[] ids); |
| | | } |
| | |
| | | * @param id æ£è
æ¡£æ¡æ ç¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatArchivetagById(Long id); |
| | | public int deletePatArchivetagById(PatArchivetag patArchivetag); |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
æ¡£æ¡æ ç¾ |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import com.smartor.domain.Icd10; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ç¾ç
Serviceæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | public interface IIcd10Service |
| | | { |
| | | /** |
| | | * æ¥è¯¢ç¾ç
|
| | | * |
| | | * @param icdid ç¾ç
ä¸»é® |
| | | * @return ç¾ç
|
| | | */ |
| | | public Icd10 selectIcd10ByIcdid(Long icdid); |
| | | |
| | | /** |
| | | * æ¥è¯¢ç¾ç
å表 |
| | | * |
| | | * @param icd10 ç¾ç
|
| | | * @return ç¾ç
éå |
| | | */ |
| | | public List<Icd10> selectIcd10List(Icd10 icd10); |
| | | |
| | | /** |
| | | * æ°å¢ç¾ç
|
| | | * |
| | | * @param icd10 ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | public int insertIcd10(Icd10 icd10); |
| | | |
| | | /** |
| | | * ä¿®æ¹ç¾ç
|
| | | * |
| | | * @param icd10 ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | public int updateIcd10(Icd10 icd10); |
| | | |
| | | /** |
| | | * æ¹éå é¤ç¾ç
|
| | | * |
| | | * @param icdids éè¦å é¤çç¾ç
主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIcd10ByIcdids(Long[] icdids); |
| | | |
| | | /** |
| | | * å é¤ç¾ç
ä¿¡æ¯ |
| | | * |
| | | * @param icdid ç¾ç
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIcd10ByIcdid(Long icdid); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import com.smartor.domain.IvrLibaTargetIcd10; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ ç¾ç
Serviceæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-20 |
| | | */ |
| | | public interface IIvrLibaOutIcd10Service |
| | | { |
| | | /** |
| | | * æ¥è¯¢ææ ç¾ç
|
| | | * |
| | | * @param id ææ ç¾ç
ä¸»é® |
| | | * @return ææ ç¾ç
|
| | | */ |
| | | public IvrLibaTargetIcd10 selectIvrLibaTargetIcd10ById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ ç¾ç
å表 |
| | | * |
| | | * @param ivrLibaTargetIcd10 ææ ç¾ç
|
| | | * @return ææ ç¾ç
éå |
| | | */ |
| | | public List<IvrLibaTargetIcd10> selectIvrLibaTargetIcd10List(IvrLibaTargetIcd10 ivrLibaTargetIcd10); |
| | | |
| | | /** |
| | | * æ°å¢ææ ç¾ç
|
| | | * |
| | | * @param ivrLibaTargetIcd10 ææ ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTargetIcd10(IvrLibaTargetIcd10 ivrLibaTargetIcd10); |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ ç¾ç
|
| | | * |
| | | * @param ivrLibaTargetIcd10 ææ ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTargetIcd10(IvrLibaTargetIcd10 ivrLibaTargetIcd10); |
| | | |
| | | /** |
| | | * æ¹éå 餿æ ç¾ç
|
| | | * |
| | | * @param ids éè¦å é¤çææ ç¾ç
主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetIcd10ByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿æ ç¾ç
ä¿¡æ¯ |
| | | * |
| | | * @param id ææ ç¾ç
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetIcd10ById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import com.smartor.domain.IvrLibaScriptAssort; |
| | | import com.smartor.domain.IvrLibaScriptAssortVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯åç±»åº |
| | | Serviceæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | public interface IIvrLibaScriptAssortService |
| | | { |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯åç±»åº |
| | | |
| | | * |
| | | * @param id é®é¢è¯æ¯åç±»åº |
| | | ä¸»é® |
| | | * @return é®é¢è¯æ¯åç±»åº |
| | | |
| | | */ |
| | | public IvrLibaScriptAssort selectIvrLibaScriptAssortById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯åç±»åº |
| | | å表 |
| | | * |
| | | * @param ivrLibaScriptAssort é®é¢è¯æ¯åç±»åº |
| | | |
| | | * @return é®é¢è¯æ¯åç±»åº |
| | | éå |
| | | */ |
| | | public List<IvrLibaScriptAssortVO> selectIvrLibaScriptAssortList(IvrLibaScriptAssort ivrLibaScriptAssort); |
| | | |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯åç±»åº |
| | | |
| | | * |
| | | * @param ivrLibaScriptAssort é®é¢è¯æ¯åç±»åº |
| | | |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScriptAssort(IvrLibaScriptAssort ivrLibaScriptAssort); |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯åç±»åº |
| | | |
| | | * |
| | | * @param ivrLibaScriptAssort é®é¢è¯æ¯åç±»åº |
| | | |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScriptAssort(IvrLibaScriptAssort ivrLibaScriptAssort); |
| | | |
| | | /** |
| | | * æ¹éå é¤é®é¢è¯æ¯åç±»åº |
| | | |
| | | * |
| | | * @param ids éè¦å é¤çé®é¢è¯æ¯åç±»åº |
| | | 主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptAssortByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯åç±»åº |
| | | ä¿¡æ¯ |
| | | * |
| | | * @param id é®é¢è¯æ¯åç±»åº |
| | | ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptAssortById(Long id); |
| | | } |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaScript; |
| | | import com.smartor.domain.IvrLibaScriptVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * è¯æ¯åºServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | * é®é¢è¯æ¯åºServiceæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | public interface IIvrLibaScriptService |
| | | { |
| | | public interface IIvrLibaScriptService { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åº |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return è¯æ¯åº |
| | | * æ¥è¯¢é®é¢è¯æ¯åº |
| | | * |
| | | * @param questionid é®é¢è¯æ¯åºä¸»é® |
| | | * @return é®é¢è¯æ¯åº |
| | | */ |
| | | public IvrLibaScript selectIvrLibaScriptByQuestionid(String questionid); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return è¯æ¯åºéå |
| | | * æ¥è¯¢é®é¢è¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibaScript é®é¢è¯æ¯åº |
| | | * @return é®é¢è¯æ¯åºéå |
| | | */ |
| | | public List<IvrLibaScript> selectIvrLibaScriptList(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * æ¥è¯¢é®é¢è¯æ¯è¯¦æ
æ ¹æ®æ¡ä»¶ |
| | | */ |
| | | public IvrLibaScriptVO selectInfoByCondition(IvrLibaScriptVO ivrLibaScriptVO); |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯è¯¦æ
æ ¹æ®æ¡ä»¶ |
| | | */ |
| | | public Integer saveOrUpdateScript(IvrLibaScriptVO ivrLibaScriptVO); |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript é®é¢è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScript(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * ä¿®æ¹é®é¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript é®é¢è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScript(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯åº |
| | | * |
| | | * @param questionids éè¦å é¤çè¯æ¯åºä¸»é®éå |
| | | * æ¹éå é¤é®é¢è¯æ¯åº |
| | | * |
| | | * @param questionids éè¦å é¤çé®é¢è¯æ¯åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptByQuestionids(String[] questionids); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åºä¿¡æ¯ |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptByQuestionid(String questionid); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import com.smartor.domain.IvrLibaScriptTag; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯æ ç¾åºServiceæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | public interface IIvrLibaScriptTagService |
| | | { |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param id é®é¢è¯æ¯æ ç¾åºä¸»é® |
| | | * @return é®é¢è¯æ¯æ ç¾åº |
| | | */ |
| | | public IvrLibaScriptTag selectIvrLibaScriptTagById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯æ ç¾åºå表 |
| | | * |
| | | * @param ivrLibaScriptTag é®é¢è¯æ¯æ ç¾åº |
| | | * @return é®é¢è¯æ¯æ ç¾åºéå |
| | | */ |
| | | public List<IvrLibaScriptTag> selectIvrLibaScriptTagList(IvrLibaScriptTag ivrLibaScriptTag); |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param ivrLibaScriptTag é®é¢è¯æ¯æ ç¾åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScriptTag(IvrLibaScriptTag ivrLibaScriptTag); |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param ivrLibaScriptTag é®é¢è¯æ¯æ ç¾åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScriptTag(IvrLibaScriptTag ivrLibaScriptTag); |
| | | |
| | | /** |
| | | * æ¹éå é¤é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param ids éè¦å é¤çé®é¢è¯æ¯æ ç¾åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptTagByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯æ ç¾åºä¿¡æ¯ |
| | | * |
| | | * @param id é®é¢è¯æ¯æ ç¾åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptTagById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import com.smartor.domain.IvrLibaScriptTargetoption; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯ææ é项åºServiceæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | public interface IIvrLibaScriptTargetoptionService { |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param targetoptionid é®é¢è¯æ¯ææ é项åºä¸»é® |
| | | * @return é®é¢è¯æ¯ææ éé¡¹åº |
| | | */ |
| | | public IvrLibaScriptTargetoption selectIvrLibaScriptTargetoptionByTargetoptionid(String targetoptionid); |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯ææ é项åºå表 |
| | | * |
| | | * @param ivrLibaScriptTargetoption é®é¢è¯æ¯ææ éé¡¹åº |
| | | * @return é®é¢è¯æ¯ææ é项åºéå |
| | | */ |
| | | public List<IvrLibaScriptTargetoption> selectIvrLibaScriptTargetoptionList(IvrLibaScriptTargetoption ivrLibaScriptTargetoption); |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaScriptTargetoption é®é¢è¯æ¯ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScriptTargetoption(IvrLibaScriptTargetoption ivrLibaScriptTargetoption); |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaScriptTargetoption é®é¢è¯æ¯ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScriptTargetoption(IvrLibaScriptTargetoption ivrLibaScriptTargetoption); |
| | | |
| | | /** |
| | | * æ¹éå é¤é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param targetoptionids éè¦å é¤çé®é¢è¯æ¯ææ é项åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptTargetoptionByTargetoptionids(String[] targetoptionids); |
| | | |
| | | } |
| | |
| | | package com.smartor.service; |
| | | |
| | | import com.smartor.domain.IvrLibaTarget; |
| | | import com.smartor.domain.IvrLibaTargetVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ é项åºServiceæ¥å£ |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-14 |
| | | */ |
| | | public interface IIvrLibaTargetService |
| | | { |
| | | public interface IIvrLibaTargetService { |
| | | /** |
| | | * æ¥è¯¢ææ éé¡¹åº |
| | | * |
| | | * |
| | | * @param targetID ææ é项åºä¸»é® |
| | | * @return ææ éé¡¹åº |
| | | */ |
| | |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ é项åºå表 |
| | | * |
| | | * |
| | | * @param ivrLibaTarget ææ éé¡¹åº |
| | | * @return ææ é项åºéå |
| | | */ |
| | | public List<IvrLibaTarget> selectIvrLibaTargetList(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | /** |
| | | * æ°å¢ææ éé¡¹åº |
| | | * |
| | | * æ¥è¯¢ææ åå
³èçææ é项 |
| | | * |
| | | * @param ivrLibaTarget ææ éé¡¹åº |
| | | * @return æ¥è¯¢ææ åå
³èçææ é项 |
| | | */ |
| | | public List<IvrLibaTargetVO> targetInfo(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | /** |
| | | * æ°å¢ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaTargetVO ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTarget(IvrLibaTarget ivrLibaTarget); |
| | | public int insertIvrLibaTarget(IvrLibaTargetVO ivrLibaTargetVO); |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaTarget ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaTargetVO ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTarget(IvrLibaTarget ivrLibaTarget); |
| | | public int saveOrupdateIvrLibaTarget(IvrLibaTargetVO ivrLibaTargetVO); |
| | | |
| | | |
| | | /** |
| | | * æ¹éå 餿æ éé¡¹åº |
| | | * |
| | | * |
| | | * @param targetIDs éè¦å é¤çææ é项åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | |
| | | |
| | | /** |
| | | * å 餿æ é项åºä¿¡æ¯ |
| | | * |
| | | * |
| | | * @param targetID ææ é项åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import com.smartor.domain.IvrLibaTargetTag; |
| | | import com.smartor.domain.IvrLibaTargetTagVO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ æ ç¾Serviceæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | public interface IIvrLibaTargetTagService { |
| | | /** |
| | | * æ¥è¯¢ææ æ ç¾ |
| | | * |
| | | * @param id ææ æ ç¾ä¸»é® |
| | | * @return ææ æ ç¾ |
| | | */ |
| | | public IvrLibaTargetTag selectIvrLibaTargetTagById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ æ ç¾å表 |
| | | * |
| | | * @param ivrLibaTargetTag ææ æ ç¾ |
| | | * @return ææ æ ç¾éå |
| | | */ |
| | | public List<IvrLibaTargetTag> selectIvrLibaTargetTagList(IvrLibaTargetTag ivrLibaTargetTag); |
| | | |
| | | /** |
| | | * æ°å¢ææ æ ç¾ |
| | | * |
| | | * @param ivrLibaTargetTag ææ æ ç¾ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTargetTag(IvrLibaTargetTag ivrLibaTargetTag); |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ æ ç¾ |
| | | * |
| | | * @param ivrLibaTargetTag ææ æ ç¾ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTargetTag(IvrLibaTargetTag ivrLibaTargetTag); |
| | | |
| | | /** |
| | | * æ¹éå é¤ææ æ ç¾ |
| | | * |
| | | * @param ids éè¦å é¤çææ æ ç¾ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetTagByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å é¤ææ æ ç¾ä¿¡æ¯ |
| | | * |
| | | * @param id ææ æ ç¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetTagById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import com.smartor.domain.IvrLibaTemplatetargetAssort; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ æ¨¡æ¿åç±»Serviceæ¥å£ |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | public interface IIvrLibaTemplatetargetAssortService |
| | | { |
| | | /** |
| | | * æ¥è¯¢ææ 模æ¿åç±» |
| | | * |
| | | * @param id ææ æ¨¡æ¿åç±»ä¸»é® |
| | | * @return ææ æ¨¡æ¿åç±» |
| | | */ |
| | | public IvrLibaTemplatetargetAssort selectIvrLibaTemplatetargetAssortById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ 模æ¿åç±»å表 |
| | | * |
| | | * @param ivrLibaTemplatetargetAssort ææ æ¨¡æ¿åç±» |
| | | * @return ææ æ¨¡æ¿åç±»éå |
| | | */ |
| | | public List<IvrLibaTemplatetargetAssort> selectIvrLibaTemplatetargetAssortList(IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort); |
| | | |
| | | /** |
| | | * æ°å¢ææ 模æ¿åç±» |
| | | * |
| | | * @param ivrLibaTemplatetargetAssort ææ æ¨¡æ¿åç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTemplatetargetAssort(IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort); |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ æ¨¡æ¿åç±» |
| | | * |
| | | * @param ivrLibaTemplatetargetAssort ææ æ¨¡æ¿åç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTemplatetargetAssort(IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort); |
| | | |
| | | /** |
| | | * æ¹éå é¤ææ æ¨¡æ¿åç±» |
| | | * |
| | | * @param ids éè¦å é¤çææ æ¨¡æ¿å类主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatetargetAssortByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å é¤ææ æ¨¡æ¿åç±»ä¿¡æ¯ |
| | | * |
| | | * @param id ææ æ¨¡æ¿åç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatetargetAssortById(Long id); |
| | | } |
| | |
| | | * @param patArchive æ£è
æ¡£æ¡ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertPatArchive(PatArchive patArchive); |
| | | public Integer insertPatArchive(PatArchive patArchive); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
æ¡£æ¡ |
| | | * |
| | | * @param patArchive æ£è
æ¡£æ¡ |
| | | * @param patArchiveVO æ£è
æ¡£æ¡ |
| | | * @return ç»æ |
| | | */ |
| | | public Boolean updatePatArchive(PatArchive patArchive); |
| | | public Boolean saveOrUpdatePatInfo(PatArchiveVO patArchiveVO); |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
æ¡£æ¡ |
| | |
| | | */ |
| | | public int deletePatArchivetagByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿£è
æ¡£æ¡æ ç¾ä¿¡æ¯ |
| | | * |
| | | * @param id æ£è
æ¡£æ¡æ ç¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatArchivetagById(Long id); |
| | | |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.smartor.domain.Icd10; |
| | | import com.smartor.mapper.Icd10Mapper; |
| | | import com.smartor.service.IIcd10Service; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ç¾ç
Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Service |
| | | public class Icd10ServiceImpl implements IIcd10Service |
| | | { |
| | | @Autowired |
| | | private Icd10Mapper icd10Mapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢ç¾ç
|
| | | * |
| | | * @param icdid ç¾ç
ä¸»é® |
| | | * @return ç¾ç
|
| | | */ |
| | | @Override |
| | | public Icd10 selectIcd10ByIcdid(Long icdid) |
| | | { |
| | | return icd10Mapper.selectIcd10ByIcdid(icdid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢ç¾ç
å表 |
| | | * |
| | | * @param icd10 ç¾ç
|
| | | * @return ç¾ç
|
| | | */ |
| | | @Override |
| | | public List<Icd10> selectIcd10List(Icd10 icd10) |
| | | { |
| | | return icd10Mapper.selectIcd10List(icd10); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ç¾ç
|
| | | * |
| | | * @param icd10 ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIcd10(Icd10 icd10) |
| | | { |
| | | icd10.setCreateTime(DateUtils.getNowDate()); |
| | | return icd10Mapper.insertIcd10(icd10); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ç¾ç
|
| | | * |
| | | * @param icd10 ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIcd10(Icd10 icd10) |
| | | { |
| | | icd10.setUpdateTime(DateUtils.getNowDate()); |
| | | return icd10Mapper.updateIcd10(icd10); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤ç¾ç
|
| | | * |
| | | * @param icdids éè¦å é¤çç¾ç
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIcd10ByIcdids(Long[] icdids) |
| | | { |
| | | return icd10Mapper.deleteIcd10ByIcdids(icdids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ç¾ç
ä¿¡æ¯ |
| | | * |
| | | * @param icdid ç¾ç
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIcd10ByIcdid(Long icdid) |
| | | { |
| | | return icd10Mapper.deleteIcd10ByIcdid(icdid); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.smartor.domain.IvrLibaTargetIcd10; |
| | | import com.smartor.mapper.IvrLibaOutIcd10Mapper; |
| | | import com.smartor.service.IIvrLibaOutIcd10Service; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ ç¾ç
Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-20 |
| | | */ |
| | | @Service |
| | | public class IvrLibaOutIcd10ServiceImpl implements IIvrLibaOutIcd10Service |
| | | { |
| | | @Autowired |
| | | private IvrLibaOutIcd10Mapper ivrLibaTargetIcd10Mapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ ç¾ç
|
| | | * |
| | | * @param id ææ ç¾ç
ä¸»é® |
| | | * @return ææ ç¾ç
|
| | | */ |
| | | @Override |
| | | public IvrLibaTargetIcd10 selectIvrLibaTargetIcd10ById(Long id) |
| | | { |
| | | return ivrLibaTargetIcd10Mapper.selectIvrLibaTargetIcd10ById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ ç¾ç
å表 |
| | | * |
| | | * @param ivrLibaTargetIcd10 ææ ç¾ç
|
| | | * @return ææ ç¾ç
|
| | | */ |
| | | @Override |
| | | public List<IvrLibaTargetIcd10> selectIvrLibaTargetIcd10List(IvrLibaTargetIcd10 ivrLibaTargetIcd10) |
| | | { |
| | | return ivrLibaTargetIcd10Mapper.selectIvrLibaTargetIcd10List(ivrLibaTargetIcd10); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ ç¾ç
|
| | | * |
| | | * @param ivrLibaTargetIcd10 ææ ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaTargetIcd10(IvrLibaTargetIcd10 ivrLibaTargetIcd10) |
| | | { |
| | | ivrLibaTargetIcd10.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTargetIcd10Mapper.insertIvrLibaTargetIcd10(ivrLibaTargetIcd10); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ ç¾ç
|
| | | * |
| | | * @param ivrLibaTargetIcd10 ææ ç¾ç
|
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaTargetIcd10(IvrLibaTargetIcd10 ivrLibaTargetIcd10) |
| | | { |
| | | ivrLibaTargetIcd10.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTargetIcd10Mapper.updateIvrLibaTargetIcd10(ivrLibaTargetIcd10); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿æ ç¾ç
|
| | | * |
| | | * @param ids éè¦å é¤çææ ç¾ç
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTargetIcd10ByIds(Long[] ids) |
| | | { |
| | | return ivrLibaTargetIcd10Mapper.deleteIvrLibaTargetIcd10ByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿æ ç¾ç
ä¿¡æ¯ |
| | | * |
| | | * @param id ææ ç¾ç
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTargetIcd10ById(Long id) |
| | | { |
| | | return ivrLibaTargetIcd10Mapper.deleteIvrLibaTargetIcd10ById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.ruoyi.common.utils.DtoConversionUtils; |
| | | import com.smartor.domain.*; |
| | | import com.smartor.mapper.IvrLibaScriptAssortMapper; |
| | | import com.smartor.service.IIvrLibaScriptAssortService; |
| | | import io.jsonwebtoken.lang.Collections; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | import java.util.stream.Collectors; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯åç±»åº |
| | | * Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Service |
| | | public class IvrLibaScriptAssortServiceImpl implements IIvrLibaScriptAssortService { |
| | | @Autowired |
| | | private IvrLibaScriptAssortMapper ivrLibaScriptAssortMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯åç±»åº |
| | | * |
| | | * @param id é®é¢è¯æ¯åç±»åº |
| | | * ä¸»é® |
| | | * @return é®é¢è¯æ¯åç±»åº |
| | | */ |
| | | @Override |
| | | public IvrLibaScriptAssort selectIvrLibaScriptAssortById(Long id) { |
| | | return ivrLibaScriptAssortMapper.selectIvrLibaScriptAssortById(id); |
| | | } |
| | | |
| | | // /** |
| | | // * æ¥è¯¢é®é¢è¯æ¯åç±»åº |
| | | // * å表 |
| | | // * |
| | | // * @param ivrLibaScriptAssort é®é¢è¯æ¯åç±»åº |
| | | // * @return é®é¢è¯æ¯åç±»åº |
| | | // */ |
| | | // @Override |
| | | // public List<IvrLibaScriptAssort> selectIvrLibaScriptAssortList(IvrLibaScriptAssort ivrLibaScriptAssort) { |
| | | // return ivrLibaScriptAssortMapper.selectIvrLibaScriptAssortList(ivrLibaScriptAssort); |
| | | // } |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯åç±»åº |
| | | * |
| | | * @param ivrLibaScriptAssort é®é¢è¯æ¯åç±»åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaScriptAssort(IvrLibaScriptAssort ivrLibaScriptAssort) { |
| | | ivrLibaScriptAssort.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptAssortMapper.insertIvrLibaScriptAssort(ivrLibaScriptAssort); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯åç±»åº |
| | | * |
| | | * @param ivrLibaScriptAssort é®é¢è¯æ¯åç±»åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaScriptAssort(IvrLibaScriptAssort ivrLibaScriptAssort) { |
| | | ivrLibaScriptAssort.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptAssortMapper.updateIvrLibaScriptAssort(ivrLibaScriptAssort); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤é®é¢è¯æ¯åç±»åº |
| | | * |
| | | * @param ids éè¦å é¤çé®é¢è¯æ¯åç±»åº |
| | | * ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptAssortByIds(Long[] ids) { |
| | | return ivrLibaScriptAssortMapper.deleteIvrLibaScriptAssortByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯åç±»åº |
| | | * ä¿¡æ¯ |
| | | * |
| | | * @param id é®é¢è¯æ¯åç±»åº |
| | | * ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptAssortById(Long id) { |
| | | return ivrLibaScriptAssortMapper.deleteIvrLibaScriptAssortById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢åç±»å表 |
| | | * |
| | | * @param ivrLibaScriptAssort é®é¢åç±» |
| | | * @return é®é¢åç±» |
| | | */ |
| | | @Override |
| | | public List<IvrLibaScriptAssortVO> selectIvrLibaScriptAssortList(IvrLibaScriptAssort ivrLibaScriptAssort) { |
| | | List<IvrLibaScriptAssort> ivrLibaScriptAssorts = ivrLibaScriptAssortMapper.selectIvrLibaScriptAssortList(ivrLibaScriptAssort); |
| | | //å°pid为空çï¼è¿æ»¤æ |
| | | ivrLibaScriptAssorts = ivrLibaScriptAssorts.stream().filter(assort -> assort.getPid() == null).collect(Collectors.toList()); |
| | | |
| | | List<IvrLibaScriptAssortVO> ivrLibaScriptAssortVOS = DtoConversionUtils.sourceToTarget(ivrLibaScriptAssorts, IvrLibaScriptAssortVO.class); |
| | | //éåæ¥åºæ¥çæ°æ®ï¼éè¿ id=pid è·åä»ä»¬çåæ°æ® |
| | | for (IvrLibaScriptAssortVO ivrLibaScriptAssortVO : ivrLibaScriptAssortVOS) { |
| | | if (ivrLibaScriptAssortVO.getPid() != null) { |
| | | continue; |
| | | } |
| | | IvrLibaScriptAssort ivrLibaTargetAssort1 = new IvrLibaScriptAssort(); |
| | | ivrLibaTargetAssort1.setPid(ivrLibaScriptAssortVO.getId()); |
| | | List<IvrLibaScriptAssort> ivrLibaScriptAssorts1 = ivrLibaScriptAssortMapper.selectIvrLibaScriptAssortList(ivrLibaTargetAssort1); |
| | | if (!Collections.isEmpty(ivrLibaScriptAssorts1)) { |
| | | ivrLibaScriptAssortVO.setIvrLibaScriptAssortList(ivrLibaScriptAssorts1); |
| | | } |
| | | } |
| | | return ivrLibaScriptAssortVOS; |
| | | } |
| | | } |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.ruoyi.common.utils.DtoConversionUtils; |
| | | import com.smartor.domain.*; |
| | | import com.smartor.mapper.IvrLibaScriptMapper; |
| | | import com.smartor.mapper.IvrLibaScriptTagMapper; |
| | | import com.smartor.mapper.IvrLibaScriptTargetMapper; |
| | | import com.smartor.mapper.IvrLibaScriptTargetoptionMapper; |
| | | import com.smartor.service.IIvrLibaScriptService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.commons.collections4.CollectionUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.smartor.mapper.IvrLibaScriptMapper; |
| | | import com.smartor.domain.IvrLibaScript; |
| | | import com.smartor.service.IIvrLibaScriptService; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * è¯æ¯åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | * é®é¢è¯æ¯åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | public class IvrLibaScriptServiceImpl implements IIvrLibaScriptService |
| | | { |
| | | public class IvrLibaScriptServiceImpl implements IIvrLibaScriptService { |
| | | @Autowired |
| | | private IvrLibaScriptMapper ivrLibaScriptMapper; |
| | | |
| | | @Autowired |
| | | private IvrLibaScriptTagMapper ivrLibaScriptTagMapper; |
| | | |
| | | @Autowired |
| | | private IvrLibaScriptTargetoptionMapper ivrLibaScriptTargetoptionMapper; |
| | | |
| | | @Autowired |
| | | private IvrLibaScriptTargetMapper ivrLibaScriptTargetMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åº |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return è¯æ¯åº |
| | | * æ¥è¯¢é®é¢è¯æ¯åº |
| | | * |
| | | * @param questionid é®é¢è¯æ¯åºä¸»é® |
| | | * @return é®é¢è¯æ¯åº |
| | | */ |
| | | @Override |
| | | public IvrLibaScript selectIvrLibaScriptByQuestionid(String questionid) |
| | | { |
| | | public IvrLibaScript selectIvrLibaScriptByQuestionid(String questionid) { |
| | | return ivrLibaScriptMapper.selectIvrLibaScriptByQuestionid(questionid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return è¯æ¯åº |
| | | * æ¥è¯¢é®é¢è¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibaScript é®é¢è¯æ¯åº |
| | | * @return é®é¢è¯æ¯åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibaScript> selectIvrLibaScriptList(IvrLibaScript ivrLibaScript) |
| | | { |
| | | public List<IvrLibaScript> selectIvrLibaScriptList(IvrLibaScript ivrLibaScript) { |
| | | return ivrLibaScriptMapper.selectIvrLibaScriptList(ivrLibaScript); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * æ¥è¯¢é®é¢è¯æ¯è¯¦æ
æ ¹æ®æ¡ä»¶ |
| | | */ |
| | | @Override |
| | | public IvrLibaScriptVO selectInfoByCondition(IvrLibaScriptVO ivrLibaScriptVO) { |
| | | log.info("æ¥è¯¢é®é¢è¯æ¯è¯¦æ
æ ¹æ®æ¡ä»¶çå
¥å为 : {}", ivrLibaScriptVO); |
| | | //å
æ ¹æ®æ¡ä»¶æ¥è¯¢é®é¢è¡¨ä¿¡æ¯ |
| | | IvrLibaScript ivrLibaScript = DtoConversionUtils.sourceToTarget(ivrLibaScriptVO, IvrLibaScript.class); |
| | | List<IvrLibaScript> ivrLibaScripts = selectIvrLibaScriptList(ivrLibaScript); |
| | | if (CollectionUtils.isEmpty(ivrLibaScripts)) { |
| | | log.info("æä¾çæ¡ä»¶,æ¥è¯¢æ°æ®ä¸ºç©ºï¼{}", ivrLibaScript); |
| | | return null; |
| | | } |
| | | log.info("ivrLibaScriptçæ¥è¯¢ç»æä¸º:{},æ°é为 : {}", ivrLibaScripts.get(0), ivrLibaScripts.size()); |
| | | //å®ä¹IvrLibaScriptVO ç¨äºè¿å |
| | | IvrLibaScriptVO scriptVO = DtoConversionUtils.sourceToTarget(ivrLibaScripts.get(0), IvrLibaScriptVO.class); |
| | | |
| | | //è·åtagä¿¡æ¯ |
| | | IvrLibaScriptTag ivrLibaScriptTag = new IvrLibaScriptTag(); |
| | | ivrLibaScriptTag.setScriptid(ivrLibaScripts.get(0).getId()); |
| | | List<IvrLibaScriptTag> ivrLibaScriptTags = ivrLibaScriptTagMapper.selectIvrLibaScriptTagList(ivrLibaScriptTag); |
| | | scriptVO.setIvrLibaScriptTagList(ivrLibaScriptTags); |
| | | |
| | | //è·åoptionä¿¡æ¯ |
| | | IvrLibaScriptTargetoption ivrLibaScriptTargetoption = new IvrLibaScriptTargetoption(); |
| | | ivrLibaScriptTargetoption.setScriptid(ivrLibaScripts.get(0).getId()); |
| | | List<IvrLibaScriptTargetoption> ivrLibaScriptTargetoptions = ivrLibaScriptTargetoptionMapper.selectIvrLibaScriptTargetoptionList(ivrLibaScriptTargetoption); |
| | | scriptVO.setIvrLibaScriptTargetoptionList(ivrLibaScriptTargetoptions); |
| | | |
| | | //æ¥è¯¢é®é¢ææ æ¥å£ |
| | | IvrLibaScriptTarget ivrLibaScriptTarget = new IvrLibaScriptTarget(); |
| | | ivrLibaScriptTarget.setScriptid(ivrLibaScripts.get(0).getId()); |
| | | List<IvrLibaScriptTarget> ivrLibaScriptTargets = ivrLibaScriptTargetMapper.selectIvrLibaScriptTargetList(ivrLibaScriptTarget); |
| | | scriptVO.setIvrLibaScriptTargetList(ivrLibaScriptTargets); |
| | | |
| | | return scriptVO; |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æä¿®æ¹é®é¢è¯¦æ
|
| | | * |
| | | * @param ivrLibaScriptVO |
| | | * @return |
| | | */ |
| | | @Transactional(rollbackFor = Exception.class) |
| | | @Override |
| | | public Integer saveOrUpdateScript(IvrLibaScriptVO ivrLibaScriptVO) { |
| | | IvrLibaScript ivrLibaScript = DtoConversionUtils.sourceToTarget(ivrLibaScriptVO, IvrLibaScript.class); |
| | | //对é®é¢è¡¨è¿è¡æ°æ®å¤ç |
| | | Integer i = null; |
| | | if (ivrLibaScriptVO.getIsoperation() != null && ivrLibaScriptVO.getIsoperation() == 1) { |
| | | i = ivrLibaScriptMapper.insertIvrLibaScript(ivrLibaScript); |
| | | } else if (ivrLibaScriptVO.getIsoperation() != null && ivrLibaScriptVO.getIsoperation() == 2) { |
| | | i = ivrLibaScriptMapper.updateIvrLibaScript(ivrLibaScript); |
| | | } |
| | | log.info("é®é¢è¡¨å¯¹åºçid为ï¼{}", ivrLibaScript.getId()); |
| | | |
| | | //对é®é¢ææ è¿è¡å¤ç |
| | | if (CollectionUtils.isNotEmpty(ivrLibaScriptVO.getIvrLibaScriptTargetList())) { |
| | | for (IvrLibaScriptTarget ivrLibaScriptTarget : ivrLibaScriptVO.getIvrLibaScriptTargetList()) { |
| | | if (ivrLibaScriptTarget.getIsoperation() != null && ivrLibaScriptTarget.getIsoperation() == 1) { |
| | | //æ°å¢ |
| | | ivrLibaScriptTarget.setScriptid(ivrLibaScript.getId()); |
| | | ivrLibaScriptTargetMapper.insertIvrLibaScriptTarget(ivrLibaScriptTarget); |
| | | } else if (ivrLibaScriptTarget.getIsoperation() != null && ivrLibaScriptTarget.getIsoperation() == 2) { |
| | | //ä¿®æ¹ |
| | | ivrLibaScriptTarget.setScriptid(ivrLibaScript.getId()); |
| | | ivrLibaScriptTargetMapper.updateIvrLibaScriptTarget(ivrLibaScriptTarget); |
| | | } else if (ivrLibaScriptTarget.getIsoperation() != null && ivrLibaScriptTarget.getIsoperation() == 3) { |
| | | //å é¤ |
| | | if (ivrLibaScriptTarget.getId() == null) { |
| | | log.info("å é¤å¤±è´¥,é®é¢ææ id为空"); |
| | | } else { |
| | | ivrLibaScriptTargetMapper.deleteIvrLibaScriptTargetByQuestionTargetID(ivrLibaScriptTarget.getId()); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | //对é®é¢ææ é项è¿è¡å¤ç |
| | | if (CollectionUtils.isNotEmpty(ivrLibaScriptVO.getIvrLibaScriptTargetoptionList())) { |
| | | for (IvrLibaScriptTargetoption ivrLibaScriptTargetoption : ivrLibaScriptVO.getIvrLibaScriptTargetoptionList()) { |
| | | if (ivrLibaScriptTargetoption.getIsoperation() != null && ivrLibaScriptTargetoption.getIsoperation() == 1) { |
| | | //æ°å¢ |
| | | ivrLibaScriptTargetoption.setScriptid(ivrLibaScript.getId()); |
| | | ivrLibaScriptTargetoptionMapper.insertIvrLibaScriptTargetoption(ivrLibaScriptTargetoption); |
| | | } |
| | | if (ivrLibaScriptTargetoption.getIsoperation() != null && ivrLibaScriptTargetoption.getIsoperation() == 2) { |
| | | //ä¿®æ¹ |
| | | ivrLibaScriptTargetoption.setScriptid(ivrLibaScript.getId()); |
| | | ivrLibaScriptTargetoptionMapper.updateIvrLibaScriptTargetoption(ivrLibaScriptTargetoption); |
| | | } |
| | | if (ivrLibaScriptTargetoption.getIsoperation() != null && ivrLibaScriptTargetoption.getIsoperation() == 3) { |
| | | //å é¤ |
| | | if (ivrLibaScriptTargetoption.getId() == null) { |
| | | log.info("å é¤å¤±è´¥,é®é¢ææ é项id为空"); |
| | | } else { |
| | | ivrLibaScriptTargetoptionMapper.deleteIvrLibaScriptTargetoptionByTargetoptionid(ivrLibaScriptTargetoption.getId()); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | //对é®é¢æ ç¾è¿è¡å¤ç |
| | | if (CollectionUtils.isNotEmpty(ivrLibaScriptVO.getIvrLibaScriptTagList())) { |
| | | for (IvrLibaScriptTag ivrLibaScriptTag : ivrLibaScriptVO.getIvrLibaScriptTagList()) { |
| | | if (ivrLibaScriptTag.getIsoperation() != null && ivrLibaScriptTag.getIsoperation() == 1) { |
| | | //æ°å¢ |
| | | ivrLibaScriptTag.setScriptid(ivrLibaScript.getId()); |
| | | ivrLibaScriptTagMapper.insertIvrLibaScriptTag(ivrLibaScriptTag); |
| | | } |
| | | if (ivrLibaScriptTag.getIsoperation() != null && ivrLibaScriptTag.getIsoperation() == 2) { |
| | | //ä¿®æ¹ |
| | | ivrLibaScriptTag.setScriptid(ivrLibaScript.getId()); |
| | | ivrLibaScriptTagMapper.updateIvrLibaScriptTag(ivrLibaScriptTag); |
| | | } |
| | | if (ivrLibaScriptTag.getIsoperation() != null && ivrLibaScriptTag.getIsoperation() == 3) { |
| | | //å é¤ |
| | | if (ivrLibaScriptTag.getId() == null) { |
| | | log.info("å é¤å¤±è´¥,é®é¢æ ç¾id为空"); |
| | | } else { |
| | | ivrLibaScriptTagMapper.deleteIvrLibaScriptTagById(ivrLibaScriptTag.getId()); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | |
| | | return i; |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript é®é¢è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaScript(IvrLibaScript ivrLibaScript) |
| | | { |
| | | public int insertIvrLibaScript(IvrLibaScript ivrLibaScript) { |
| | | ivrLibaScript.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptMapper.insertIvrLibaScript(ivrLibaScript); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * ä¿®æ¹é®é¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript é®é¢è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaScript(IvrLibaScript ivrLibaScript) |
| | | { |
| | | public int updateIvrLibaScript(IvrLibaScript ivrLibaScript) { |
| | | ivrLibaScript.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptMapper.updateIvrLibaScript(ivrLibaScript); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯åº |
| | | * |
| | | * @param questionids éè¦å é¤çè¯æ¯åºä¸»é® |
| | | * æ¹éå é¤é®é¢è¯æ¯åº |
| | | * |
| | | * @param questionids éè¦å é¤çé®é¢è¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptByQuestionids(String[] questionids) |
| | | { |
| | | return ivrLibaScriptMapper.deleteIvrLibaScriptByQuestionids(questionids); |
| | | public int deleteIvrLibaScriptByQuestionids(String[] questionids) { |
| | | Integer i = null; |
| | | for (String id : questionids) { |
| | | i = ivrLibaScriptMapper.deleteIvrLibaScriptByQuestionid(Integer.valueOf(id)); |
| | | } |
| | | return i; |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åºä¿¡æ¯ |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptByQuestionid(String questionid) |
| | | { |
| | | return ivrLibaScriptMapper.deleteIvrLibaScriptByQuestionid(questionid); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.smartor.domain.IvrLibaScriptTag; |
| | | import com.smartor.mapper.IvrLibaScriptTagMapper; |
| | | import com.smartor.service.IIvrLibaScriptTagService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯æ ç¾åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Service |
| | | public class IvrLibaScriptTagServiceImpl implements IIvrLibaScriptTagService { |
| | | @Autowired |
| | | private IvrLibaScriptTagMapper ivrLibaScriptTagMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param id é®é¢è¯æ¯æ ç¾åºä¸»é® |
| | | * @return é®é¢è¯æ¯æ ç¾åº |
| | | */ |
| | | @Override |
| | | public IvrLibaScriptTag selectIvrLibaScriptTagById(Long id) { |
| | | return ivrLibaScriptTagMapper.selectIvrLibaScriptTagById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯æ ç¾åºå表 |
| | | * |
| | | * @param ivrLibaScriptTag é®é¢è¯æ¯æ ç¾åº |
| | | * @return é®é¢è¯æ¯æ ç¾åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibaScriptTag> selectIvrLibaScriptTagList(IvrLibaScriptTag ivrLibaScriptTag) { |
| | | return ivrLibaScriptTagMapper.selectIvrLibaScriptTagList(ivrLibaScriptTag); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param ivrLibaScriptTag é®é¢è¯æ¯æ ç¾åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaScriptTag(IvrLibaScriptTag ivrLibaScriptTag) { |
| | | ivrLibaScriptTag.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptTagMapper.insertIvrLibaScriptTag(ivrLibaScriptTag); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param ivrLibaScriptTag é®é¢è¯æ¯æ ç¾åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaScriptTag(IvrLibaScriptTag ivrLibaScriptTag) { |
| | | ivrLibaScriptTag.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptTagMapper.updateIvrLibaScriptTag(ivrLibaScriptTag); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤é®é¢è¯æ¯æ ç¾åº |
| | | * |
| | | * @param ids éè¦å é¤çé®é¢è¯æ¯æ ç¾åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptTagByIds(Long[] ids) { |
| | | for (Long id : ids) { |
| | | ivrLibaScriptTagMapper.deleteIvrLibaScriptTagById(id); |
| | | } |
| | | return 1; |
| | | } |
| | | |
| | | /** |
| | | * å é¤é®é¢è¯æ¯æ ç¾åºä¿¡æ¯ |
| | | * |
| | | * @param id é®é¢è¯æ¯æ ç¾åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptTagById(Long id) { |
| | | return ivrLibaScriptTagMapper.deleteIvrLibaScriptTagById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.smartor.domain.IvrLibaScriptTarget; |
| | | import com.smartor.mapper.IvrLibaScriptTargetMapper; |
| | | import com.smartor.service.IIvrLibaScriptTargetService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯ææ åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Service |
| | | public class IvrLibaScriptTargetServiceImpl implements IIvrLibaScriptTargetService { |
| | | @Autowired |
| | | private IvrLibaScriptTargetMapper ivrLibaScriptTargetMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯ææ åº |
| | | * |
| | | * @param questionTargetID é®é¢è¯æ¯ææ åºä¸»é® |
| | | * @return é®é¢è¯æ¯ææ åº |
| | | */ |
| | | @Override |
| | | public IvrLibaScriptTarget selectIvrLibaScriptTargetByQuestionTargetID(String questionTargetID) { |
| | | return ivrLibaScriptTargetMapper.selectIvrLibaScriptTargetByQuestionTargetID(questionTargetID); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯ææ åºå表 |
| | | * |
| | | * @param ivrLibaScriptTarget é®é¢è¯æ¯ææ åº |
| | | * @return é®é¢è¯æ¯ææ åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibaScriptTarget> selectIvrLibaScriptTargetList(IvrLibaScriptTarget ivrLibaScriptTarget) { |
| | | return ivrLibaScriptTargetMapper.selectIvrLibaScriptTargetList(ivrLibaScriptTarget); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯ææ åº |
| | | * |
| | | * @param ivrLibaScriptTarget é®é¢è¯æ¯ææ åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaScriptTarget(IvrLibaScriptTarget ivrLibaScriptTarget) { |
| | | ivrLibaScriptTarget.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptTargetMapper.insertIvrLibaScriptTarget(ivrLibaScriptTarget); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯ææ åº |
| | | * |
| | | * @param ivrLibaScriptTarget é®é¢è¯æ¯ææ åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaScriptTarget(IvrLibaScriptTarget ivrLibaScriptTarget) { |
| | | ivrLibaScriptTarget.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptTargetMapper.updateIvrLibaScriptTarget(ivrLibaScriptTarget); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤é®é¢è¯æ¯ææ åº |
| | | * |
| | | * @param questionTargetIDs éè¦å é¤çé®é¢è¯æ¯ææ åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptTargetByQuestionTargetIDs(Integer[] ids) { |
| | | Integer i = null; |
| | | for (int id : ids) { |
| | | i = ivrLibaScriptTargetMapper.deleteIvrLibaScriptTargetByQuestionTargetID(Long.valueOf(id)); |
| | | } |
| | | return i; |
| | | } |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.smartor.domain.IvrLibaScriptTargetoption; |
| | | import com.smartor.mapper.IvrLibaScriptTargetoptionMapper; |
| | | import com.smartor.service.IIvrLibaScriptTargetoptionService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * é®é¢è¯æ¯ææ é项åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-21 |
| | | */ |
| | | @Service |
| | | public class IvrLibaScriptTargetoptionServiceImpl implements IIvrLibaScriptTargetoptionService { |
| | | @Autowired |
| | | private IvrLibaScriptTargetoptionMapper ivrLibaScriptTargetoptionMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param targetoptionid é®é¢è¯æ¯ææ é项åºä¸»é® |
| | | * @return é®é¢è¯æ¯ææ éé¡¹åº |
| | | */ |
| | | @Override |
| | | public IvrLibaScriptTargetoption selectIvrLibaScriptTargetoptionByTargetoptionid(String targetoptionid) { |
| | | return ivrLibaScriptTargetoptionMapper.selectIvrLibaScriptTargetoptionByTargetoptionid(targetoptionid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢é®é¢è¯æ¯ææ é项åºå表 |
| | | * |
| | | * @param ivrLibaScriptTargetoption é®é¢è¯æ¯ææ éé¡¹åº |
| | | * @return é®é¢è¯æ¯ææ éé¡¹åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibaScriptTargetoption> selectIvrLibaScriptTargetoptionList(IvrLibaScriptTargetoption ivrLibaScriptTargetoption) { |
| | | return ivrLibaScriptTargetoptionMapper.selectIvrLibaScriptTargetoptionList(ivrLibaScriptTargetoption); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaScriptTargetoption é®é¢è¯æ¯ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaScriptTargetoption(IvrLibaScriptTargetoption ivrLibaScriptTargetoption) { |
| | | ivrLibaScriptTargetoption.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptTargetoptionMapper.insertIvrLibaScriptTargetoption(ivrLibaScriptTargetoption); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaScriptTargetoption é®é¢è¯æ¯ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaScriptTargetoption(IvrLibaScriptTargetoption ivrLibaScriptTargetoption) { |
| | | ivrLibaScriptTargetoption.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptTargetoptionMapper.updateIvrLibaScriptTargetoption(ivrLibaScriptTargetoption); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤é®é¢è¯æ¯ææ éé¡¹åº |
| | | * |
| | | * @param targetoptionids éè¦å é¤çé®é¢è¯æ¯ææ é项åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptTargetoptionByTargetoptionids(String[] targetoptionids) { |
| | | Integer i = null; |
| | | for (String id : targetoptionids) { |
| | | i = ivrLibaScriptTargetoptionMapper.deleteIvrLibaScriptTargetoptionByTargetoptionid(Long.valueOf(id)); |
| | | } |
| | | |
| | | return i; |
| | | } |
| | | |
| | | |
| | | } |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.smartor.domain.IvrLibaTarget; |
| | | import com.ruoyi.common.utils.DtoConversionUtils; |
| | | import com.smartor.domain.*; |
| | | import com.smartor.mapper.IvrLibaTargetMapper; |
| | | import com.smartor.mapper.IvrLibaTargetTagMapper; |
| | | import com.smartor.mapper.IvrLibaTargetoptionMapper; |
| | | import com.smartor.service.IIvrLibaTargetService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.commons.collections4.CollectionUtils; |
| | | import org.apache.commons.lang3.ObjectUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ é项åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-14 |
| | | */ |
| | | @Slf4j |
| | | @Service |
| | | public class IvrLibaTargetServiceImpl implements IIvrLibaTargetService |
| | | { |
| | | public class IvrLibaTargetServiceImpl implements IIvrLibaTargetService { |
| | | @Autowired |
| | | private IvrLibaTargetMapper ivrLibaTargetMapper; |
| | | |
| | | @Autowired |
| | | private IvrLibaTargetTagMapper ivrLibaTargetTagMapper; |
| | | |
| | | @Autowired |
| | | private IvrLibaTargetoptionMapper ivrLibaTargetoptionMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ éé¡¹åº |
| | | * |
| | | * |
| | | * @param targetID ææ é项åºä¸»é® |
| | | * @return ææ éé¡¹åº |
| | | */ |
| | | @Override |
| | | public IvrLibaTarget selectIvrLibaTargetByTargetID(Long targetID) |
| | | { |
| | | public IvrLibaTarget selectIvrLibaTargetByTargetID(Long targetID) { |
| | | return ivrLibaTargetMapper.selectIvrLibaTargetByTargetID(targetID); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ é项åºå表 |
| | | * |
| | | * |
| | | * @param ivrLibaTarget ææ éé¡¹åº |
| | | * @return ææ éé¡¹åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibaTarget> selectIvrLibaTargetList(IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | public List<IvrLibaTarget> selectIvrLibaTargetList(IvrLibaTarget ivrLibaTarget) { |
| | | return ivrLibaTargetMapper.selectIvrLibaTargetList(ivrLibaTarget); |
| | | } |
| | | |
| | | @Override |
| | | public List<IvrLibaTargetVO> targetInfo(IvrLibaTarget ivrLibaTarget) { |
| | | List<IvrLibaTarget> ivrLibaTargets = ivrLibaTargetMapper.selectIvrLibaTargetList(ivrLibaTarget); |
| | | List<IvrLibaTargetVO> ivrLibaTargetVOS = DtoConversionUtils.sourceToTarget(ivrLibaTargets, IvrLibaTargetVO.class); |
| | | for (IvrLibaTargetVO ivrLibaTarget1 : ivrLibaTargetVOS) { |
| | | IvrLibaTargetoption ivrLibaTargetoption = new IvrLibaTargetoption(); |
| | | ivrLibaTargetoption.setTargetid(ivrLibaTarget1.getTargetID()); |
| | | //è·åè¯¥ææ çé项 |
| | | List<IvrLibaTargetoption> ivrLibaTargetoptions = ivrLibaTargetoptionMapper.selectIvrLibaTargetoptionList(ivrLibaTargetoption); |
| | | if (CollectionUtils.isNotEmpty(ivrLibaTargetoptions)) { |
| | | ivrLibaTarget1.setTargetoptionList(ivrLibaTargetoptions); |
| | | } |
| | | //è·åè¯¥ææ çæ ç¾ |
| | | List<BaseTag> baseTags = ivrLibaTargetTagMapper.selectTagName(ivrLibaTarget1.getTargetID()); |
| | | ivrLibaTarget1.setBaseTagList(baseTags); |
| | | } |
| | | //ä¸é¢ç¨å·¦å¤æè§æç¹é®é¢ï¼whereä¸çoptionçdelä¼å¯¼è´å·¦è¾¹çæ¥è¯¢ä¸å
¨ï¼å
ä¸ç¨å§ |
| | | // ivrLibaTargetMapper.targetInfo(ivrLibaTarget) |
| | | return ivrLibaTargetVOS; |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaTarget ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaTargetVO ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaTarget(IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public int insertIvrLibaTarget(IvrLibaTargetVO ivrLibaTargetVO) { |
| | | //æ°å¢ææ ä¿¡æ¯ |
| | | IvrLibaTarget ivrLibaTarget = DtoConversionUtils.sourceToTarget(ivrLibaTargetVO, IvrLibaTarget.class); |
| | | ivrLibaTarget.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTargetMapper.insertIvrLibaTarget(ivrLibaTarget); |
| | | ivrLibaTargetMapper.insertIvrLibaTarget(ivrLibaTarget); |
| | | |
| | | //æ°å¢è¯¥ææ 对åºçæ ç¾ä¿¡æ¯ |
| | | for (BaseTag baseTag : ivrLibaTargetVO.getBaseTagList()) { |
| | | IvrLibaTargetTag ivrLibaTargetTag = new IvrLibaTargetTag(); |
| | | ivrLibaTargetTag.setTagcategoryid(baseTag.getTagcategoryid()); |
| | | ivrLibaTargetTag.setTargetid(ivrLibaTarget.getTargetID()); |
| | | //åç«¯ä¼ æ¥çbaseTagçtagidå°±æ¯ææ æ ç¾ç主é®id,䏿¯baseTagçä¸»é® |
| | | ivrLibaTargetTag.setTagid(baseTag.getTagid()); |
| | | ivrLibaTargetTagMapper.insertIvrLibaTargetTag(ivrLibaTargetTag); |
| | | } |
| | | |
| | | //æ°å¢è¯¥ææ 对åºçææ éé¡¹ä¿¡æ¯ |
| | | for (IvrLibaTargetoption targetoption : ivrLibaTargetVO.getTargetoptionList()) { |
| | | if (ObjectUtils.isEmpty(targetoption)) continue; |
| | | log.info("targetoptionçæ°æ®ä¸ºï¼{}", targetoption); |
| | | targetoption.setTargetid(ivrLibaTarget.getTargetID()); |
| | | ivrLibaTargetoptionMapper.insertIvrLibaTargetoption(targetoption); |
| | | } |
| | | |
| | | log.info("ææ id为ï¼{}", ivrLibaTarget.getTargetID().intValue()); |
| | | return ivrLibaTarget.getTargetID().intValue(); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaTarget ææ éé¡¹åº |
| | | * æ°å¢æä¿®æ¹ææ éé¡¹åº |
| | | * |
| | | * @param ivrLibaTargetVO ææ éé¡¹åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaTarget(IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public int saveOrupdateIvrLibaTarget(IvrLibaTargetVO ivrLibaTargetVO) { |
| | | IvrLibaTarget ivrLibaTarget = DtoConversionUtils.sourceToTarget(ivrLibaTargetVO, IvrLibaTarget.class); |
| | | ivrLibaTarget.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTargetMapper.updateIvrLibaTarget(ivrLibaTarget); |
| | | if (ivrLibaTargetVO.getIsoperation() != null && ivrLibaTargetVO.getIsoperation() == 1) { |
| | | //æ°å¢ |
| | | ivrLibaTargetMapper.insertIvrLibaTarget(ivrLibaTarget); |
| | | } else if (ivrLibaTargetVO.getIsoperation() != null && ivrLibaTargetVO.getIsoperation() == 2) { |
| | | //ä¿®æ¹ |
| | | ivrLibaTargetMapper.updateIvrLibaTarget(ivrLibaTarget); |
| | | } |
| | | |
| | | if (CollectionUtils.isNotEmpty(ivrLibaTargetVO.getBaseTagList())) { |
| | | for (BaseTag baseTag : ivrLibaTargetVO.getBaseTagList()) { |
| | | if (baseTag.getIsoperation() != null && baseTag.getIsoperation() == 1) { |
| | | //æ°å¢ |
| | | IvrLibaTargetTag ivrLibaTargetTag = new IvrLibaTargetTag(); |
| | | ivrLibaTargetTag.setTagcategoryid(baseTag.getTagcategoryid()); |
| | | ivrLibaTargetTag.setTargetid(ivrLibaTarget.getTargetID()); |
| | | //åç«¯ä¼ æ¥çbaseTagçtagidå°±æ¯ææ æ ç¾ç主é®id,䏿¯baseTagçä¸»é® |
| | | ivrLibaTargetTag.setTagid(baseTag.getTagid()); |
| | | ivrLibaTargetTagMapper.insertIvrLibaTargetTag(ivrLibaTargetTag); |
| | | } else if (baseTag.getIsoperation() != null && baseTag.getIsoperation() == 2) { |
| | | //å端页é¢åºè¯¥æ²¡æä¿®æ¹ |
| | | } else if (baseTag.getIsoperation() != null && baseTag.getIsoperation() == 3) { |
| | | //å é¤ |
| | | ivrLibaTargetTagMapper.deleteIvrLibaTargetTagById(baseTag.getTagid()); |
| | | } |
| | | } |
| | | } |
| | | if (CollectionUtils.isNotEmpty(ivrLibaTargetVO.getTargetoptionList())) { |
| | | for (IvrLibaTargetoption ivrLibaTargetoption : ivrLibaTargetVO.getTargetoptionList()) { |
| | | if (ivrLibaTargetoption.getIsoperation() != null && ivrLibaTargetoption.getIsoperation() == 1) { |
| | | //æ°å¢ |
| | | ivrLibaTargetoption.setTargetid(ivrLibaTarget.getTargetID()); |
| | | ivrLibaTargetoptionMapper.insertIvrLibaTargetoption(ivrLibaTargetoption); |
| | | } else if (ivrLibaTargetoption.getIsoperation() != null && ivrLibaTargetoption.getIsoperation() == 2) { |
| | | //ä¿®æ¹ |
| | | ivrLibaTargetoptionMapper.updateIvrLibaTargetoption(ivrLibaTargetoption); |
| | | } else if (ivrLibaTargetoption.getIsoperation() != null && ivrLibaTargetoption.getIsoperation() == 3) { |
| | | // å é¤ |
| | | ivrLibaTargetoptionMapper.deleteIvrLibaTargetoptionByTargetoptionid(ivrLibaTargetoption.getTargetoptionid()); |
| | | } |
| | | |
| | | } |
| | | } |
| | | |
| | | return ivrLibaTarget.getTargetID().intValue(); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * æ¹éå 餿æ éé¡¹åº |
| | | * |
| | | * |
| | | * @param targetIDs éè¦å é¤çææ é项åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTargetByTargetIDs(Long[] targetIDs) |
| | | { |
| | | public int deleteIvrLibaTargetByTargetIDs(Long[] targetIDs) { |
| | | return ivrLibaTargetMapper.deleteIvrLibaTargetByTargetIDs(targetIDs); |
| | | } |
| | | |
| | | /** |
| | | * å 餿æ é项åºä¿¡æ¯ |
| | | * |
| | | * |
| | | * @param targetID ææ é项åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTargetByTargetID(Long targetID) |
| | | { |
| | | public int deleteIvrLibaTargetByTargetID(Long targetID) { |
| | | return ivrLibaTargetMapper.deleteIvrLibaTargetByTargetID(targetID); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.smartor.domain.BaseTag; |
| | | import com.smartor.domain.IvrLibaTargetTag; |
| | | import com.smartor.domain.IvrLibaTargetTagVO; |
| | | import com.smartor.mapper.BaseTagMapper; |
| | | import com.smartor.mapper.IvrLibaTargetTagMapper; |
| | | import com.smartor.service.IIvrLibaTargetTagService; |
| | | import org.checkerframework.checker.units.qual.A; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ æ ç¾Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | @Service |
| | | public class IvrLibaTargetTagServiceImpl implements IIvrLibaTargetTagService { |
| | | @Autowired |
| | | private IvrLibaTargetTagMapper ivrLibaTargetTagMapper; |
| | | |
| | | @Autowired |
| | | private BaseTagMapper baseTagMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ æ ç¾ |
| | | * |
| | | * @param id ææ æ ç¾ä¸»é® |
| | | * @return ææ æ ç¾ |
| | | */ |
| | | @Override |
| | | public IvrLibaTargetTag selectIvrLibaTargetTagById(Long id) { |
| | | return ivrLibaTargetTagMapper.selectIvrLibaTargetTagById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ æ ç¾å表 |
| | | * |
| | | * @param ivrLibaTargetTag ææ æ ç¾ |
| | | * @return ææ æ ç¾ |
| | | */ |
| | | @Override |
| | | public List<IvrLibaTargetTag> selectIvrLibaTargetTagList(IvrLibaTargetTag ivrLibaTargetTag) { |
| | | return ivrLibaTargetTagMapper.selectIvrLibaTargetTagList(ivrLibaTargetTag); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ æ ç¾ |
| | | * |
| | | * @param ivrLibaTargetTag ææ æ ç¾ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaTargetTag(IvrLibaTargetTag ivrLibaTargetTag) { |
| | | ivrLibaTargetTag.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTargetTagMapper.insertIvrLibaTargetTag(ivrLibaTargetTag); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ æ ç¾ |
| | | * |
| | | * @param ivrLibaTargetTag ææ æ ç¾ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaTargetTag(IvrLibaTargetTag ivrLibaTargetTag) { |
| | | ivrLibaTargetTag.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTargetTagMapper.updateIvrLibaTargetTag(ivrLibaTargetTag); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤ææ æ ç¾ |
| | | * |
| | | * @param ids éè¦å é¤çææ æ ç¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTargetTagByIds(Long[] ids) { |
| | | return ivrLibaTargetTagMapper.deleteIvrLibaTargetTagByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ææ æ ç¾ä¿¡æ¯ |
| | | * |
| | | * @param id ææ æ ç¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTargetTagById(Long id) { |
| | | return ivrLibaTargetTagMapper.deleteIvrLibaTargetTagById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import com.smartor.domain.IvrLibaTemplatetargetAssort; |
| | | import com.smartor.mapper.IvrLibaTemplatetargetAssortMapper; |
| | | import com.smartor.service.IIvrLibaTemplatetargetAssortService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * ææ æ¨¡æ¿åç±»Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-12-18 |
| | | */ |
| | | @Service |
| | | public class IvrLibaTemplatetargetAssortServiceImpl implements IIvrLibaTemplatetargetAssortService { |
| | | @Autowired |
| | | private IvrLibaTemplatetargetAssortMapper ivrLibaTemplatetargetAssortMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ 模æ¿åç±» |
| | | * |
| | | * @param id ææ æ¨¡æ¿åç±»ä¸»é® |
| | | * @return ææ æ¨¡æ¿åç±» |
| | | */ |
| | | @Override |
| | | public IvrLibaTemplatetargetAssort selectIvrLibaTemplatetargetAssortById(Long id) { |
| | | return ivrLibaTemplatetargetAssortMapper.selectIvrLibaTemplatetargetAssortById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ 模æ¿åç±»å表 |
| | | * |
| | | * @param ivrLibaTemplatetargetAssort ææ æ¨¡æ¿åç±» |
| | | * @return ææ æ¨¡æ¿åç±» |
| | | */ |
| | | @Override |
| | | public List<IvrLibaTemplatetargetAssort> selectIvrLibaTemplatetargetAssortList(IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort) { |
| | | return ivrLibaTemplatetargetAssortMapper.selectIvrLibaTemplatetargetAssortList(ivrLibaTemplatetargetAssort); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ 模æ¿åç±» |
| | | * |
| | | * @param ivrLibaTemplatetargetAssort ææ æ¨¡æ¿åç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaTemplatetargetAssort(IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort) { |
| | | ivrLibaTemplatetargetAssort.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTemplatetargetAssortMapper.insertIvrLibaTemplatetargetAssort(ivrLibaTemplatetargetAssort); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ æ¨¡æ¿åç±» |
| | | * |
| | | * @param ivrLibaTemplatetargetAssort ææ æ¨¡æ¿åç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaTemplatetargetAssort(IvrLibaTemplatetargetAssort ivrLibaTemplatetargetAssort) { |
| | | ivrLibaTemplatetargetAssort.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTemplatetargetAssortMapper.updateIvrLibaTemplatetargetAssort(ivrLibaTemplatetargetAssort); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤ææ æ¨¡æ¿åç±» |
| | | * |
| | | * @param ids éè¦å é¤çææ æ¨¡æ¿åç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTemplatetargetAssortByIds(Long[] ids) { |
| | | return ivrLibaTemplatetargetAssortMapper.deleteIvrLibaTemplatetargetAssortByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ææ æ¨¡æ¿åç±»ä¿¡æ¯ |
| | | * |
| | | * @param id ææ æ¨¡æ¿åç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTemplatetargetAssortById(Long id) { |
| | | return ivrLibaTemplatetargetAssortMapper.deleteIvrLibaTemplatetargetAssortById(id); |
| | | } |
| | | } |
| | |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertPatArchive(PatArchive patArchive) { |
| | | public Integer insertPatArchive(PatArchive patArchive) { |
| | | patArchive.setCreateTime(DateUtils.getNowDate()); |
| | | List<PatArchive> patArchives = new ArrayList<>(); |
| | | patArchives.add(patArchive); |
| | | return patArchiveMapper.insertPatArchive(patArchives); |
| | | patArchiveMapper.insertPatArchive(patArchives); |
| | | if (CollectionUtils.isNotEmpty(patArchives)) { |
| | | patArchives.get(0).getPatid(); |
| | | log.info("æ£è
id为: {}", patArchives.get(0).getPatid()); |
| | | return patArchives.get(0).getPatid().intValue(); |
| | | } |
| | | return null; |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
æ¡£æ¡ |
| | | * æ°å¢æä¿®æ¹æ£è
æ¡£ä¿¡æ¯ |
| | | * |
| | | * @param patArchive æ£è
æ¡£æ¡ |
| | | * @param patArchiveVO æ°å¢æä¿®æ¹æ£è
æ¡£ä¿¡æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Transactional(rollbackFor = Exception.class) |
| | | @Override |
| | | public Boolean updatePatArchive(PatArchive patArchive) { |
| | | patArchive.setUpdateTime(DateUtils.getNowDate()); |
| | | public Boolean saveOrUpdatePatInfo(PatArchiveVO patArchiveVO) { |
| | | //éè¿isoperationæ¥å¤ææ¯å¦æ°å¢ |
| | | PatArchive patArchive = DtoConversionUtils.sourceToTarget(patArchiveVO, PatArchive.class); |
| | | if (patArchiveVO.getIsoperation() != null && patArchiveVO.getIsoperation() == 1) { |
| | | //æ°å¢ |
| | | List<PatArchive> patArchives = new ArrayList<>(); |
| | | patArchive.setUpdateTime(DateUtils.getNowDate()); |
| | | patArchives.add(patArchive); |
| | | patArchiveMapper.insertPatArchive(patArchives); |
| | | } else if (patArchiveVO.getIsoperation() != null && patArchiveVO.getIsoperation() == 2) { |
| | | //ä¿®æ¹ |
| | | patArchiveMapper.updatePatArchive(patArchive); |
| | | } |
| | | |
| | | for (String tagName : patArchive.getTagList()) { |
| | | BaseTag baseTag = new BaseTag(); |
| | | baseTag.setTagname(tagName); |
| | | List<BaseTag> baseTags = baseTagMapper.selectBaseTagList(baseTag); |
| | | |
| | | if (CollectionUtils.isEmpty(baseTags)) { |
| | | baseTag = new BaseTag(); |
| | | baseTag.setTagcategoryid(1L); |
| | | baseTag.setTagname(tagName); |
| | | baseTag.setOrgid(null); |
| | | baseTag.setDelFlag("0"); |
| | | baseTag.setCreateBy(null); |
| | | baseTag.setCreateTime(new Date()); |
| | | baseTag.setCreateBy(null); |
| | | baseTag.setCreateTime(new Date()); |
| | | baseTagMapper.insertBaseTag(baseTag); |
| | | //ç¶ååå¾pat_archivetagè¡¨ä¸æ°å¢ |
| | | } else { |
| | | //妿å¨basetagä¸åå¨,åæ ¹æ®tagidåpatidå»pat_archivetagè¡¨ä¸æ¥è¯¢æ¯å¦åå¨ |
| | | baseTag = baseTags.get(0); |
| | | PatArchivetag patArchivetag = new PatArchivetag(); |
| | | patArchivetag.setPatid(patArchive.getPatid()); |
| | | patArchivetag.setTagid(baseTag.getTagid()); |
| | | List<PatArchivetag> patArchivetags = patArchivetagMapper.selectPatArchivetagAndBaseTagList(patArchivetag); |
| | | if (CollectionUtils.isNotEmpty(patArchivetags)) { |
| | | //妿åå¨ï¼continue; |
| | | continue; |
| | | } else { |
| | | //妿ä¸åå¨ï¼ååpat_archivetag䏿°å¢ |
| | | // æ°å¢æ£è
æ¡£æ¡æ ç¾ |
| | | if (CollectionUtils.isNotEmpty(patArchiveVO.getTagList())) { |
| | | //å¤çæ ç¾ï¼æ°å¢ãå é¤ï¼ |
| | | for (PatArchivetag patArchivetag : patArchiveVO.getTagList()) { |
| | | if (patArchivetag.getIsoperation() != null && patArchivetag.getIsoperation() == 1) { |
| | | //æ°å¢ |
| | | patArchivetag.setUpdateBy(null); |
| | | patArchivetag.setCreateTime(new Date()); |
| | | patArchivetag.setPatid(patArchive.getPatid()); |
| | | patArchivetagMapper.insertPatArchivetag(patArchivetag); |
| | | } else if (patArchivetag.getIsoperation() != null && patArchivetag.getIsoperation() == 3) { |
| | | patArchivetag.setDelFlag("1"); |
| | | //å é¤ |
| | | log.info("æ ç¾çid为ï¼{}", patArchivetag.getTagid()); |
| | | patArchivetagMapper.deletePatArchivetagById(patArchivetag); |
| | | } |
| | | } |
| | | PatArchivetag patArchivetag = DtoConversionUtils.sourceToTarget(baseTag, PatArchivetag.class); |
| | | patArchivetag.setUpdateBy(null); |
| | | patArchivetag.setCreateTime(new Date()); |
| | | patArchivetag.setPatid(patArchive.getPatid()); |
| | | patArchivetagMapper.insertPatArchivetag(patArchivetag); |
| | | |
| | | } |
| | | patArchiveMapper.updatePatArchive(patArchive); |
| | | return true; |
| | | } |
| | | |
| | |
| | | //å¯¹æ°æ®è¿è¡å°è£
|
| | | for (List<PatArchive> list : listMap.values()) { |
| | | PatArchive patArchive1 = new PatArchive(); |
| | | Set<String> stringList = new HashSet<>(); |
| | | Set<PatArchivetag> stringList = new HashSet<>(); |
| | | for (int i = 0; i < list.size(); i++) { |
| | | if (i == 0) { |
| | | patArchive1 = DtoConversionUtils.sourceToTarget(list.get(0), PatArchive.class); |
| | |
| | | patArchive1.setTag(""); |
| | | } |
| | | //å°æ¥åºçtagï¼æ¾å°patArchive1éçTagListä¸ |
| | | stringList.add(list.get(i).getTag()); |
| | | PatArchivetag patArchivetag = new PatArchivetag(); |
| | | patArchivetag.setTagname(list.get(i).getTag()); |
| | | patArchivetag.setTagid(list.get(i).getTagid()); |
| | | stringList.add(patArchivetag); |
| | | } |
| | | patArchive1.setTagList(stringList.stream().collect(Collectors.toList())); |
| | | patArchives.add(patArchive1); |
| | |
| | | return patArchivetagMapper.deletePatArchivetagByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿£è
æ¡£æ¡æ ç¾ä¿¡æ¯ |
| | | * |
| | | * @param id æ£è
æ¡£æ¡æ ç¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deletePatArchivetagById(Long id) { |
| | | return patArchivetagMapper.deletePatArchivetagById(id); |
| | | } |
| | | |
| | | |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.Icd10Mapper"> |
| | | |
| | | <resultMap type="com.smartor.domain.Icd10" id="Icd10Result"> |
| | | <result property="icdid" column="icdid" /> |
| | | <result property="icdcode" column="icdcode" /> |
| | | <result property="icdname" column="icdname" /> |
| | | <result property="icdpym" column="icdpym" /> |
| | | <result property="icdwbm" column="icdwbm" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="pid" column="pid" /> |
| | | <result property="guid" column="guid" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIcd10Vo"> |
| | | select icdid, icdcode, icdname, icdpym, icdwbm, orgid, del_flag, create_by, create_time, update_by, update_time, pid, guid from icd10 |
| | | </sql> |
| | | |
| | | <select id="selectIcd10List" parameterType="com.smartor.domain.Icd10" resultMap="Icd10Result"> |
| | | <include refid="selectIcd10Vo"/> |
| | | <where> |
| | | <if test="icdcode != null and icdcode != ''"> and icdcode = #{icdcode}</if> |
| | | <if test="icdname != null and icdname != ''"> and icdname like concat('%', #{icdname}, '%')</if> |
| | | <if test="icdpym != null and icdpym != ''"> and icdpym = #{icdpym}</if> |
| | | <if test="icdwbm != null and icdwbm != ''"> and icdwbm = #{icdwbm}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="pid != null "> and pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''"> and guid = #{guid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIcd10ByIcdid" parameterType="Long" resultMap="Icd10Result"> |
| | | <include refid="selectIcd10Vo"/> |
| | | where icdid = #{icdid} |
| | | </select> |
| | | |
| | | <insert id="insertIcd10" parameterType="com.smartor.domain.Icd10" useGeneratedKeys="true" keyProperty="icdid"> |
| | | insert into icd10 |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="icdcode != null">icdcode,</if> |
| | | <if test="icdname != null">icdname,</if> |
| | | <if test="icdpym != null">icdpym,</if> |
| | | <if test="icdwbm != null">icdwbm,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null">del_flag,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="pid != null">pid,</if> |
| | | <if test="guid != null">guid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="icdcode != null">#{icdcode},</if> |
| | | <if test="icdname != null">#{icdname},</if> |
| | | <if test="icdpym != null">#{icdpym},</if> |
| | | <if test="icdwbm != null">#{icdwbm},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null">#{delFlag},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="pid != null">#{pid},</if> |
| | | <if test="guid != null">#{guid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIcd10" parameterType="com.smartor.domain.Icd10"> |
| | | update icd10 |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="icdcode != null">icdcode = #{icdcode},</if> |
| | | <if test="icdname != null">icdname = #{icdname},</if> |
| | | <if test="icdpym != null">icdpym = #{icdpym},</if> |
| | | <if test="icdwbm != null">icdwbm = #{icdwbm},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null">del_flag = #{delFlag},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="pid != null">pid = #{pid},</if> |
| | | <if test="guid != null">guid = #{guid},</if> |
| | | </trim> |
| | | where icdid = #{icdid} |
| | | </update> |
| | | |
| | | <delete id="deleteIcd10ByIcdid" parameterType="Long"> |
| | | delete from icd10 where icdid = #{icdid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIcd10ByIcdids" parameterType="String"> |
| | | delete from icd10 where icdid in |
| | | <foreach item="icdid" collection="array" open="(" separator="," close=")"> |
| | | #{icdid} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaOutIcd10Mapper"> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaTargetIcd10" id="IvrLibaTargetIcd10Result"> |
| | | <result property="id" column="id"/> |
| | | <result property="icd10id" column="icd10id"/> |
| | | <result property="icd10code" column="icd10code"/> |
| | | <result property="icd10name" column="icd10name"/> |
| | | <result property="orgid" column="orgid"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="outid" column="outid"/> |
| | | <result property="pid" column="pid"/> |
| | | <result property="guid" column="guid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaTargetIcd10Vo"> |
| | | select id, |
| | | icd10id, |
| | | icd10code, |
| | | icd10name, |
| | | orgid, |
| | | del_flag, |
| | | update_by, |
| | | update_time, |
| | | create_by, |
| | | create_time, |
| | | isupload, |
| | | upload_time, |
| | | type, |
| | | outid, |
| | | pid, |
| | | guid |
| | | from ivr_liba_out_icd10 |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTargetIcd10List" parameterType="com.smartor.domain.IvrLibaTargetIcd10" |
| | | resultMap="IvrLibaTargetIcd10Result"> |
| | | <include refid="selectIvrLibaTargetIcd10Vo"/> |
| | | <where> |
| | | <if test="icd10id != null ">and icd10id = #{icd10id}</if> |
| | | <if test="icd10code != null and icd10code != ''">and icd10code = #{icd10code}</if> |
| | | <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if> |
| | | <if test="isupload != null ">and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null ">and upload_time = #{uploadTime}</if> |
| | | <if test="outid != null ">and outid = #{outid}</if> |
| | | <if test="type != null ">and type = #{type}</if> |
| | | <if test="pid != null ">and pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''">and guid = #{guid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaTargetIcd10ById" parameterType="Long" resultMap="IvrLibaTargetIcd10Result"> |
| | | <include refid="selectIvrLibaTargetIcd10Vo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTargetIcd10" parameterType="com.smartor.domain.IvrLibaTargetIcd10" useGeneratedKeys="true" |
| | | keyProperty="id"> |
| | | insert into ivr_liba_out_icd10 |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="icd10id != null">icd10id,</if> |
| | | <if test="icd10code != null">icd10code,</if> |
| | | <if test="icd10name != null">icd10name,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="outid != null">outid,</if> |
| | | <if test="type != null">type,</if> |
| | | <if test="pid != null">pid,</if> |
| | | <if test="guid != null">guid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="icd10id != null">#{icd10id},</if> |
| | | <if test="icd10code != null">#{icd10code},</if> |
| | | <if test="icd10name != null">#{icd10name},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="outid != null">#{outid},</if> |
| | | <if test="type != null">#{type},</if> |
| | | <if test="pid != null">#{pid},</if> |
| | | <if test="guid != null">#{guid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTargetIcd10" parameterType="com.smartor.domain.IvrLibaTargetIcd10"> |
| | | update ivr_liba_out_icd10 |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="icd10id != null">icd10id = #{icd10id},</if> |
| | | <if test="icd10code != null">icd10code = #{icd10code},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="outid != null">outid = #{outid},</if> |
| | | <if test="type != null">type = #{type},</if> |
| | | <if test="pid != null">pid = #{pid},</if> |
| | | <if test="guid != null">guid = #{guid},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTargetIcd10ById" parameterType="Long"> |
| | | delete |
| | | from ivr_liba_out_icd10 |
| | | where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTargetIcd10ByIds" parameterType="String"> |
| | | delete from ivr_liba_out_icd10 where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaScriptAssortMapper"> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaScriptAssort" id="IvrLibaScriptAssortResult"> |
| | | <result property="id" column="id"/> |
| | | <result property="indexAssortName" column="index_assort_name"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="pid" column="pid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaScriptAssortVo"> |
| | | select id, index_assort_name, del_flag, create_time, update_time, pid |
| | | from ivr_liba_script_assort |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaScriptAssortList" parameterType="com.smartor.domain.IvrLibaScriptAssort" |
| | | resultMap="IvrLibaScriptAssortResult"> |
| | | <include refid="selectIvrLibaScriptAssortVo"/> |
| | | <where> |
| | | <if test="indexAssortName != null and indexAssortName != ''">and index_assort_name like concat('%', |
| | | #{indexAssortName}, '%') |
| | | </if> |
| | | <if test="pid != null ">and pid = #{pid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaScriptAssortById" parameterType="Long" resultMap="IvrLibaScriptAssortResult"> |
| | | <include refid="selectIvrLibaScriptAssortVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaScriptAssort" parameterType="com.smartor.domain.IvrLibaScriptAssort"> |
| | | insert into ivr_liba_script_assort |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">id,</if> |
| | | <if test="indexAssortName != null and indexAssortName != ''">index_assort_name,</if> |
| | | <if test="delFlag != null">del_flag,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="pid != null">pid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">#{id},</if> |
| | | <if test="indexAssortName != null and indexAssortName != ''">#{indexAssortName},</if> |
| | | <if test="delFlag != null">#{delFlag},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="pid != null">#{pid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaScriptAssort" parameterType="com.smartor.domain.IvrLibaScriptAssort"> |
| | | update ivr_liba_script_assort |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="indexAssortName != null and indexAssortName != ''">index_assort_name = #{indexAssortName},</if> |
| | | <if test="delFlag != null">del_flag = #{delFlag},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="pid != null">pid = #{pid},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaScriptAssortById" parameterType="Long"> |
| | | delete |
| | | from ivr_liba_script_assort |
| | | where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaScriptAssortByIds" parameterType="String"> |
| | | delete from ivr_liba_script_assort where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaScriptMapper"> |
| | | |
| | | <resultMap type="IvrLibaScript" id="IvrLibaScriptResult"> |
| | | <result property="questionid" column="questionid" /> |
| | | <result property="questionpoint" column="questionpoint" /> |
| | | <result property="questiontext" column="questiontext" /> |
| | | <result property="questionvoice" column="questionvoice" /> |
| | | <result property="nomatchtext" column="nomatchtext" /> |
| | | <result property="nomatchvoice" column="nomatchvoice" /> |
| | | <result property="sliencetext" column="sliencetext" /> |
| | | <result property="sliencevoice" column="sliencevoice" /> |
| | | <result property="submoduletext" column="submoduletext" /> |
| | | <result property="submodulevoice" column="submodulevoice" /> |
| | | <result property="noclearlytext" column="noclearlytext" /> |
| | | <result property="noclearlyvoice" column="noclearlyvoice" /> |
| | | <result property="questiontype" column="questiontype" /> |
| | | <result property="categoryname" column="categoryname" /> |
| | | <result property="targetoptions" column="targetoptions" /> |
| | | <result property="language" column="language" /> |
| | | <result property="note" column="note" /> |
| | | <result property="version" column="version" /> |
| | | <result property="isenable" column="isenable" /> |
| | | <result property="isdel" column="isdel" /> |
| | | <result property="adduserid" column="adduserid" /> |
| | | <result property="addtime" column="addtime" /> |
| | | <result property="modifyuserid" column="modifyuserid" /> |
| | | <result property="modifytime" column="modifytime" /> |
| | | <result property="groupid" column="groupid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="orgid" column="orgid" /> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaScript" id="IvrLibaScriptResult"> |
| | | <result property="id" column="id"/> |
| | | <result property="questiontitle" column="questiontitle"/> |
| | | <result property="questiontext" column="questiontext"/> |
| | | <result property="questionvoice" column="questionvoice"/> |
| | | <result property="nomatchtext" column="nomatchtext"/> |
| | | <result property="nomatchvoice" column="nomatchvoice"/> |
| | | <result property="sliencetext" column="sliencetext"/> |
| | | <result property="sliencevoice" column="sliencevoice"/> |
| | | <result property="submoduletext" column="submoduletext"/> |
| | | <result property="submodulevoice" column="submodulevoice"/> |
| | | <result property="noclearlytext" column="noclearlytext"/> |
| | | <result property="noclearlyvoice" column="noclearlyvoice"/> |
| | | <result property="questiontype" column="questiontype"/> |
| | | <result property="targetid" column="targetid"/> |
| | | <result property="targetname" column="targetname"/> |
| | | <result property="targetoptions" column="targetoptions"/> |
| | | <result property="language" column="language"/> |
| | | <result property="remark" column="remark"/> |
| | | <result property="version" column="version"/> |
| | | <result property="usestate" column="usestate"/> |
| | | <result property="adduserid" column="adduserid"/> |
| | | <result property="addtime" column="addtime"/> |
| | | <result property="modifyuserid" column="modifyuserid"/> |
| | | <result property="modifytime" column="modifytime"/> |
| | | <result property="assortid" column="assortid"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="orgid" column="orgid"/> |
| | | <result property="pid" column="pid"/> |
| | | <result property="guid" column="guid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaScriptVo"> |
| | | select questionid, questionpoint, questiontext, questionvoice, nomatchtext, nomatchvoice, sliencetext, sliencevoice, submoduletext, submodulevoice, noclearlytext, noclearlyvoice, questiontype, categoryname, targetoptions, language, note, version, isenable, isdel, adduserid, addtime, modifyuserid, modifytime, groupid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid from ivr_liba_script |
| | | select id, |
| | | questiontitle, |
| | | isenable, |
| | | questiontext, |
| | | questionvoice, |
| | | nomatchtext, |
| | | nomatchvoice, |
| | | sliencetext, |
| | | sliencevoice, |
| | | submoduletext, |
| | | submodulevoice, |
| | | noclearlytext, |
| | | noclearlyvoice, |
| | | questiontype, |
| | | targetid, |
| | | targetname, |
| | | targetoptions, language, remark, version, usestate, adduserid, addtime, modifyuserid, modifytime, assortid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid |
| | | from ivr_liba_script |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaScriptList" parameterType="IvrLibaScript" resultMap="IvrLibaScriptResult"> |
| | | <select id="selectIvrLibaScriptList" parameterType="com.smartor.domain.IvrLibaScript" |
| | | resultMap="IvrLibaScriptResult"> |
| | | <include refid="selectIvrLibaScriptVo"/> |
| | | <where> |
| | | <if test="questionpoint != null and questionpoint != ''"> and questionpoint = #{questionpoint}</if> |
| | | <if test="questiontext != null and questiontext != ''"> and questiontext = #{questiontext}</if> |
| | | <if test="questionvoice != null and questionvoice != ''"> and questionvoice = #{questionvoice}</if> |
| | | <if test="nomatchtext != null and nomatchtext != ''"> and nomatchtext = #{nomatchtext}</if> |
| | | <if test="nomatchvoice != null and nomatchvoice != ''"> and nomatchvoice = #{nomatchvoice}</if> |
| | | <if test="sliencetext != null and sliencetext != ''"> and sliencetext = #{sliencetext}</if> |
| | | <if test="sliencevoice != null and sliencevoice != ''"> and sliencevoice = #{sliencevoice}</if> |
| | | <if test="submoduletext != null and submoduletext != ''"> and submoduletext = #{submoduletext}</if> |
| | | <if test="submodulevoice != null and submodulevoice != ''"> and submodulevoice = #{submodulevoice}</if> |
| | | <if test="noclearlytext != null and noclearlytext != ''"> and noclearlytext = #{noclearlytext}</if> |
| | | <if test="noclearlyvoice != null and noclearlyvoice != ''"> and noclearlyvoice = #{noclearlyvoice}</if> |
| | | <if test="questiontype != null and questiontype != ''"> and questiontype = #{questiontype}</if> |
| | | <if test="categoryname != null and categoryname != ''"> and categoryname like concat('%', #{categoryname}, '%')</if> |
| | | <if test="targetoptions != null and targetoptions != ''"> and targetoptions = #{targetoptions}</if> |
| | | <if test="language != null and language != ''"> and language = #{language}</if> |
| | | |
| | | <if test="note != null and note != ''"> and note = #{note}</if> |
| | | <if test="version != null "> and version = #{version}</if> |
| | | <if test="isenable != null "> and isenable = #{isenable}</if> |
| | | <if test="isdel != null "> and isdel = #{isdel}</if> |
| | | <if test="adduserid != null and adduserid != ''"> and adduserid = #{adduserid}</if> |
| | | <if test="addtime != null "> and addtime = #{addtime}</if> |
| | | <if test="modifyuserid != null and modifyuserid != ''"> and modifyuserid = #{modifyuserid}</if> |
| | | <if test="modifytime != null "> and modifytime = #{modifytime}</if> |
| | | <if test="groupid != null and groupid != ''"> and groupid = #{groupid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <where> |
| | | <if test="id != null ">and id = #{id}</if> |
| | | <if test="questiontitle != null and questiontitle != ''">and questiontitle = #{questiontitle}</if> |
| | | <if test="isenable != null ">and isenable = #{isenable}</if> |
| | | <if test="questiontext != null and questiontext != ''">and questiontext = #{questiontext}</if> |
| | | <if test="questionvoice != null and questionvoice != ''">and questionvoice = #{questionvoice}</if> |
| | | <if test="nomatchtext != null and nomatchtext != ''">and nomatchtext = #{nomatchtext}</if> |
| | | <if test="nomatchvoice != null and nomatchvoice != ''">and nomatchvoice = #{nomatchvoice}</if> |
| | | <if test="sliencetext != null and sliencetext != ''">and sliencetext = #{sliencetext}</if> |
| | | <if test="sliencevoice != null and sliencevoice != ''">and sliencevoice = #{sliencevoice}</if> |
| | | <if test="submoduletext != null and submoduletext != ''">and submoduletext = #{submoduletext}</if> |
| | | <if test="submodulevoice != null and submodulevoice != ''">and submodulevoice = #{submodulevoice}</if> |
| | | <if test="noclearlytext != null and noclearlytext != ''">and noclearlytext = #{noclearlytext}</if> |
| | | <if test="noclearlyvoice != null and noclearlyvoice != ''">and noclearlyvoice = #{noclearlyvoice}</if> |
| | | <if test="questiontype != null and questiontype != ''">and questiontype = #{questiontype}</if> |
| | | <if test="targetid != null ">and targetid = #{targetid}</if> |
| | | <if test="targetname != null and targetname != ''">and targetname like concat('%', #{targetname}, '%')</if> |
| | | <if test="targetoptions != null and targetoptions != ''">and targetoptions = #{targetoptions}</if> |
| | | <if test="language != null and language != ''">and language = #{language}</if> |
| | | <if test="version != null and version != ''">and version = #{version}</if> |
| | | <if test="usestate != null ">and usestate = #{usestate}</if> |
| | | <if test="adduserid != null and adduserid != ''">and adduserid = #{adduserid}</if> |
| | | <if test="addtime != null ">and addtime = #{addtime}</if> |
| | | <if test="modifyuserid != null and modifyuserid != ''">and modifyuserid = #{modifyuserid}</if> |
| | | <if test="modifytime != null ">and modifytime = #{modifytime}</if> |
| | | <if test="assortid != null and assortid != ''">and assortid = #{assortid}</if> |
| | | <if test="isupload != null ">and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null ">and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if> |
| | | <if test="pid != null ">and pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''">and guid = #{guid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | |
| | | <select id="selectIvrLibaScriptByQuestionid" parameterType="String" resultMap="IvrLibaScriptResult"> |
| | | <include refid="selectIvrLibaScriptVo"/> |
| | | where questionid = #{questionid} |
| | | where id = #{questionid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaScript" parameterType="IvrLibaScript"> |
| | | |
| | | <insert id="insertIvrLibaScript" parameterType="com.smartor.domain.IvrLibaScript" useGeneratedKeys="true" |
| | | keyProperty="id"> |
| | | insert into ivr_liba_script |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="questionid != null">questionid,</if> |
| | | <if test="questionpoint != null">questionpoint,</if> |
| | | <if test="questiontitle != null">questiontitle,</if> |
| | | <if test="isenable != null">isenable,</if> |
| | | <if test="questiontext != null">questiontext,</if> |
| | | <if test="questionvoice != null">questionvoice,</if> |
| | | <if test="nomatchtext != null">nomatchtext,</if> |
| | |
| | | <if test="noclearlytext != null">noclearlytext,</if> |
| | | <if test="noclearlyvoice != null">noclearlyvoice,</if> |
| | | <if test="questiontype != null">questiontype,</if> |
| | | <if test="categoryname != null">categoryname,</if> |
| | | <if test="targetid != null">targetid,</if> |
| | | <if test="targetname != null">targetname,</if> |
| | | <if test="targetoptions != null">targetoptions,</if> |
| | | <if test="language != null">language,</if> |
| | | <if test="note != null">note,</if> |
| | | <if test="remark != null">remark,</if> |
| | | <if test="version != null">version,</if> |
| | | <if test="isenable != null">isenable,</if> |
| | | <if test="isdel != null">isdel,</if> |
| | | <if test="usestate != null">usestate,</if> |
| | | <if test="adduserid != null">adduserid,</if> |
| | | <if test="addtime != null">addtime,</if> |
| | | <if test="modifyuserid != null">modifyuserid,</if> |
| | | <if test="modifytime != null">modifytime,</if> |
| | | <if test="groupid != null">groupid,</if> |
| | | <if test="assortid != null">assortid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | </trim> |
| | | <if test="pid != null">pid,</if> |
| | | <if test="guid != null">guid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="questionid != null">#{questionid},</if> |
| | | <if test="questionpoint != null">#{questionpoint},</if> |
| | | <if test="questiontitle != null">#{questiontitle},</if> |
| | | <if test="isenable != null">#{isenable},</if> |
| | | <if test="questiontext != null">#{questiontext},</if> |
| | | <if test="questionvoice != null">#{questionvoice},</if> |
| | | <if test="nomatchtext != null">#{nomatchtext},</if> |
| | |
| | | <if test="noclearlytext != null">#{noclearlytext},</if> |
| | | <if test="noclearlyvoice != null">#{noclearlyvoice},</if> |
| | | <if test="questiontype != null">#{questiontype},</if> |
| | | <if test="categoryname != null">#{categoryname},</if> |
| | | <if test="targetid != null">#{targetid},</if> |
| | | <if test="targetname != null">#{targetname},</if> |
| | | <if test="targetoptions != null">#{targetoptions},</if> |
| | | <if test="language != null">#{language},</if> |
| | | <if test="note != null">#{note},</if> |
| | | <if test="remark != null">#{remark},</if> |
| | | <if test="version != null">#{version},</if> |
| | | <if test="isenable != null">#{isenable},</if> |
| | | <if test="isdel != null">#{isdel},</if> |
| | | <if test="usestate != null">#{usestate},</if> |
| | | <if test="adduserid != null">#{adduserid},</if> |
| | | <if test="addtime != null">#{addtime},</if> |
| | | <if test="modifyuserid != null">#{modifyuserid},</if> |
| | | <if test="modifytime != null">#{modifytime},</if> |
| | | <if test="groupid != null">#{groupid},</if> |
| | | <if test="assortid != null">#{assortid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | </trim> |
| | | <if test="pid != null">#{pid},</if> |
| | | <if test="guid != null">#{guid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaScript" parameterType="IvrLibaScript"> |
| | | <update id="updateIvrLibaScript" parameterType="com.smartor.domain.IvrLibaScript"> |
| | | update ivr_liba_script |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="questionpoint != null">questionpoint = #{questionpoint},</if> |
| | | <if test="questiontitle != null">questiontitle = #{questiontitle},</if> |
| | | <if test="isenable != null">isenable = #{isenable},</if> |
| | | <if test="questiontext != null">questiontext = #{questiontext},</if> |
| | | <if test="questionvoice != null">questionvoice = #{questionvoice},</if> |
| | | <if test="nomatchtext != null">nomatchtext = #{nomatchtext},</if> |
| | |
| | | <if test="noclearlytext != null">noclearlytext = #{noclearlytext},</if> |
| | | <if test="noclearlyvoice != null">noclearlyvoice = #{noclearlyvoice},</if> |
| | | <if test="questiontype != null">questiontype = #{questiontype},</if> |
| | | <if test="categoryname != null">categoryname = #{categoryname},</if> |
| | | <if test="targetid != null">targetid = #{targetid},</if> |
| | | <if test="targetname != null">targetname = #{targetname},</if> |
| | | <if test="targetoptions != null">targetoptions = #{targetoptions},</if> |
| | | <if test="language != null">language = #{language},</if> |
| | | <if test="note != null">note = #{note},</if> |
| | | <if test="remark != null">remark = #{remark},</if> |
| | | <if test="version != null">version = #{version},</if> |
| | | <if test="isenable != null">isenable = #{isenable},</if> |
| | | <if test="isdel != null">isdel = #{isdel},</if> |
| | | <if test="usestate != null">usestate = #{usestate},</if> |
| | | <if test="adduserid != null">adduserid = #{adduserid},</if> |
| | | <if test="addtime != null">addtime = #{addtime},</if> |
| | | <if test="modifyuserid != null">modifyuserid = #{modifyuserid},</if> |
| | | <if test="modifytime != null">modifytime = #{modifytime},</if> |
| | | <if test="groupid != null">groupid = #{groupid},</if> |
| | | <if test="assortid != null">assortid = #{assortid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="pid != null">pid = #{pid},</if> |
| | | <if test="guid != null">guid = #{guid},</if> |
| | | </trim> |
| | | where questionid = #{questionid} |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaScriptByQuestionid" parameterType="String"> |
| | | delete from ivr_liba_script where questionid = #{questionid} |
| | | <delete id="deleteIvrLibaScriptByQuestionid" parameterType="Integer"> |
| | | delete |
| | | from ivr_liba_script |
| | | where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaScriptByQuestionids" parameterType="String"> |
| | | delete from ivr_liba_script where questionid in |
| | | <foreach item="questionid" collection="array" open="(" separator="," close=")"> |
| | | #{questionid} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaScriptTagMapper"> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaScriptTag" id="IvrLibaScriptTagResult"> |
| | | <result property="id" column="id"/> |
| | | <result property="tagcategoryid" column="tagcategoryid"/> |
| | | <result property="tagid" column="tagid"/> |
| | | <result property="orgid" column="orgid"/> |
| | | <result property="scriptid" column="scriptid"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="targetid" column="targetid"/> |
| | | <result property="pid" column="pid"/> |
| | | <result property="guid" column="guid"/> |
| | | <result property="tagname" column="tagname"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaScriptTagVo"> |
| | | select id, |
| | | tagcategoryid, |
| | | tagid, |
| | | scriptid, |
| | | orgid, |
| | | del_flag, |
| | | update_by, |
| | | update_time, |
| | | create_by, |
| | | create_time, |
| | | isupload, |
| | | upload_time, |
| | | targetid, |
| | | pid, |
| | | guid, |
| | | tagname |
| | | from ivr_liba_script_tag |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaScriptTagList" parameterType="com.smartor.domain.IvrLibaScriptTag" |
| | | resultMap="IvrLibaScriptTagResult"> |
| | | <include refid="selectIvrLibaScriptTagVo"/> |
| | | <where> |
| | | <if test="tagcategoryid != null ">and tagcategoryid = #{tagcategoryid}</if> |
| | | <if test="scriptid != null ">and scriptid = #{scriptid}</if> |
| | | <if test="tagid != null ">and tagid = #{tagid}</if> |
| | | <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if> |
| | | <if test="isupload != null ">and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null ">and upload_time = #{uploadTime}</if> |
| | | <if test="targetid != null ">and targetid = #{targetid}</if> |
| | | <if test="pid != null ">and pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''">and guid = #{guid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaScriptTagById" parameterType="Long" resultMap="IvrLibaScriptTagResult"> |
| | | <include refid="selectIvrLibaScriptTagVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaScriptTag" parameterType="com.smartor.domain.IvrLibaScriptTag" useGeneratedKeys="true" |
| | | keyProperty="id"> |
| | | insert into ivr_liba_script_tag |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="tagcategoryid != null">tagcategoryid,</if> |
| | | <if test="tagid != null">tagid,</if> |
| | | <if test="scriptid != null">scriptid,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="targetid != null">targetid,</if> |
| | | <if test="pid != null">pid,</if> |
| | | <if test="guid != null">guid,</if> |
| | | <if test="tagname != null">tagname,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="tagcategoryid != null">#{tagcategoryid},</if> |
| | | <if test="tagid != null">#{tagid},</if> |
| | | <if test="scriptid != null">#{scriptid},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="targetid != null">#{targetid},</if> |
| | | <if test="pid != null">#{pid},</if> |
| | | <if test="guid != null">#{guid},</if> |
| | | <if test="tagname != null">#{tagname},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaScriptTag" parameterType="com.smartor.domain.IvrLibaScriptTag"> |
| | | update ivr_liba_script_tag |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="tagcategoryid != null">tagcategoryid = #{tagcategoryid},</if> |
| | | <if test="tagid != null">tagid = #{tagid},</if> |
| | | <if test="scriptid != null">scriptid = #{scriptid},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="targetid != null">targetid = #{targetid},</if> |
| | | <if test="pid != null">pid = #{pid},</if> |
| | | <if test="guid != null">guid = #{guid},</if> |
| | | <if test="tagname != null">tagname = #{tagname},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaScriptTagById" parameterType="Long"> |
| | | update ivr_liba_script_tag |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = 1,</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaScriptTagByIds" parameterType="String"> |
| | | delete from ivr_liba_script_tag where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaScriptTargetoptionMapper"> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaScriptTargetoption" id="IvrLibaScriptTargetoptionResult"> |
| | | <result property="id" column="id"/> |
| | | <result property="targetid" column="targetid"/> |
| | | <result property="scriptid" column="scriptid"/> |
| | | <result property="targettype" column="targettype"/> |
| | | <result property="categoryName" column="categoryName"/> |
| | | <result property="targetvalue" column="targetvalue"/> |
| | | <result property="targetregex" column="targetregex"/> |
| | | <result property="optiondesc" column="optiondesc"/> |
| | | <result property="language" column="language"/> |
| | | <result property="version" column="version"/> |
| | | <result property="groupid" column="groupid"/> |
| | | <result property="isabnormal" column="isabnormal"/> |
| | | <result property="warnup" column="warnup"/> |
| | | <result property="warndown" column="warndown"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="orgid" column="orgid"/> |
| | | <result property="pid" column="pid"/> |
| | | <result property="guid" column="guid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaScriptTargetoptionVo"> |
| | | select id, |
| | | targetid, |
| | | scriptid, |
| | | targettype, |
| | | categoryName, |
| | | targetvalue, |
| | | targetregex, |
| | | optiondesc, language, version, groupid, isabnormal, warnup, warndown, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid |
| | | from ivr_liba_script_targetoption |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaScriptTargetoptionList" parameterType="com.smartor.domain.IvrLibaScriptTargetoption" |
| | | resultMap="IvrLibaScriptTargetoptionResult"> |
| | | <include refid="selectIvrLibaScriptTargetoptionVo"/> |
| | | <where> |
| | | <if test="targetid != null and targetid != ''">and targetid = #{targetid}</if> |
| | | <if test="scriptid != null ">and scriptid = #{scriptid}</if> |
| | | <if test="targettype != null and targettype != ''">and targettype = #{targettype}</if> |
| | | <if test="categoryName != null and categoryName != ''">and categoryName like concat('%', #{categoryName}, |
| | | '%') |
| | | </if> |
| | | <if test="targetvalue != null and targetvalue != ''">and targetvalue = #{targetvalue}</if> |
| | | <if test="targetregex != null and targetregex != ''">and targetregex = #{targetregex}</if> |
| | | <if test="optiondesc != null and optiondesc != ''">and optiondesc = #{optiondesc}</if> |
| | | <if test="language != null and language != ''">and language = #{language}</if> |
| | | <if test="version != null ">and version = #{version}</if> |
| | | <if test="groupid != null and groupid != ''">and groupid = #{groupid}</if> |
| | | <if test="isabnormal != null ">and isabnormal = #{isabnormal}</if> |
| | | <if test="warnup != null ">and warnup = #{warnup}</if> |
| | | <if test="warndown != null ">and warndown = #{warndown}</if> |
| | | <if test="isupload != null ">and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null ">and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if> |
| | | <if test="pid != null ">and pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''">and guid = #{guid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaScriptTargetoptionByTargetoptionid" parameterType="String" |
| | | resultMap="IvrLibaScriptTargetoptionResult"> |
| | | <include refid="selectIvrLibaScriptTargetoptionVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaScriptTargetoption" parameterType="com.smartor.domain.IvrLibaScriptTargetoption"> |
| | | insert into ivr_liba_script_targetoption |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">id,</if> |
| | | <if test="targetid != null and targetid != ''">targetid,</if> |
| | | <if test="scriptid != null">scriptid,</if> |
| | | <if test="targettype != null and targettype != ''">targettype,</if> |
| | | <if test="categoryName != null and categoryName != ''">categoryName,</if> |
| | | <if test="targetvalue != null">targetvalue,</if> |
| | | <if test="targetregex != null">targetregex,</if> |
| | | <if test="optiondesc != null">optiondesc,</if> |
| | | <if test="language != null and language != ''">language,</if> |
| | | <if test="version != null">version,</if> |
| | | <if test="groupid != null">groupid,</if> |
| | | <if test="isabnormal != null">isabnormal,</if> |
| | | <if test="warnup != null">warnup,</if> |
| | | <if test="warndown != null">warndown,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="pid != null">pid,</if> |
| | | <if test="guid != null">guid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">#{id},</if> |
| | | <if test="targetid != null and targetid != ''">#{targetid},</if> |
| | | <if test="scriptid != null ">#{scriptid},</if> |
| | | <if test="targettype != null and targettype != ''">#{targettype},</if> |
| | | <if test="categoryName != null and categoryName != ''">#{categoryName},</if> |
| | | <if test="targetvalue != null">#{targetvalue},</if> |
| | | <if test="targetregex != null">#{targetregex},</if> |
| | | <if test="optiondesc != null">#{optiondesc},</if> |
| | | <if test="language != null and language != ''">#{language},</if> |
| | | <if test="version != null">#{version},</if> |
| | | <if test="groupid != null">#{groupid},</if> |
| | | <if test="isabnormal != null">#{isabnormal},</if> |
| | | <if test="warnup != null">#{warnup},</if> |
| | | <if test="warndown != null">#{warndown},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="pid != null">#{pid},</if> |
| | | <if test="guid != null">#{guid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaScriptTargetoption" parameterType="com.smartor.domain.IvrLibaScriptTargetoption"> |
| | | update ivr_liba_script_targetoption |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="targetid != null and targetid != ''">targetid = #{targetid},</if> |
| | | <if test="scriptid != null">scriptid = #{scriptid},</if> |
| | | <if test="targettype != null and targettype != ''">targettype = #{targettype},</if> |
| | | <if test="categoryName != null and categoryName != ''">categoryName = #{categoryName},</if> |
| | | <if test="targetvalue != null">targetvalue = #{targetvalue},</if> |
| | | <if test="targetregex != null">targetregex = #{targetregex},</if> |
| | | <if test="optiondesc != null">optiondesc = #{optiondesc},</if> |
| | | <if test="language != null and language != ''">language = #{language},</if> |
| | | <if test="version != null">version = #{version},</if> |
| | | <if test="groupid != null">groupid = #{groupid},</if> |
| | | <if test="isabnormal != null">isabnormal = #{isabnormal},</if> |
| | | <if test="warnup != null">warnup = #{warnup},</if> |
| | | <if test="warndown != null">warndown = #{warndown},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="pid != null">pid = #{pid},</if> |
| | | <if test="guid != null">guid = #{guid},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaScriptTargetoptionByTargetoptionid" parameterType="Long"> |
| | | update ivr_liba_script_targetoption |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = 1</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </delete> |
| | | |
| | | </mapper> |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaTargetMapper"> |
| | | |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaTarget" id="IvrLibaTargetResult"> |
| | | <result property="targetID" column="targetID" /> |
| | | <result property="groupid" column="groupid" /> |
| | | <result property="targettype" column="targettype" /> |
| | | <result property="targetname" column="targetname" /> |
| | | <result property="targetdesc" column="targetdesc" /> |
| | | <result property="language" column="language" /> |
| | | <result property="version" column="version" /> |
| | | <result property="isenable" column="isenable" /> |
| | | <result property="isabnormal" column="isabnormal" /> |
| | | <result property="warnup" column="warnup" /> |
| | | <result property="warndown" column="warndown" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="pid" column="pid" /> |
| | | <result property="guid" column="guid" /> |
| | | <result property="assortid" column="assortid" /> |
| | | <result property="targetID" column="targetID"/> |
| | | <result property="groupid" column="groupid"/> |
| | | <result property="targettype" column="targettype"/> |
| | | <result property="targetname" column="targetname"/> |
| | | <result property="targetdesc" column="targetdesc"/> |
| | | <result property="language" column="language"/> |
| | | <result property="version" column="version"/> |
| | | <result property="isenable" column="isenable"/> |
| | | <result property="isabnormal" column="isabnormal"/> |
| | | <result property="warnup" column="warnup"/> |
| | | <result property="warndown" column="warndown"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="orgid" column="orgid"/> |
| | | <result property="pid" column="pid"/> |
| | | <result property="guid" column="guid"/> |
| | | <result property="assortid" column="assortid"/> |
| | | <result property="isAvailable" column="isAvailable"/> |
| | | <result property="suitDisease" column="suitDisease"/> |
| | | <result property="suitWay" column="suitWay"/> |
| | | </resultMap> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaTargetVO" id="IvrLibaTargetVOResult"> |
| | | <result property="targetID" column="targetID"/> |
| | | <result property="groupid" column="groupid"/> |
| | | <result property="targettype" column="targettype"/> |
| | | <result property="targetname" column="targetname"/> |
| | | <result property="targetdesc" column="targetdesc"/> |
| | | <result property="language" column="language"/> |
| | | <result property="version" column="version"/> |
| | | <result property="isenable" column="isenable"/> |
| | | <result property="isabnormal" column="isabnormal"/> |
| | | <result property="warnup" column="warnup"/> |
| | | <result property="warndown" column="warndown"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="orgid" column="orgid"/> |
| | | <result property="pid" column="pid"/> |
| | | <result property="guid" column="guid"/> |
| | | <result property="assortid" column="assortid"/> |
| | | <result property="isAvailable" column="isAvailable"/> |
| | | <result property="suitDisease" column="suitDisease"/> |
| | | <result property="suitWay" column="suitWay"/> |
| | | <collection property="targetoptionList" javaType="java.util.List" resultMap="IvrLibaTargetoptionResult"/> |
| | | </resultMap> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaTargetoption" id="IvrLibaTargetoptionResult"> |
| | | <result property="targetoptionid" column="targetoptionid"/> |
| | | <result property="targetid" column="targetid"/> |
| | | <result property="targettype" column="targettype"/> |
| | | <result property="categoryName" column="categoryName"/> |
| | | <result property="targetvalue" column="targetvalue"/> |
| | | <result property="targetregex" column="targetregex"/> |
| | | <result property="optiondesc" column="optiondesc"/> |
| | | <result property="language" column="language"/> |
| | | <result property="version" column="version"/> |
| | | <result property="groupid" column="groupid"/> |
| | | <result property="isabnormal" column="isabnormal"/> |
| | | <result property="warnup" column="warnup"/> |
| | | <result property="warndown" column="warndown"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="orgid" column="orgid"/> |
| | | <result property="pid" column="pid"/> |
| | | <result property="guid" column="guid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaTargetVo"> |
| | | select targetID, groupid, targettype, targetname, targetdesc, language, version, isenable, isabnormal, warnup, warndown, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid, assortid from ivr_liba_target |
| | | select targetID, |
| | | groupid, |
| | | targettype, |
| | | targetname, |
| | | targetdesc, language, version, isenable, isabnormal, warnup, warndown, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid, assortid, |
| | | isAvailable, suitDisease, suitWay |
| | | from ivr_liba_target |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTargetList" parameterType="com.smartor.domain.IvrLibaTarget" resultMap="IvrLibaTargetResult"> |
| | | <select id="selectIvrLibaTargetList" parameterType="com.smartor.domain.IvrLibaTarget" |
| | | resultMap="IvrLibaTargetResult"> |
| | | <include refid="selectIvrLibaTargetVo"/> |
| | | <where> |
| | | <if test="groupid != null and groupid != ''"> and groupid = #{groupid}</if> |
| | | <if test="targettype != null and targettype != ''"> and targettype = #{targettype}</if> |
| | | <if test="targetname != null and targetname != ''"> and targetname like concat('%', #{targetname}, '%')</if> |
| | | <if test="targetdesc != null and targetdesc != ''"> and targetdesc = #{targetdesc}</if> |
| | | <if test="language != null and language != ''"> and language = #{language}</if> |
| | | <if test="version != null "> and version = #{version}</if> |
| | | <if test="isenable != null "> and isenable = #{isenable}</if> |
| | | <if test="isabnormal != null "> and isabnormal = #{isabnormal}</if> |
| | | <if test="warnup != null "> and warnup = #{warnup}</if> |
| | | <if test="warndown != null "> and warndown = #{warndown}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="pid != null "> and pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''"> and guid = #{guid}</if> |
| | | <if test="assortid != null "> and assortid = #{assortid}</if> |
| | | <where> |
| | | del_flag != 1 |
| | | <if test="groupid != null and groupid != ''">and groupid = #{groupid}</if> |
| | | <if test="targettype != null and targettype != ''">and targettype = #{targettype}</if> |
| | | <if test="targetname != null and targetname != ''">and targetname like concat('%', #{targetname}, '%')</if> |
| | | <if test="targetdesc != null and targetdesc != ''">and targetdesc = #{targetdesc}</if> |
| | | <if test="language != null and language != ''">and language = #{language}</if> |
| | | <if test="version != null ">and version = #{version}</if> |
| | | <if test="isenable != null ">and isenable = #{isenable}</if> |
| | | <if test="isabnormal != null ">and isabnormal = #{isabnormal}</if> |
| | | <if test="warnup != null ">and warnup = #{warnup}</if> |
| | | <if test="warndown != null ">and warndown = #{warndown}</if> |
| | | <if test="isupload != null ">and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null ">and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if> |
| | | <if test="pid != null ">and pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''">and guid = #{guid}</if> |
| | | <if test="assortid != null ">and assortid = #{assortid}</if> |
| | | <if test="isAvailable != null">and isAvailable=#{isAvailable},</if> |
| | | <if test="suitDisease != null and suitDisease != ''">and suitDisease = #{suitDisease},</if> |
| | | <if test="suitWay != null and suitWay != ''">and suitWay = #{suitWay},</if> |
| | | |
| | | </where> |
| | | </select> |
| | | |
| | | |
| | | <select id="targetInfo" parameterType="com.smartor.domain.IvrLibaTarget" resultMap="IvrLibaTargetVOResult"> |
| | | select a.targetID, |
| | | a.groupid, |
| | | a.targettype, |
| | | a.targetname, |
| | | a.targetdesc, |
| | | a.language, |
| | | a.version, |
| | | a.isenable, |
| | | a.isabnormal, |
| | | a.warnup, |
| | | a.warndown, |
| | | a.orgid, |
| | | a.pid, |
| | | a.guid, |
| | | a.assortid, |
| | | a.isAvailable, |
| | | a.suitDisease, |
| | | a.suitWay, |
| | | b.targetoptionid, |
| | | b.targettype, |
| | | b.categoryName, |
| | | b.targetvalue, |
| | | b.targetregex, |
| | | b.optiondesc |
| | | from ivr_liba_target a |
| | | LEFT JOIN ivr_liba_targetoption b |
| | | on a.targetID = b.targetid |
| | | <where> |
| | | a.del_flag != 1 and b.del_flag != 1 |
| | | <if test="groupid != null and groupid != ''">and a.groupid = #{groupid}</if> |
| | | <if test="targettype != null and targettype != ''">and a.targettype = #{targettype}</if> |
| | | <if test="targetname != null and targetname != ''">and a.targetname like concat('%', #{targetname}, '%') |
| | | </if> |
| | | <if test="targetdesc != null and targetdesc != ''">and a.targetdesc = #{targetdesc}</if> |
| | | <if test="language != null and language != ''">and a.language = #{language}</if> |
| | | <if test="version != null ">and a.version = #{version}</if> |
| | | <if test="isenable != null ">and a.isenable = #{isenable}</if> |
| | | <if test="isabnormal != null ">and a.isabnormal = #{isabnormal}</if> |
| | | <if test="warnup != null ">and a.warnup = #{warnup}</if> |
| | | <if test="warndown != null ">and a.warndown = #{warndown}</if> |
| | | <if test="isupload != null ">and a.isupload = #{isupload}</if> |
| | | <if test="uploadTime != null ">and a.upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''">and a.orgid = #{orgid}</if> |
| | | <if test="pid != null ">and a.pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''">and a.guid = #{guid}</if> |
| | | <if test="assortid != null ">and a.assortid = #{assortid}</if> |
| | | <if test="isAvailable != null">a.isAvailable=#{isAvailable},</if> |
| | | <if test="suitDisease != null and suitDisease != ''">a.suitDisease = #{suitDisease},</if> |
| | | <if test="suitWay != null and suitWay != ''">a.suitWay = #{suitWay},</if> |
| | | </where> |
| | | ORDER BY a.targetID |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaTargetByTargetID" parameterType="Long" resultMap="IvrLibaTargetResult"> |
| | | <include refid="selectIvrLibaTargetVo"/> |
| | | where targetID = #{targetID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTarget" parameterType="com.smartor.domain.IvrLibaTarget" useGeneratedKeys="true" keyProperty="targetID"> |
| | | |
| | | <insert id="insertIvrLibaTarget" parameterType="com.smartor.domain.IvrLibaTarget" useGeneratedKeys="true" |
| | | keyProperty="targetID"> |
| | | insert into ivr_liba_target |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="groupid != null">groupid,</if> |
| | |
| | | <if test="pid != null">pid,</if> |
| | | <if test="guid != null">guid,</if> |
| | | <if test="assortid != null">assortid,</if> |
| | | </trim> |
| | | <if test="isAvailable != null">isAvailable,</if> |
| | | <if test="suitDisease != null and suitDisease != ''">suitDisease,</if> |
| | | <if test="suitWay != null and suitWay != ''">suitWay,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="groupid != null">#{groupid},</if> |
| | | <if test="targettype != null and targettype != ''">#{targettype},</if> |
| | |
| | | <if test="pid != null">#{pid},</if> |
| | | <if test="guid != null">#{guid},</if> |
| | | <if test="assortid != null">#{assortid},</if> |
| | | </trim> |
| | | <if test="isAvailable != null">#{isAvailable},</if> |
| | | <if test="suitDisease != null and suitDisease != ''">#{suitDisease},</if> |
| | | <if test="suitWay != null and suitWay != ''">#{suitWay},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTarget" parameterType="com.smartor.domain.IvrLibaTarget"> |
| | |
| | | <if test="pid != null">pid = #{pid},</if> |
| | | <if test="guid != null">guid = #{guid},</if> |
| | | <if test="assortid != null">assortid = #{assortid},</if> |
| | | <if test="suitDisease != null and suitDisease != ''">suitDisease = #{suitDisease},</if> |
| | | <if test="suitWay != null and suitWay != ''">suitWay = #{suitWay},</if> |
| | | <if test="isAvailable != null and isAvailable != ''">isAvailable = #{isAvailable},</if> |
| | | </trim> |
| | | where targetID = #{targetID} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTargetByTargetID" parameterType="Long"> |
| | | delete from ivr_liba_target where targetID = #{targetID} |
| | | delete |
| | | from ivr_liba_target |
| | | where targetID = #{targetID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTargetByTargetIDs" parameterType="String"> |
| | | delete from ivr_liba_target where targetID in |
| | | delete from ivr_liba_target where targetID in |
| | | <foreach item="targetID" collection="array" open="(" separator="," close=")"> |
| | | #{targetID} |
| | | </foreach> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaTargetTagMapper"> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaTargetTag" id="IvrLibaTargetTagResult"> |
| | | <result property="id" column="id"/> |
| | | <result property="tagcategoryid" column="tagcategoryid"/> |
| | | <result property="tagid" column="tagid"/> |
| | | <result property="orgid" column="orgid"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="targetid" column="targetid"/> |
| | | <result property="pid" column="pid"/> |
| | | <result property="guid" column="guid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaTargetTagVo"> |
| | | select id, |
| | | tagcategoryid, |
| | | tagid, |
| | | orgid, |
| | | del_flag, |
| | | update_by, |
| | | update_time, |
| | | create_by, |
| | | create_time, |
| | | isupload, |
| | | upload_time, |
| | | targetid, |
| | | pid, |
| | | guid |
| | | from ivr_liba_target_tag |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTargetTagList" parameterType="com.smartor.domain.IvrLibaTargetTag" |
| | | resultMap="IvrLibaTargetTagResult"> |
| | | <include refid="selectIvrLibaTargetTagVo"/> |
| | | <where> |
| | | <if test="tagcategoryid != null ">and tagcategoryid = #{tagcategoryid}</if> |
| | | <if test="tagid != null ">and tagid = #{tagid}</if> |
| | | <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if> |
| | | <if test="isupload != null ">and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null ">and upload_time = #{uploadTime}</if> |
| | | <if test="targetid != null ">and targetid = #{targetid}</if> |
| | | <if test="pid != null ">and pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''">and guid = #{guid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaTargetTagById" parameterType="Long" resultMap="IvrLibaTargetTagResult"> |
| | | <include refid="selectIvrLibaTargetTagVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | |
| | | <select id="selectTagName" parameterType="Long" resultType="com.smartor.domain.BaseTag"> |
| | | select b.tagname, b.tagcategoryid, a.id as tagid |
| | | from ivr_liba_target_tag a, |
| | | base_tag b |
| | | where a.tagid = b.tagid |
| | | and a.del_flag!=1 and b.del_flag!=1 |
| | | and targetid = #{targetid} |
| | | </select> |
| | | |
| | | |
| | | <insert id="insertIvrLibaTargetTag" parameterType="com.smartor.domain.IvrLibaTargetTag" useGeneratedKeys="true" |
| | | keyProperty="id"> |
| | | insert into ivr_liba_target_tag |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="tagcategoryid != null">tagcategoryid,</if> |
| | | <if test="tagid != null">tagid,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="targetid != null">targetid,</if> |
| | | <if test="pid != null">pid,</if> |
| | | <if test="guid != null">guid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="tagcategoryid != null">#{tagcategoryid},</if> |
| | | <if test="tagid != null">#{tagid},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="targetid != null">#{targetid},</if> |
| | | <if test="pid != null">#{pid},</if> |
| | | <if test="guid != null">#{guid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTargetTag" parameterType="com.smartor.domain.IvrLibaTargetTag"> |
| | | update ivr_liba_target_tag |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="tagcategoryid != null">tagcategoryid = #{tagcategoryid},</if> |
| | | <if test="tagid != null">tagid = #{tagid},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="targetid != null">targetid = #{targetid},</if> |
| | | <if test="pid != null">pid = #{pid},</if> |
| | | <if test="guid != null">guid = #{guid},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTargetTagById" parameterType="Long"> |
| | | update ivr_liba_target_tag |
| | | set del_flag = 1 |
| | | where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTargetTagByIds" parameterType="String"> |
| | | delete from ivr_liba_target_tag where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
| | |
| | | resultMap="IvrLibaTargetoptionResult"> |
| | | <include refid="selectIvrLibaTargetoptionVo"/> |
| | | <where> |
| | | del_flag != 1 |
| | | <if test="targetid != null ">and targetid = #{targetid}</if> |
| | | <if test="targettype != null and targettype != ''">and targettype = #{targettype}</if> |
| | | <if test="categoryName != null and categoryName != ''">and categoryName like concat('%', #{categoryName}, |
| | |
| | | <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if> |
| | | <if test="pid != null ">and pid = #{pid}</if> |
| | | <if test="guid != null and guid != ''">and guid = #{guid}</if> |
| | | |
| | | </where> |
| | | order by guid asc |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaTargetoptionByTargetoptionid" parameterType="Long" resultMap="IvrLibaTargetoptionResult"> |
| | |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTargetoptionByTargetoptionid" parameterType="Long"> |
| | | delete |
| | | from ivr_liba_targetoption |
| | | update ivr_liba_targetoption |
| | | set del_flag = 1 |
| | | where targetoptionid = #{targetoptionid} |
| | | </delete> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaTemplateMapper"> |
| | | |
| | | <resultMap type="IvrLibaTemplate" id="IvrLibaTemplateResult"> |
| | | <result property="templateID" column="templateID" /> |
| | | <result property="templateName" column="templateName" /> |
| | | <result property="silencetime" column="silencetime" /> |
| | | <result property="slienceRepeatTimes" column="slienceRepeatTimes" /> |
| | | <result property="nomatchRepeatTimes" column="nomatchRepeatTimes" /> |
| | | <result property="firstQuestionNum" column="firstQuestionNum" /> |
| | | <result property="submodule" column="submodule" /> |
| | | <result property="language" column="language" /> |
| | | <result property="note" column="note" /> |
| | | <result property="isEnable" column="isEnable" /> |
| | | <result property="isDel" column="isDel" /> |
| | | <result property="addUserID" column="addUserID" /> |
| | | <result property="addTime" column="addTime" /> |
| | | <result property="modifyUserID" column="modifyUserID" /> |
| | | <result property="modifyTime" column="modifyTime" /> |
| | | <result property="groupID" column="groupID" /> |
| | | <result property="labelInfo" column="labelInfo" /> |
| | | <result property="submoduleID" column="submoduleID" /> |
| | | <result property="playType" column="playType" /> |
| | | <result property="icd10code" column="icd10code" /> |
| | | <result property="icd10codename" column="icd10codename" /> |
| | | <result property="atuoTaskDayOffset" column="atuoTaskDayOffset" /> |
| | | <result property="DeptIds" column="DeptIds" /> |
| | | <result property="DeptNames" column="DeptNames" /> |
| | | <result property="fKsdm" column="F_KSDM" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="orgid" column="orgid" /> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaTemplate" id="IvrLibaTemplateResult"> |
| | | <result property="templateID" column="templateID"/> |
| | | <result property="templateName" column="templateName"/> |
| | | <result property="silencetime" column="silencetime"/> |
| | | <result property="slienceRepeatTimes" column="slienceRepeatTimes"/> |
| | | <result property="nomatchRepeatTimes" column="nomatchRepeatTimes"/> |
| | | <result property="firstQuestionNum" column="firstQuestionNum"/> |
| | | <result property="submodule" column="submodule"/> |
| | | <result property="language" column="language"/> |
| | | <result property="note" column="note"/> |
| | | <result property="isEnable" column="isEnable"/> |
| | | <result property="addUserID" column="addUserID"/> |
| | | <result property="addTime" column="addTime"/> |
| | | <result property="modifyUserID" column="modifyUserID"/> |
| | | <result property="modifyTime" column="modifyTime"/> |
| | | <result property="groupID" column="groupID"/> |
| | | <result property="labelInfo" column="labelInfo"/> |
| | | <result property="submoduleID" column="submoduleID"/> |
| | | <result property="playType" column="playType"/> |
| | | <result property="icd10code" column="icd10code"/> |
| | | <result property="icd10codename" column="icd10codename"/> |
| | | <result property="atuoTaskDayOffset" column="atuoTaskDayOffset"/> |
| | | <result property="deptIds" column="DeptIds"/> |
| | | <result property="deptNames" column="DeptNames"/> |
| | | <result property="fKsdm" column="F_KSDM"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="orgid" column="orgid"/> |
| | | <result property="assortid" column="assortid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaTemplateVo"> |
| | | select templateID, templateName, silencetime, slienceRepeatTimes, nomatchRepeatTimes, firstQuestionNum, submodule, language, note, isEnable, isDel, addUserID, addTime, modifyUserID, modifyTime, groupID, labelInfo, submoduleID, playType, icd10code, icd10codename, atuoTaskDayOffset, DeptIds, DeptNames, F_KSDM, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid from ivr_liba_template |
| | | select templateID, |
| | | templateName, |
| | | silencetime, |
| | | slienceRepeatTimes, |
| | | nomatchRepeatTimes, |
| | | firstQuestionNum, |
| | | submodule, language, note, isEnable, addUserID, addTime, modifyUserID, modifyTime, groupID, labelInfo, submoduleID, playType, icd10code, icd10codename, atuoTaskDayOffset, DeptIds, DeptNames, F_KSDM, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid |
| | | from ivr_liba_template |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTemplateList" parameterType="IvrLibaTemplate" resultMap="IvrLibaTemplateResult"> |
| | | <select id="selectIvrLibaTemplateList" parameterType="com.smartor.domain.IvrLibaTemplate" |
| | | resultMap="IvrLibaTemplateResult"> |
| | | <include refid="selectIvrLibaTemplateVo"/> |
| | | <where> |
| | | <if test="templateName != null and templateName != ''"> and templateName like concat('%', #{templateName}, '%')</if> |
| | | <if test="silencetime != null "> and silencetime = #{silencetime}</if> |
| | | <if test="slienceRepeatTimes != null "> and slienceRepeatTimes = #{slienceRepeatTimes}</if> |
| | | <if test="nomatchRepeatTimes != null "> and nomatchRepeatTimes = #{nomatchRepeatTimes}</if> |
| | | <if test="firstQuestionNum != null "> and firstQuestionNum = #{firstQuestionNum}</if> |
| | | <if test="submodule != null and submodule != ''"> and submodule = #{submodule}</if> |
| | | <if test="language != null and language != ''"> and language = #{language}</if> |
| | | <if test="note != null and note != ''"> and note = #{note}</if> |
| | | <if test="isEnable != null "> and isEnable = #{isEnable}</if> |
| | | <if test="isDel != null "> and isDel = #{isDel}</if> |
| | | <if test="addUserID != null and addUserID != ''"> and addUserID = #{addUserID}</if> |
| | | <if test="addTime != null "> and addTime = #{addTime}</if> |
| | | <if test="modifyUserID != null and modifyUserID != ''"> and modifyUserID = #{modifyUserID}</if> |
| | | <if test="modifyTime != null "> and modifyTime = #{modifyTime}</if> |
| | | <if test="groupID != null and groupID != ''"> and groupID = #{groupID}</if> |
| | | <if test="labelInfo != null and labelInfo != ''"> and labelInfo = #{labelInfo}</if> |
| | | <if test="submoduleID != null and submoduleID != ''"> and submoduleID = #{submoduleID}</if> |
| | | <if test="playType != null "> and playType = #{playType}</if> |
| | | <if test="icd10code != null and icd10code != ''"> and icd10code = #{icd10code}</if> |
| | | <if test="icd10codename != null and icd10codename != ''"> and icd10codename like concat('%', #{icd10codename}, '%')</if> |
| | | <if test="atuoTaskDayOffset != null "> and atuoTaskDayOffset = #{atuoTaskDayOffset}</if> |
| | | <if test="DeptIds != null and DeptIds != ''"> and DeptIds = #{DeptIds}</if> |
| | | <if test="DeptNames != null and DeptNames != ''"> and DeptNames = #{DeptNames}</if> |
| | | <if test="fKsdm != null and fKsdm != ''"> and F_KSDM = #{fKsdm}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <where> |
| | | <if test="templateName != null and templateName != ''">and templateName like concat('%', #{templateName}, |
| | | '%') |
| | | </if> |
| | | <if test="silencetime != null ">and silencetime = #{silencetime}</if> |
| | | <if test="slienceRepeatTimes != null ">and slienceRepeatTimes = #{slienceRepeatTimes}</if> |
| | | <if test="nomatchRepeatTimes != null ">and nomatchRepeatTimes = #{nomatchRepeatTimes}</if> |
| | | <if test="firstQuestionNum != null ">and firstQuestionNum = #{firstQuestionNum}</if> |
| | | <if test="submodule != null and submodule != ''">and submodule = #{submodule}</if> |
| | | <if test="language != null and language != ''">and language = #{language}</if> |
| | | <if test="note != null and note != ''">and note = #{note}</if> |
| | | <if test="isEnable != null ">and isEnable = #{isEnable}</if> |
| | | <if test="isDel != null ">and isDel = #{isDel}</if> |
| | | <if test="addUserID != null and addUserID != ''">and addUserID = #{addUserID}</if> |
| | | <if test="addTime != null ">and addTime = #{addTime}</if> |
| | | <if test="modifyUserID != null and modifyUserID != ''">and modifyUserID = #{modifyUserID}</if> |
| | | <if test="modifyTime != null ">and modifyTime = #{modifyTime}</if> |
| | | <if test="groupID != null and groupID != ''">and groupID = #{groupID}</if> |
| | | <if test="labelInfo != null and labelInfo != ''">and labelInfo = #{labelInfo}</if> |
| | | <if test="submoduleID != null and submoduleID != ''">and submoduleID = #{submoduleID}</if> |
| | | <if test="playType != null ">and playType = #{playType}</if> |
| | | <if test="icd10code != null and icd10code != ''">and icd10code = #{icd10code}</if> |
| | | <if test="icd10codename != null and icd10codename != ''">and icd10codename like concat('%', |
| | | #{icd10codename}, '%') |
| | | </if> |
| | | <if test="atuoTaskDayOffset != null ">and atuoTaskDayOffset = #{atuoTaskDayOffset}</if> |
| | | <if test="DeptIds != null and DeptIds != ''">and DeptIds = #{DeptIds}</if> |
| | | <if test="DeptNames != null and DeptNames != ''">and DeptNames = #{DeptNames}</if> |
| | | <if test="fKsdm != null and fKsdm != ''">and F_KSDM = #{fKsdm}</if> |
| | | <if test="isupload != null ">and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null ">and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if> |
| | | <if test="assortid != null">and assortid = #{assortid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | |
| | | <select id="selectIvrLibaTemplateByTemplateID" parameterType="String" resultMap="IvrLibaTemplateResult"> |
| | | <include refid="selectIvrLibaTemplateVo"/> |
| | | where templateID = #{templateID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTemplate" parameterType="IvrLibaTemplate"> |
| | | |
| | | <insert id="insertIvrLibaTemplate" parameterType="com.smartor.domain.IvrLibaTemplate"> |
| | | insert into ivr_liba_template |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="templateID != null">templateID,</if> |
| | |
| | | <if test="language != null and language != ''">language,</if> |
| | | <if test="note != null">note,</if> |
| | | <if test="isEnable != null">isEnable,</if> |
| | | <if test="isDel != null">isDel,</if> |
| | | <if test="addUserID != null">addUserID,</if> |
| | | <if test="addTime != null">addTime,</if> |
| | | <if test="modifyUserID != null">modifyUserID,</if> |
| | |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | </trim> |
| | | <if test="assortid != null">assortid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="templateID != null">#{templateID},</if> |
| | | <if test="templateName != null and templateName != ''">#{templateName},</if> |
| | |
| | | <if test="language != null and language != ''">#{language},</if> |
| | | <if test="note != null">#{note},</if> |
| | | <if test="isEnable != null">#{isEnable},</if> |
| | | <if test="isDel != null">#{isDel},</if> |
| | | <if test="addUserID != null">#{addUserID},</if> |
| | | <if test="addTime != null">#{addTime},</if> |
| | | <if test="modifyUserID != null">#{modifyUserID},</if> |
| | |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | </trim> |
| | | <if test="assortid != null">#{assortid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTemplate" parameterType="IvrLibaTemplate"> |
| | | <update id="updateIvrLibaTemplate" parameterType="com.smartor.domain.IvrLibaTemplate"> |
| | | update ivr_liba_template |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="templateName != null and templateName != ''">templateName = #{templateName},</if> |
| | |
| | | <if test="language != null and language != ''">language = #{language},</if> |
| | | <if test="note != null">note = #{note},</if> |
| | | <if test="isEnable != null">isEnable = #{isEnable},</if> |
| | | <if test="isDel != null">isDel = #{isDel},</if> |
| | | <if test="addUserID != null">addUserID = #{addUserID},</if> |
| | | <if test="addTime != null">addTime = #{addTime},</if> |
| | | <if test="modifyUserID != null">modifyUserID = #{modifyUserID},</if> |
| | |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="assortid != null">orgid = #{assortid},</if> |
| | | </trim> |
| | | where templateID = #{templateID} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTemplateByTemplateID" parameterType="String"> |
| | | delete from ivr_liba_template where templateID = #{templateID} |
| | | delete |
| | | from ivr_liba_template |
| | | where templateID = #{templateID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTemplateByTemplateIDs" parameterType="String"> |
| | | delete from ivr_liba_template where templateID in |
| | | delete from ivr_liba_template where templateID in |
| | | <foreach item="templateID" collection="array" open="(" separator="," close=")"> |
| | | #{templateID} |
| | | </foreach> |
| | |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaTemplatescriptMapper"> |
| | | |
| | | <resultMap type="IvrLibaTemplatescript" id="IvrLibaTemplatescriptResult"> |
| | | <resultMap type="com.smartor.domain.IvrLibaTemplatescript" id="IvrLibaTemplatescriptResult"> |
| | | <result property="templateQuestionID" column="templateQuestionID" /> |
| | | <result property="templateQuestionNum" column="templateQuestionNum" /> |
| | | <result property="templateID" column="templateID" /> |
| | |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="templateTargetID" column="templateTargetID" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaTemplatescriptVo"> |
| | | select templateQuestionID, templateQuestionNum, templateID, questionID, questionPoint, questionText, questionVoice, noMatchText, noMatchVoice, slienceText, slienceVoice, submoduleText, submoduleVoice, noClearlyText, noClearlyVoice, categoryName, targetOptions, language, playWavOnly, isEnable, isDel, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid from ivr_liba_templatescript |
| | | select templateQuestionID, templateQuestionNum, templateID, templateTargetID,questionID, questionPoint, questionText, questionVoice, noMatchText, noMatchVoice, slienceText, slienceVoice, submoduleText, submoduleVoice, noClearlyText, noClearlyVoice, categoryName, targetOptions, language, playWavOnly, isEnable, isDel, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid from ivr_liba_templatescript |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTemplatescriptList" parameterType="IvrLibaTemplatescript" resultMap="IvrLibaTemplatescriptResult"> |
| | | <select id="selectIvrLibaTemplatescriptList" parameterType="com.smartor.domain.IvrLibaTemplatescript" resultMap="IvrLibaTemplatescriptResult"> |
| | | <include refid="selectIvrLibaTemplatescriptVo"/> |
| | | <where> |
| | | <if test="templateQuestionNum != null "> and templateQuestionNum = #{templateQuestionNum}</if> |
| | |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="templateTargetID != null and templateTargetID != ''"> and templateTargetID = #{templateTargetID}</if> |
| | | </where> |
| | | </select> |
| | | |
| | |
| | | where templateQuestionID = #{templateQuestionID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTemplatescript" parameterType="IvrLibaTemplatescript"> |
| | | <insert id="insertIvrLibaTemplatescript" parameterType="com.smartor.domain.IvrLibaTemplatescript"> |
| | | insert into ivr_liba_templatescript |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="templateQuestionID != null">templateQuestionID,</if> |
| | | <if test="templateQuestionNum != null">templateQuestionNum,</if> |
| | | <if test="templateID != null and templateID != ''">templateID,</if> |
| | | <if test="templateTargetID != null and templateTargetID != ''">templateTargetID,</if> |
| | | <if test="questionID != null and questionID != ''">questionID,</if> |
| | | <if test="questionPoint != null and questionPoint != ''">questionPoint,</if> |
| | | <if test="questionText != null">questionText,</if> |
| | |
| | | <if test="templateQuestionID != null">#{templateQuestionID},</if> |
| | | <if test="templateQuestionNum != null">#{templateQuestionNum},</if> |
| | | <if test="templateID != null and templateID != ''">#{templateID},</if> |
| | | <if test="templateTargetID != null and templateTargetID != ''">#{templateTargetID},</if> |
| | | <if test="templateTargetID != null and templateTargetID != ''">#{templateTargetID},</if> |
| | | <if test="questionID != null and questionID != ''">#{questionID},</if> |
| | | <if test="questionPoint != null and questionPoint != ''">#{questionPoint},</if> |
| | | <if test="questionText != null">#{questionText},</if> |
| | |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTemplatescript" parameterType="IvrLibaTemplatescript"> |
| | | <update id="updateIvrLibaTemplatescript" parameterType="com.smartor.domain.IvrLibaTemplatescript"> |
| | | update ivr_liba_templatescript |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="templateQuestionNum != null">templateQuestionNum = #{templateQuestionNum},</if> |
| | | <if test="templateID != null and templateID != ''">templateID = #{templateID},</if> |
| | | <if test="templateTargetID != null and templateTargetID != ''">templateTargetID = #{templateTargetID},</if> |
| | | <if test="questionID != null and questionID != ''">questionID = #{questionID},</if> |
| | | <if test="questionPoint != null and questionPoint != ''">questionPoint = #{questionPoint},</if> |
| | | <if test="questionText != null">questionText = #{questionText},</if> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaTemplatetargetAssortMapper"> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaTemplatetargetAssort" id="IvrLibaTemplatetargetAssortResult"> |
| | | <result property="id" column="id"/> |
| | | <result property="indexAssortName" column="index_assort_name"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="pid" column="pid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaTemplatetargetAssortVo"> |
| | | select id, index_assort_name, del_flag, create_time, update_time, pid |
| | | from ivr_liba_templatetarget_assort |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTemplatetargetAssortList" parameterType="com.smartor.domain.IvrLibaTemplatetargetAssort" |
| | | resultMap="IvrLibaTemplatetargetAssortResult"> |
| | | <include refid="selectIvrLibaTemplatetargetAssortVo"/> |
| | | <where> |
| | | <if test="indexAssortName != null and indexAssortName != ''">and index_assort_name like concat('%', |
| | | #{indexAssortName}, '%') |
| | | </if> |
| | | <if test="pid != null ">and pid = #{pid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaTemplatetargetAssortById" parameterType="Long" |
| | | resultMap="IvrLibaTemplatetargetAssortResult"> |
| | | <include refid="selectIvrLibaTemplatetargetAssortVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTemplatetargetAssort" parameterType="com.smartor.domain.IvrLibaTemplatetargetAssort"> |
| | | insert into ivr_liba_templatetarget_assort |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">id,</if> |
| | | <if test="indexAssortName != null and indexAssortName != ''">index_assort_name,</if> |
| | | <if test="delFlag != null">del_flag,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="pid != null">pid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="id != null">#{id},</if> |
| | | <if test="indexAssortName != null and indexAssortName != ''">#{indexAssortName},</if> |
| | | <if test="delFlag != null">#{delFlag},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="pid != null">#{pid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTemplatetargetAssort" parameterType="com.smartor.domain.IvrLibaTemplatetargetAssort"> |
| | | update ivr_liba_templatetarget_assort |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="indexAssortName != null and indexAssortName != ''">index_assort_name = #{indexAssortName},</if> |
| | | <if test="delFlag != null">del_flag = #{delFlag},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="pid != null">pid = #{pid},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTemplatetargetAssortById" parameterType="Long"> |
| | | delete |
| | | from ivr_liba_templatetarget_assort |
| | | where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTemplatetargetAssortByIds" parameterType="String"> |
| | | delete from ivr_liba_templatetarget_assort where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.IvrLibaTemplatetargetMapper"> |
| | | |
| | | <resultMap type="IvrLibaTemplatetarget" id="IvrLibaTemplatetargetResult"> |
| | | <result property="templateTargetID" column="templateTargetID" /> |
| | | <result property="templateQuestionID" column="templateQuestionID" /> |
| | | <result property="templateQuestionNum" column="templateQuestionNum" /> |
| | | <result property="nextQuestionNum" column="nextQuestionNum" /> |
| | | <result property="templateID" column="templateID" /> |
| | | <result property="switchID" column="switchID" /> |
| | | <result property="switchDescription" column="switchDescription" /> |
| | | <result property="switchText" column="switchText" /> |
| | | <result property="switchWav" column="switchWav" /> |
| | | <result property="switchTempWav" column="switchTempWav" /> |
| | | <result property="targetType" column="targetType" /> |
| | | <result property="categoryName" column="categoryName" /> |
| | | <result property="targetValue" column="targetValue" /> |
| | | <result property="targetID" column="targetID" /> |
| | | <result property="questionTargetID" column="questionTargetID" /> |
| | | <result property="basicRegex" column="basicRegex" /> |
| | | <result property="selfRegex" column="selfRegex" /> |
| | | <result property="regexUsedType" column="regexUsedType" /> |
| | | <result property="language" column="language" /> |
| | | <result property="isEnable" column="isEnable" /> |
| | | <result property="isDel" column="isDel" /> |
| | | <result property="playType" column="playType" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="orgid" column="orgid" /> |
| | | |
| | | <resultMap type="com.smartor.domain.IvrLibaTemplatetarget" id="IvrLibaTemplatetargetResult"> |
| | | <result property="templateTargetID" column="templateTargetID"/> |
| | | <result property="templateQuestionID" column="templateQuestionID"/> |
| | | <result property="templateQuestionNum" column="templateQuestionNum"/> |
| | | <result property="nextQuestionNum" column="nextQuestionNum"/> |
| | | <result property="templateID" column="templateID"/> |
| | | <result property="switchID" column="switchID"/> |
| | | <result property="switchDescription" column="switchDescription"/> |
| | | <result property="switchText" column="switchText"/> |
| | | <result property="switchWav" column="switchWav"/> |
| | | <result property="switchTempWav" column="switchTempWav"/> |
| | | <result property="targetType" column="targetType"/> |
| | | <result property="categoryName" column="categoryName"/> |
| | | <result property="targetValue" column="targetValue"/> |
| | | <result property="targetID" column="targetID"/> |
| | | <result property="questionTargetID" column="questionTargetID"/> |
| | | <result property="basicRegex" column="basicRegex"/> |
| | | <result property="selfRegex" column="selfRegex"/> |
| | | <result property="regexUsedType" column="regexUsedType"/> |
| | | <result property="language" column="language"/> |
| | | <result property="isEnable" column="isEnable"/> |
| | | <result property="isDel" column="isDel"/> |
| | | <result property="playType" column="playType"/> |
| | | <result property="delFlag" column="del_flag"/> |
| | | <result property="updateBy" column="update_by"/> |
| | | <result property="updateTime" column="update_time"/> |
| | | <result property="createBy" column="create_by"/> |
| | | <result property="createTime" column="create_time"/> |
| | | <result property="isupload" column="isupload"/> |
| | | <result property="uploadTime" column="upload_time"/> |
| | | <result property="orgid" column="orgid"/> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaTemplatetargetVo"> |
| | | select templateTargetID, templateQuestionID, templateQuestionNum, nextQuestionNum, templateID, switchID, switchDescription, switchText, switchWav, switchTempWav, targetType, categoryName, targetValue, targetID, questionTargetID, basicRegex, selfRegex, regexUsedType, language, isEnable, isDel, playType, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid from ivr_liba_templatetarget |
| | | select templateTargetID, |
| | | templateQuestionID, |
| | | templateQuestionNum, |
| | | nextQuestionNum, |
| | | templateID, |
| | | switchID, |
| | | switchDescription, |
| | | switchText, |
| | | switchWav, |
| | | switchTempWav, |
| | | targetType, |
| | | categoryName, |
| | | targetValue, |
| | | targetID, |
| | | questionTargetID, |
| | | basicRegex, |
| | | selfRegex, |
| | | regexUsedType, language, isEnable, isDel, playType, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid |
| | | from ivr_liba_templatetarget |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTemplatetargetList" parameterType="IvrLibaTemplatetarget" resultMap="IvrLibaTemplatetargetResult"> |
| | | <select id="selectIvrLibaTemplatetargetList" parameterType="com.smartor.domain.IvrLibaTemplatetarget" |
| | | resultMap="IvrLibaTemplatetargetResult"> |
| | | <include refid="selectIvrLibaTemplatetargetVo"/> |
| | | <where> |
| | | <if test="templateQuestionID != null and templateQuestionID != ''"> and templateQuestionID = #{templateQuestionID}</if> |
| | | <if test="templateQuestionNum != null "> and templateQuestionNum = #{templateQuestionNum}</if> |
| | | <if test="nextQuestionNum != null "> and nextQuestionNum = #{nextQuestionNum}</if> |
| | | <if test="templateID != null and templateID != ''"> and templateID = #{templateID}</if> |
| | | <if test="switchID != null "> and switchID = #{switchID}</if> |
| | | <if test="switchDescription != null and switchDescription != ''"> and switchDescription = #{switchDescription}</if> |
| | | <if test="switchText != null and switchText != ''"> and switchText = #{switchText}</if> |
| | | <if test="switchWav != null and switchWav != ''"> and switchWav = #{switchWav}</if> |
| | | <if test="switchTempWav != null and switchTempWav != ''"> and switchTempWav = #{switchTempWav}</if> |
| | | <if test="targetType != null and targetType != ''"> and targetType = #{targetType}</if> |
| | | <if test="categoryName != null and categoryName != ''"> and categoryName like concat('%', #{categoryName}, '%')</if> |
| | | <if test="targetValue != null and targetValue != ''"> and targetValue = #{targetValue}</if> |
| | | <if test="targetID != null and targetID != ''"> and targetID = #{targetID}</if> |
| | | <if test="questionTargetID != null and questionTargetID != ''"> and questionTargetID = #{questionTargetID}</if> |
| | | <if test="basicRegex != null and basicRegex != ''"> and basicRegex = #{basicRegex}</if> |
| | | <if test="selfRegex != null and selfRegex != ''"> and selfRegex = #{selfRegex}</if> |
| | | <if test="regexUsedType != null and regexUsedType != ''"> and regexUsedType = #{regexUsedType}</if> |
| | | <if test="language != null and language != ''"> and language = #{language}</if> |
| | | <if test="isEnable != null "> and isEnable = #{isEnable}</if> |
| | | <if test="isDel != null "> and isDel = #{isDel}</if> |
| | | <if test="playType != null "> and playType = #{playType}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <where> |
| | | <if test="templateQuestionID != null and templateQuestionID != ''">and templateQuestionID = |
| | | #{templateQuestionID} |
| | | </if> |
| | | <if test="templateQuestionNum != null ">and templateQuestionNum = #{templateQuestionNum}</if> |
| | | <if test="nextQuestionNum != null ">and nextQuestionNum = #{nextQuestionNum}</if> |
| | | <if test="templateID != null and templateID != ''">and templateID = #{templateID}</if> |
| | | <if test="switchID != null ">and switchID = #{switchID}</if> |
| | | <if test="switchDescription != null and switchDescription != ''">and switchDescription = |
| | | #{switchDescription} |
| | | </if> |
| | | <if test="switchText != null and switchText != ''">and switchText = #{switchText}</if> |
| | | <if test="switchWav != null and switchWav != ''">and switchWav = #{switchWav}</if> |
| | | <if test="switchTempWav != null and switchTempWav != ''">and switchTempWav = #{switchTempWav}</if> |
| | | <if test="targetType != null and targetType != ''">and targetType = #{targetType}</if> |
| | | <if test="categoryName != null and categoryName != ''">and categoryName like concat('%', #{categoryName}, |
| | | '%') |
| | | </if> |
| | | <if test="targetValue != null and targetValue != ''">and targetValue = #{targetValue}</if> |
| | | <if test="targetID != null and targetID != ''">and targetID = #{targetID}</if> |
| | | <if test="questionTargetID != null and questionTargetID != ''">and questionTargetID = #{questionTargetID} |
| | | </if> |
| | | <if test="basicRegex != null and basicRegex != ''">and basicRegex = #{basicRegex}</if> |
| | | <if test="selfRegex != null and selfRegex != ''">and selfRegex = #{selfRegex}</if> |
| | | <if test="regexUsedType != null and regexUsedType != ''">and regexUsedType = #{regexUsedType}</if> |
| | | <if test="language != null and language != ''">and language = #{language}</if> |
| | | <if test="isEnable != null ">and isEnable = #{isEnable}</if> |
| | | <if test="isDel != null ">and isDel = #{isDel}</if> |
| | | <if test="playType != null ">and playType = #{playType}</if> |
| | | <if test="isupload != null ">and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null ">and upload_time = #{uploadTime}</if> |
| | | <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaTemplatetargetByTemplateTargetID" parameterType="String" resultMap="IvrLibaTemplatetargetResult"> |
| | | |
| | | <select id="selectIvrLibaTemplatetargetByTemplateTargetID" parameterType="String" |
| | | resultMap="IvrLibaTemplatetargetResult"> |
| | | <include refid="selectIvrLibaTemplatetargetVo"/> |
| | | where templateTargetID = #{templateTargetID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTemplatetarget" parameterType="IvrLibaTemplatetarget"> |
| | | |
| | | <insert id="insertIvrLibaTemplatetarget" parameterType="com.smartor.domain.IvrLibaTemplatetarget"> |
| | | insert into ivr_liba_templatetarget |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="templateTargetID != null">templateTargetID,</if> |
| | |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | </trim> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="templateTargetID != null">#{templateTargetID},</if> |
| | | <if test="templateQuestionID != null and templateQuestionID != ''">#{templateQuestionID},</if> |
| | |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | </trim> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTemplatetarget" parameterType="IvrLibaTemplatetarget"> |
| | | <update id="updateIvrLibaTemplatetarget" parameterType="com.smartor.domain.IvrLibaTemplatetarget"> |
| | | update ivr_liba_templatetarget |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="templateQuestionID != null and templateQuestionID != ''">templateQuestionID = #{templateQuestionID},</if> |
| | | <if test="templateQuestionID != null and templateQuestionID != ''">templateQuestionID = |
| | | #{templateQuestionID}, |
| | | </if> |
| | | <if test="templateQuestionNum != null">templateQuestionNum = #{templateQuestionNum},</if> |
| | | <if test="nextQuestionNum != null">nextQuestionNum = #{nextQuestionNum},</if> |
| | | <if test="templateID != null and templateID != ''">templateID = #{templateID},</if> |
| | |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTemplatetargetByTemplateTargetID" parameterType="String"> |
| | | delete from ivr_liba_templatetarget where templateTargetID = #{templateTargetID} |
| | | delete |
| | | from ivr_liba_templatetarget |
| | | where templateTargetID = #{templateTargetID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTemplatetargetByTemplateTargetIDs" parameterType="String"> |
| | | delete from ivr_liba_templatetarget where templateTargetID in |
| | | delete from ivr_liba_templatetarget where templateTargetID in |
| | | <foreach item="templateTargetID" collection="array" open="(" separator="," close=")"> |
| | | #{templateTargetID} |
| | | </foreach> |
| | |
| | | |
| | | select |
| | | c.tagname as tag, |
| | | b.tagid as tagid, |
| | | a.patid, |
| | | a.name, |
| | | a.sex, |
| | |
| | | |
| | | select |
| | | c.tagname as tag, |
| | | b.tagid as tagid, |
| | | a.patid, |
| | | a.name, |
| | | a.sex, |
| | |
| | | |
| | | select |
| | | c.tagname as tag, |
| | | b.tagid as tagid, |
| | | a.patid, |
| | | a.name, |
| | | a.sex, |
| | |
| | | |
| | | select |
| | | c.tagname as tag, |
| | | b.tagid as tagid, |
| | | a.patid, |
| | | a.name, |
| | | a.sex, |
| | |
| | | create_time, |
| | | isupload, |
| | | upload_time, |
| | | tagname, |
| | | patid |
| | | from pat_archivetag |
| | | </sql> |
| | |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="tagcategoryid != null">tagcategoryid,</if> |
| | | <if test="tagid != null">tagid,</if> |
| | | <if test="tagname != null">tagname,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="tagcategoryid != null">#{tagcategoryid},</if> |
| | | <if test="tagid != null">#{tagid},</if> |
| | | <if test="tagname != null">#{tagname},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="tagcategoryid != null">tagcategoryid = #{tagcategoryid},</if> |
| | | <if test="tagid != null">tagid = #{tagid},</if> |
| | | <if test="tagname != null">tagname = #{tagname},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deletePatArchivetagById" parameterType="Long"> |
| | | delete |
| | | from pat_archivetag |
| | | where id = #{id} |
| | | <delete id="deletePatArchivetagById" parameterType="com.smartor.domain.PatArchivetag"> |
| | | update pat_archivetag |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | </trim> |
| | | <where> |
| | | <if test="tagid != null">and tagid = #{tagid}</if> |
| | | <if test="patid != null">and patid = #{patid}</if> |
| | | </where> |
| | | </delete> |
| | | |
| | | <delete id="deletePatArchivetagByIds" parameterType="String"> |