¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.controller; |
| | | |
| | | 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.IvrLibaExtemplate; |
| | | import com.smartor.service.IIvrLibaExtemplateService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ©å±è¯æ¯æ¨¡æ¿åºController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrextemplate") |
| | | public class IvrLibaExtemplateController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibaExtemplateService ivrLibaExtemplateService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplate:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibaExtemplate ivrLibaExtemplate) |
| | | { |
| | | startPage(); |
| | | List<IvrLibaExtemplate> list = ivrLibaExtemplateService.selectIvrLibaExtemplateList(ivrLibaExtemplate); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ©å±è¯æ¯æ¨¡æ¿åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplate:export')") |
| | | @Log(title = "æ©å±è¯æ¯æ¨¡æ¿åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaExtemplate ivrLibaExtemplate) |
| | | { |
| | | List<IvrLibaExtemplate> list = ivrLibaExtemplateService.selectIvrLibaExtemplateList(ivrLibaExtemplate); |
| | | ExcelUtil<IvrLibaExtemplate> util = new ExcelUtil<IvrLibaExtemplate>(IvrLibaExtemplate.class); |
| | | util.exportExcel(response, list, "æ©å±è¯æ¯æ¨¡æ¿åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ©å±è¯æ¯æ¨¡æ¿åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplate:query')") |
| | | @GetMapping(value = "/{subModuleID}") |
| | | public AjaxResult getInfo(@PathVariable("subModuleID") String subModuleID) |
| | | { |
| | | return success(ivrLibaExtemplateService.selectIvrLibaExtemplateBySubModuleID(subModuleID)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ©å±è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplate:add')") |
| | | @Log(title = "æ©å±è¯æ¯æ¨¡æ¿åº", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibaExtemplate ivrLibaExtemplate) |
| | | { |
| | | return toAjax(ivrLibaExtemplateService.insertIvrLibaExtemplate(ivrLibaExtemplate)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ©å±è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplate:edit')") |
| | | @Log(title = "æ©å±è¯æ¯æ¨¡æ¿åº", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibaExtemplate ivrLibaExtemplate) |
| | | { |
| | | return toAjax(ivrLibaExtemplateService.updateIvrLibaExtemplate(ivrLibaExtemplate)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿©å±è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplate:remove')") |
| | | @Log(title = "æ©å±è¯æ¯æ¨¡æ¿åº", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{subModuleIDs}") |
| | | public AjaxResult remove(@PathVariable String[] subModuleIDs) |
| | | { |
| | | return toAjax(ivrLibaExtemplateService.deleteIvrLibaExtemplateBySubModuleIDs(subModuleIDs)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.controller; |
| | | |
| | | 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.IvrLibaExtemplatescript; |
| | | import com.smartor.service.IIvrLibaExtemplatescriptService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrextemplatescript") |
| | | public class IvrLibaExtemplatescriptController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibaExtemplatescriptService ivrLibaExtemplatescriptService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplatescript:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibaExtemplatescript ivrLibaExtemplatescript) |
| | | { |
| | | startPage(); |
| | | List<IvrLibaExtemplatescript> list = ivrLibaExtemplatescriptService.selectIvrLibaExtemplatescriptList(ivrLibaExtemplatescript); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplatescript:export')") |
| | | @Log(title = "æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaExtemplatescript ivrLibaExtemplatescript) |
| | | { |
| | | List<IvrLibaExtemplatescript> list = ivrLibaExtemplatescriptService.selectIvrLibaExtemplatescriptList(ivrLibaExtemplatescript); |
| | | ExcelUtil<IvrLibaExtemplatescript> util = new ExcelUtil<IvrLibaExtemplatescript>(IvrLibaExtemplatescript.class); |
| | | util.exportExcel(response, list, "æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplatescript:query')") |
| | | @GetMapping(value = "/{DetailID}") |
| | | public AjaxResult getInfo(@PathVariable("DetailID") String DetailID) |
| | | { |
| | | return success(ivrLibaExtemplatescriptService.selectIvrLibaExtemplatescriptByDetailID(DetailID)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplatescript:add')") |
| | | @Log(title = "æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibaExtemplatescript ivrLibaExtemplatescript) |
| | | { |
| | | return toAjax(ivrLibaExtemplatescriptService.insertIvrLibaExtemplatescript(ivrLibaExtemplatescript)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplatescript:edit')") |
| | | @Log(title = "æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibaExtemplatescript ivrLibaExtemplatescript) |
| | | { |
| | | return toAjax(ivrLibaExtemplatescriptService.updateIvrLibaExtemplatescript(ivrLibaExtemplatescript)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrextemplatescript:remove')") |
| | | @Log(title = "æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{DetailIDs}") |
| | | public AjaxResult remove(@PathVariable String[] DetailIDs) |
| | | { |
| | | return toAjax(ivrLibaExtemplatescriptService.deleteIvrLibaExtemplatescriptByDetailIDs(DetailIDs)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.controller; |
| | | |
| | | 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; |
| | | |
| | | /** |
| | | * è¯æ¯åºController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrlibascript") |
| | | public class IvrLibaScriptController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibaScriptService ivrLibaScriptService; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibaScript ivrLibaScript) |
| | | { |
| | | startPage(); |
| | | List<IvrLibaScript> list = ivrLibaScriptService.selectIvrLibaScriptList(ivrLibaScript); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºè¯æ¯åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:export')") |
| | | @Log(title = "è¯æ¯åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | 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, "è¯æ¯åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åè¯æ¯åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:query')") |
| | | @GetMapping(value = "/{questionid}") |
| | | public AjaxResult getInfo(@PathVariable("questionid") String questionid) |
| | | { |
| | | return success(ivrLibaScriptService.selectIvrLibaScriptByQuestionid(questionid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:add')") |
| | | @Log(title = "è¯æ¯åº", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibaScript ivrLibaScript) |
| | | { |
| | | return toAjax(ivrLibaScriptService.insertIvrLibaScript(ivrLibaScript)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:edit')") |
| | | @Log(title = "è¯æ¯åº", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibaScript ivrLibaScript) |
| | | { |
| | | return toAjax(ivrLibaScriptService.updateIvrLibaScript(ivrLibaScript)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibascript:remove')") |
| | | @Log(title = "è¯æ¯åº", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{questionids}") |
| | | public AjaxResult remove(@PathVariable String[] questionids) |
| | | { |
| | | return toAjax(ivrLibaScriptService.deleteIvrLibaScriptByQuestionids(questionids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.controller; |
| | | |
| | | 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.IvrLibaScripttarget; |
| | | import com.smartor.service.IIvrLibaScripttargetService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * è¯æ¯åºè¯æ¯ææ Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrscripttarget") |
| | | public class IvrLibaScripttargetController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibaScripttargetService ivrLibaScripttargetService; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºè¯æ¯ææ å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscripttarget:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibaScripttarget ivrLibaScripttarget) |
| | | { |
| | | startPage(); |
| | | List<IvrLibaScripttarget> list = ivrLibaScripttargetService.selectIvrLibaScripttargetList(ivrLibaScripttarget); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºè¯æ¯åºè¯æ¯ææ å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscripttarget:export')") |
| | | @Log(title = "è¯æ¯åºè¯æ¯ææ ", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaScripttarget ivrLibaScripttarget) |
| | | { |
| | | List<IvrLibaScripttarget> list = ivrLibaScripttargetService.selectIvrLibaScripttargetList(ivrLibaScripttarget); |
| | | ExcelUtil<IvrLibaScripttarget> util = new ExcelUtil<IvrLibaScripttarget>(IvrLibaScripttarget.class); |
| | | util.exportExcel(response, list, "è¯æ¯åºè¯æ¯ææ æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åè¯æ¯åºè¯æ¯ææ 详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscripttarget:query')") |
| | | @GetMapping(value = "/{questionTargetID}") |
| | | public AjaxResult getInfo(@PathVariable("questionTargetID") String questionTargetID) |
| | | { |
| | | return success(ivrLibaScripttargetService.selectIvrLibaScripttargetByQuestionTargetID(questionTargetID)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åºè¯æ¯ææ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscripttarget:add')") |
| | | @Log(title = "è¯æ¯åºè¯æ¯ææ ", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibaScripttarget ivrLibaScripttarget) |
| | | { |
| | | return toAjax(ivrLibaScripttargetService.insertIvrLibaScripttarget(ivrLibaScripttarget)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åºè¯æ¯ææ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscripttarget:edit')") |
| | | @Log(title = "è¯æ¯åºè¯æ¯ææ ", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibaScripttarget ivrLibaScripttarget) |
| | | { |
| | | return toAjax(ivrLibaScripttargetService.updateIvrLibaScripttarget(ivrLibaScripttarget)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åºè¯æ¯ææ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscripttarget:remove')") |
| | | @Log(title = "è¯æ¯åºè¯æ¯ææ ", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{questionTargetIDs}") |
| | | public AjaxResult remove(@PathVariable String[] questionTargetIDs) |
| | | { |
| | | return toAjax(ivrLibaScripttargetService.deleteIvrLibaScripttargetByQuestionTargetIDs(questionTargetIDs)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.controller; |
| | | |
| | | 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.IvrLibaTarget; |
| | | import com.smartor.service.IIvrLibaTargetService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * ææ åºController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrtarget") |
| | | public class IvrLibaTargetController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibaTargetService ivrLibaTargetService; |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtarget:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | startPage(); |
| | | List<IvrLibaTarget> list = ivrLibaTargetService.selectIvrLibaTargetList(ivrLibaTarget); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºææ åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtarget:export')") |
| | | @Log(title = "ææ åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | List<IvrLibaTarget> list = ivrLibaTargetService.selectIvrLibaTargetList(ivrLibaTarget); |
| | | ExcelUtil<IvrLibaTarget> util = new ExcelUtil<IvrLibaTarget>(IvrLibaTarget.class); |
| | | util.exportExcel(response, list, "ææ åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åææ åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtarget:query')") |
| | | @GetMapping(value = "/{targetID}") |
| | | public AjaxResult getInfo(@PathVariable("targetID") String targetID) |
| | | { |
| | | return success(ivrLibaTargetService.selectIvrLibaTargetByTargetID(targetID)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtarget:add')") |
| | | @Log(title = "ææ åº", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | return toAjax(ivrLibaTargetService.insertIvrLibaTarget(ivrLibaTarget)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtarget:edit')") |
| | | @Log(title = "ææ åº", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | return toAjax(ivrLibaTargetService.updateIvrLibaTarget(ivrLibaTarget)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿æ åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtarget:remove')") |
| | | @Log(title = "ææ åº", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{targetIDs}") |
| | | public AjaxResult remove(@PathVariable String[] targetIDs) |
| | | { |
| | | return toAjax(ivrLibaTargetService.deleteIvrLibaTargetByTargetIDs(targetIDs)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.controller; |
| | | |
| | | 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.IvrLibaTemplate; |
| | | import com.smartor.service.IIvrLibaTemplateService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrtemplate") |
| | | public class IvrLibaTemplateController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibaTemplateService ivrLibaTemplateService; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplate:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibaTemplate ivrLibaTemplate) |
| | | { |
| | | startPage(); |
| | | List<IvrLibaTemplate> list = ivrLibaTemplateService.selectIvrLibaTemplateList(ivrLibaTemplate); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºè¯æ¯æ¨¡æ¿åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplate:export')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaTemplate ivrLibaTemplate) |
| | | { |
| | | List<IvrLibaTemplate> list = ivrLibaTemplateService.selectIvrLibaTemplateList(ivrLibaTemplate); |
| | | ExcelUtil<IvrLibaTemplate> util = new ExcelUtil<IvrLibaTemplate>(IvrLibaTemplate.class); |
| | | util.exportExcel(response, list, "è¯æ¯æ¨¡æ¿åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åè¯æ¯æ¨¡æ¿åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplate:query')") |
| | | @GetMapping(value = "/{templateID}") |
| | | public AjaxResult getInfo(@PathVariable("templateID") String templateID) |
| | | { |
| | | return success(ivrLibaTemplateService.selectIvrLibaTemplateByTemplateID(templateID)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplate:add')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åº", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibaTemplate ivrLibaTemplate) |
| | | { |
| | | return toAjax(ivrLibaTemplateService.insertIvrLibaTemplate(ivrLibaTemplate)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplate:edit')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åº", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibaTemplate ivrLibaTemplate) |
| | | { |
| | | return toAjax(ivrLibaTemplateService.updateIvrLibaTemplate(ivrLibaTemplate)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplate:remove')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åº", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{templateIDs}") |
| | | public AjaxResult remove(@PathVariable String[] templateIDs) |
| | | { |
| | | return toAjax(ivrLibaTemplateService.deleteIvrLibaTemplateByTemplateIDs(templateIDs)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.controller; |
| | | |
| | | 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.IvrLibaTemplatescript; |
| | | import com.smartor.service.IIvrLibaTemplatescriptService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºè¯æ¯Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrtemplatescript") |
| | | public class IvrLibaTemplatescriptController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibaTemplatescriptService ivrLibaTemplatescriptService; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatescript:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibaTemplatescript ivrLibaTemplatescript) |
| | | { |
| | | startPage(); |
| | | List<IvrLibaTemplatescript> list = ivrLibaTemplatescriptService.selectIvrLibaTemplatescriptList(ivrLibaTemplatescript); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºè¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatescript:export')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åºè¯æ¯", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaTemplatescript ivrLibaTemplatescript) |
| | | { |
| | | List<IvrLibaTemplatescript> list = ivrLibaTemplatescriptService.selectIvrLibaTemplatescriptList(ivrLibaTemplatescript); |
| | | ExcelUtil<IvrLibaTemplatescript> util = new ExcelUtil<IvrLibaTemplatescript>(IvrLibaTemplatescript.class); |
| | | util.exportExcel(response, list, "è¯æ¯æ¨¡æ¿åºè¯æ¯æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åè¯æ¯æ¨¡æ¿åºè¯æ¯è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatescript:query')") |
| | | @GetMapping(value = "/{templateQuestionID}") |
| | | public AjaxResult getInfo(@PathVariable("templateQuestionID") String templateQuestionID) |
| | | { |
| | | return success(ivrLibaTemplatescriptService.selectIvrLibaTemplatescriptByTemplateQuestionID(templateQuestionID)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatescript:add')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åºè¯æ¯", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibaTemplatescript ivrLibaTemplatescript) |
| | | { |
| | | return toAjax(ivrLibaTemplatescriptService.insertIvrLibaTemplatescript(ivrLibaTemplatescript)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatescript:edit')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åºè¯æ¯", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibaTemplatescript ivrLibaTemplatescript) |
| | | { |
| | | return toAjax(ivrLibaTemplatescriptService.updateIvrLibaTemplatescript(ivrLibaTemplatescript)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatescript:remove')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åºè¯æ¯", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{templateQuestionIDs}") |
| | | public AjaxResult remove(@PathVariable String[] templateQuestionIDs) |
| | | { |
| | | return toAjax(ivrLibaTemplatescriptService.deleteIvrLibaTemplatescriptByTemplateQuestionIDs(templateQuestionIDs)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.controller; |
| | | |
| | | 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.IvrLibaTemplatetarget; |
| | | import com.smartor.service.IIvrLibaTemplatetargetService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºè¯æ¯ææ Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrtemplatetarget") |
| | | public class IvrLibaTemplatetargetController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibaTemplatetargetService ivrLibaTemplatetargetService; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatetarget:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibaTemplatetarget ivrLibaTemplatetarget) |
| | | { |
| | | startPage(); |
| | | List<IvrLibaTemplatetarget> list = ivrLibaTemplatetargetService.selectIvrLibaTemplatetargetList(ivrLibaTemplatetarget); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºè¯æ¯æ¨¡æ¿åºè¯æ¯ææ å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatetarget:export')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibaTemplatetarget ivrLibaTemplatetarget) |
| | | { |
| | | List<IvrLibaTemplatetarget> list = ivrLibaTemplatetargetService.selectIvrLibaTemplatetargetList(ivrLibaTemplatetarget); |
| | | ExcelUtil<IvrLibaTemplatetarget> util = new ExcelUtil<IvrLibaTemplatetarget>(IvrLibaTemplatetarget.class); |
| | | util.exportExcel(response, list, "è¯æ¯æ¨¡æ¿åºè¯æ¯ææ æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åè¯æ¯æ¨¡æ¿åºè¯æ¯ææ 详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatetarget:query')") |
| | | @GetMapping(value = "/{templateTargetID}") |
| | | public AjaxResult getInfo(@PathVariable("templateTargetID") String templateTargetID) |
| | | { |
| | | return success(ivrLibaTemplatetargetService.selectIvrLibaTemplatetargetByTemplateTargetID(templateTargetID)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatetarget:add')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibaTemplatetarget ivrLibaTemplatetarget) |
| | | { |
| | | return toAjax(ivrLibaTemplatetargetService.insertIvrLibaTemplatetarget(ivrLibaTemplatetarget)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatetarget:edit')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibaTemplatetarget ivrLibaTemplatetarget) |
| | | { |
| | | return toAjax(ivrLibaTemplatetargetService.updateIvrLibaTemplatetarget(ivrLibaTemplatetarget)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrtemplatetarget:remove')") |
| | | @Log(title = "è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{templateTargetIDs}") |
| | | public AjaxResult remove(@PathVariable String[] templateTargetIDs) |
| | | { |
| | | return toAjax(ivrLibaTemplatetargetService.deleteIvrLibaTemplatetargetByTemplateTargetIDs(templateTargetIDs)); |
| | | } |
| | | } |
| | |
| | | # redis é
ç½® |
| | | redis: |
| | | # å°å |
| | | host: localhost |
| | | host: 116.62.18.175 |
| | | # 端å£ï¼é»è®¤ä¸º6379 |
| | | port: 6379 |
| | | port: 6020 |
| | | # æ°æ®åºç´¢å¼ |
| | | database: 0 |
| | | # å¯ç |
| | | password: |
| | | password: Smartor |
| | | # è¿æ¥è¶
æ¶æ¶é´ |
| | | timeout: 10s |
| | | lettuce: |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | 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_extemplate |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public class IvrLibaExtemplate extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private String subModuleID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String subModuleName; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long version; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isEnable; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isDel; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String addUserID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date addTime; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String modifyUserID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date modifyTime; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long GroupID; |
| | | |
| | | /** å 餿 è®° */ |
| | | 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 setSubModuleID(String subModuleID) |
| | | { |
| | | this.subModuleID = subModuleID; |
| | | } |
| | | |
| | | public String getSubModuleID() |
| | | { |
| | | return subModuleID; |
| | | } |
| | | public void setSubModuleName(String subModuleName) |
| | | { |
| | | this.subModuleName = subModuleName; |
| | | } |
| | | |
| | | public String getSubModuleName() |
| | | { |
| | | return subModuleName; |
| | | } |
| | | public void setLanguage(String language) |
| | | { |
| | | this.language = language; |
| | | } |
| | | |
| | | public String getLanguage() |
| | | { |
| | | return language; |
| | | } |
| | | 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(Long GroupID) |
| | | { |
| | | this.GroupID = GroupID; |
| | | } |
| | | |
| | | public Long 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("subModuleID", getSubModuleID()) |
| | | .append("subModuleName", getSubModuleName()) |
| | | .append("language", getLanguage()) |
| | | .append("description", getDescription()) |
| | | .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 java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | 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_extemplatescript |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public class IvrLibaExtemplatescript extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private String DetailID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String subModuleID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long switchID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String switchText; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String switchWav; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String selfRegex; |
| | | |
| | | /** $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 setDetailID(String DetailID) |
| | | { |
| | | this.DetailID = DetailID; |
| | | } |
| | | |
| | | public String getDetailID() |
| | | { |
| | | return DetailID; |
| | | } |
| | | public void setSubModuleID(String subModuleID) |
| | | { |
| | | this.subModuleID = subModuleID; |
| | | } |
| | | |
| | | public String getSubModuleID() |
| | | { |
| | | return subModuleID; |
| | | } |
| | | public void setSwitchID(Long switchID) |
| | | { |
| | | this.switchID = switchID; |
| | | } |
| | | |
| | | public Long getSwitchID() |
| | | { |
| | | return switchID; |
| | | } |
| | | public void setSwitchText(String switchText) |
| | | { |
| | | this.switchText = switchText; |
| | | } |
| | | |
| | | public String getSwitchText() |
| | | { |
| | | return switchText; |
| | | } |
| | | public void setSwitchWav(String switchWav) |
| | | { |
| | | this.switchWav = switchWav; |
| | | } |
| | | |
| | | public String getSwitchWav() |
| | | { |
| | | return switchWav; |
| | | } |
| | | public void setSelfRegex(String selfRegex) |
| | | { |
| | | this.selfRegex = selfRegex; |
| | | } |
| | | |
| | | public String getSelfRegex() |
| | | { |
| | | return selfRegex; |
| | | } |
| | | 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("DetailID", getDetailID()) |
| | | .append("subModuleID", getSubModuleID()) |
| | | .append("switchID", getSwitchID()) |
| | | .append("switchText", getSwitchText()) |
| | | .append("switchWav", getSwitchWav()) |
| | | .append("selfRegex", getSelfRegex()) |
| | | .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 java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | 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 |
| | | */ |
| | | public class IvrLibaScript extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** */ |
| | | private String questionid; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String questionpoint; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String questiontext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String questionvoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String nomatchtext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String nomatchvoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String sliencetext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String sliencevoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String submoduletext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String submodulevoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String noclearlytext; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String noclearlyvoice; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String questiontype; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String categoryname; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String targetoptions; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String language; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private Long version; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private Long isenable; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private Long isdel; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String adduserid; |
| | | |
| | | /** */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date addtime; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String modifyuserid; |
| | | |
| | | /** */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date modifytime; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String groupid; |
| | | |
| | | /** å 餿 è®° */ |
| | | 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 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 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 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("description", getDescription()) |
| | | .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 java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | 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_scripttarget |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public class IvrLibaScripttarget extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private String questionTargetID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetType; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String categoryName; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetValue; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String basicRegex; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String selfRegex; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String regexUsedType; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long sort; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long version; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isEnable; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isDel; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String tipsJson; |
| | | |
| | | /** å 餿 è®° */ |
| | | 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 setQuestionTargetID(String questionTargetID) |
| | | { |
| | | this.questionTargetID = questionTargetID; |
| | | } |
| | | |
| | | public String getQuestionTargetID() |
| | | { |
| | | return questionTargetID; |
| | | } |
| | | public void setQuestionID(String questionID) |
| | | { |
| | | this.questionID = questionID; |
| | | } |
| | | |
| | | public String getQuestionID() |
| | | { |
| | | return questionID; |
| | | } |
| | | public void setTargetID(String targetID) |
| | | { |
| | | this.targetID = targetID; |
| | | } |
| | | |
| | | public String getTargetID() |
| | | { |
| | | return targetID; |
| | | } |
| | | public void setTargetType(String targetType) |
| | | { |
| | | this.targetType = targetType; |
| | | } |
| | | |
| | | public String getTargetType() |
| | | { |
| | | return targetType; |
| | | } |
| | | public void setCategoryName(String categoryName) |
| | | { |
| | | this.categoryName = categoryName; |
| | | } |
| | | |
| | | public String getCategoryName() |
| | | { |
| | | return categoryName; |
| | | } |
| | | public void setTargetValue(String targetValue) |
| | | { |
| | | this.targetValue = targetValue; |
| | | } |
| | | |
| | | public String getTargetValue() |
| | | { |
| | | return targetValue; |
| | | } |
| | | public void setBasicRegex(String basicRegex) |
| | | { |
| | | this.basicRegex = basicRegex; |
| | | } |
| | | |
| | | public String getBasicRegex() |
| | | { |
| | | return basicRegex; |
| | | } |
| | | public void setSelfRegex(String selfRegex) |
| | | { |
| | | this.selfRegex = selfRegex; |
| | | } |
| | | |
| | | public String getSelfRegex() |
| | | { |
| | | return selfRegex; |
| | | } |
| | | public void setRegexUsedType(String regexUsedType) |
| | | { |
| | | this.regexUsedType = regexUsedType; |
| | | } |
| | | |
| | | public String getRegexUsedType() |
| | | { |
| | | return regexUsedType; |
| | | } |
| | | public void setSort(Long sort) |
| | | { |
| | | this.sort = sort; |
| | | } |
| | | |
| | | public Long getSort() |
| | | { |
| | | return sort; |
| | | } |
| | | 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 setTipsJson(String tipsJson) |
| | | { |
| | | this.tipsJson = tipsJson; |
| | | } |
| | | |
| | | public String getTipsJson() |
| | | { |
| | | return tipsJson; |
| | | } |
| | | 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("questionTargetID", getQuestionTargetID()) |
| | | .append("questionID", getQuestionID()) |
| | | .append("targetID", getTargetID()) |
| | | .append("targetType", getTargetType()) |
| | | .append("categoryName", getCategoryName()) |
| | | .append("targetValue", getTargetValue()) |
| | | .append("basicRegex", getBasicRegex()) |
| | | .append("selfRegex", getSelfRegex()) |
| | | .append("regexUsedType", getRegexUsedType()) |
| | | .append("sort", getSort()) |
| | | .append("version", getVersion()) |
| | | .append("isEnable", getIsEnable()) |
| | | .append("isDel", getIsDel()) |
| | | .append("tipsJson", getTipsJson()) |
| | | .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 java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | 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 |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public class IvrLibaTarget extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private String targetID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetType; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String categoryName; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetValue; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetRegex; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long version; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isEnable; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isDel; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String addUserID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date addTime; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String modifyUserID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date modifyTime; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String groupID; |
| | | |
| | | /** æ¯å¦å¼å¸¸æ è¯ */ |
| | | @Excel(name = "æ¯å¦å¼å¸¸æ è¯") |
| | | private Long isAbnormal; |
| | | |
| | | /** é¢è¦éå¼ä¸é */ |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | private Long WarnUp; |
| | | |
| | | /** é¢è¦éå¼ä¸é */ |
| | | @Excel(name = "é¢è¦éå¼ä¸é") |
| | | private Long WarnDown; |
| | | |
| | | /** å 餿 è®° */ |
| | | 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 setTargetID(String targetID) |
| | | { |
| | | this.targetID = targetID; |
| | | } |
| | | |
| | | public String getTargetID() |
| | | { |
| | | return targetID; |
| | | } |
| | | public void setTargetType(String targetType) |
| | | { |
| | | this.targetType = targetType; |
| | | } |
| | | |
| | | public String getTargetType() |
| | | { |
| | | return targetType; |
| | | } |
| | | public void setCategoryName(String categoryName) |
| | | { |
| | | this.categoryName = categoryName; |
| | | } |
| | | |
| | | public String getCategoryName() |
| | | { |
| | | return categoryName; |
| | | } |
| | | public void setTargetValue(String targetValue) |
| | | { |
| | | this.targetValue = targetValue; |
| | | } |
| | | |
| | | public String getTargetValue() |
| | | { |
| | | return targetValue; |
| | | } |
| | | public void setTargetRegex(String targetRegex) |
| | | { |
| | | this.targetRegex = targetRegex; |
| | | } |
| | | |
| | | public String getTargetRegex() |
| | | { |
| | | return targetRegex; |
| | | } |
| | | public void setLanguage(String language) |
| | | { |
| | | this.language = language; |
| | | } |
| | | |
| | | public String getLanguage() |
| | | { |
| | | return language; |
| | | } |
| | | 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 setIsAbnormal(Long isAbnormal) |
| | | { |
| | | this.isAbnormal = isAbnormal; |
| | | } |
| | | |
| | | public Long getIsAbnormal() |
| | | { |
| | | return isAbnormal; |
| | | } |
| | | public void setWarnUp(Long WarnUp) |
| | | { |
| | | this.WarnUp = WarnUp; |
| | | } |
| | | |
| | | public Long getWarnUp() |
| | | { |
| | | return WarnUp; |
| | | } |
| | | public void setWarnDown(Long WarnDown) |
| | | { |
| | | this.WarnDown = WarnDown; |
| | | } |
| | | |
| | | public Long getWarnDown() |
| | | { |
| | | return WarnDown; |
| | | } |
| | | 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("targetID", getTargetID()) |
| | | .append("targetType", getTargetType()) |
| | | .append("categoryName", getCategoryName()) |
| | | .append("targetValue", getTargetValue()) |
| | | .append("targetRegex", getTargetRegex()) |
| | | .append("description", getDescription()) |
| | | .append("language", getLanguage()) |
| | | .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("isAbnormal", getIsAbnormal()) |
| | | .append("WarnUp", getWarnUp()) |
| | | .append("WarnDown", getWarnDown()) |
| | | .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 java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | 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_template |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public class IvrLibaTemplate extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private String templateID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templateName; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long silencetime; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long slienceRepeatTimes; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long nomatchRepeatTimes; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long firstQuestionNum; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submodule; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isEnable; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isDel; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String addUserID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date addTime; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String modifyUserID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date modifyTime; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String groupID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String labelInfo; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submoduleID; |
| | | |
| | | /** ææ¥ç±»å 0.è¯é³ä¼å
1.æåä¼å
*/ |
| | | @Excel(name = "ææ¥ç±»å 0.è¯é³ä¼å
1.æåä¼å
") |
| | | private Long playType; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String icd10code; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String icd10codename; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long atuoTaskDayOffset; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String DeptIds; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String DeptNames; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String fKsdm; |
| | | |
| | | /** å 餿 è®° */ |
| | | 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 setTemplateID(String templateID) |
| | | { |
| | | this.templateID = templateID; |
| | | } |
| | | |
| | | 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 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("description", getDescription()) |
| | | .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(); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | 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_templatescript |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public class IvrLibaTemplatescript extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private String templateQuestionID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long templateQuestionNum; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templateID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionPoint; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionText; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noMatchText; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noMatchVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String slienceText; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String slienceVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submoduleText; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String submoduleVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noClearlyText; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String noClearlyVoice; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String categoryName; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetOptions; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | |
| | | /** $column.columnComment */ |
| | | @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 java.util.Date; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | 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 |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public class IvrLibaTemplatetarget extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private String templateTargetID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templateQuestionID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long templateQuestionNum; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long nextQuestionNum; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templateID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long switchID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String switchDescription; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String switchText; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String switchWav; |
| | | |
| | | /** èç¹å¾
å¹é
è¯é³ */ |
| | | @Excel(name = "èç¹å¾
å¹é
è¯é³") |
| | | private String switchTempWav; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetType; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String categoryName; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetValue; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String targetID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String questionTargetID; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String basicRegex; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String selfRegex; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String regexUsedType; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String language; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isEnable; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isDel; |
| | | |
| | | /** ææ¥ç±»å 0.è¯é³ä¼å
1.æåä¼å
*/ |
| | | @Excel(name = "ææ¥ç±»å 0.è¯é³ä¼å
1.æåä¼å
") |
| | | private Long playType; |
| | | |
| | | /** å 餿 è®° */ |
| | | 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 setTemplateTargetID(String templateTargetID) |
| | | { |
| | | this.templateTargetID = templateTargetID; |
| | | } |
| | | |
| | | public String getTemplateTargetID() |
| | | { |
| | | return templateTargetID; |
| | | } |
| | | 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 setNextQuestionNum(Long nextQuestionNum) |
| | | { |
| | | this.nextQuestionNum = nextQuestionNum; |
| | | } |
| | | |
| | | public Long getNextQuestionNum() |
| | | { |
| | | return nextQuestionNum; |
| | | } |
| | | public void setTemplateID(String templateID) |
| | | { |
| | | this.templateID = templateID; |
| | | } |
| | | |
| | | public String getTemplateID() |
| | | { |
| | | return templateID; |
| | | } |
| | | public void setSwitchID(Long switchID) |
| | | { |
| | | this.switchID = switchID; |
| | | } |
| | | |
| | | public Long getSwitchID() |
| | | { |
| | | return switchID; |
| | | } |
| | | public void setSwitchDescription(String switchDescription) |
| | | { |
| | | this.switchDescription = switchDescription; |
| | | } |
| | | |
| | | public String getSwitchDescription() |
| | | { |
| | | return switchDescription; |
| | | } |
| | | public void setSwitchText(String switchText) |
| | | { |
| | | this.switchText = switchText; |
| | | } |
| | | |
| | | public String getSwitchText() |
| | | { |
| | | return switchText; |
| | | } |
| | | public void setSwitchWav(String switchWav) |
| | | { |
| | | this.switchWav = switchWav; |
| | | } |
| | | |
| | | public String getSwitchWav() |
| | | { |
| | | return switchWav; |
| | | } |
| | | public void setSwitchTempWav(String switchTempWav) |
| | | { |
| | | this.switchTempWav = switchTempWav; |
| | | } |
| | | |
| | | public String getSwitchTempWav() |
| | | { |
| | | return switchTempWav; |
| | | } |
| | | public void setTargetType(String targetType) |
| | | { |
| | | this.targetType = targetType; |
| | | } |
| | | |
| | | public String getTargetType() |
| | | { |
| | | return targetType; |
| | | } |
| | | public void setCategoryName(String categoryName) |
| | | { |
| | | this.categoryName = categoryName; |
| | | } |
| | | |
| | | public String getCategoryName() |
| | | { |
| | | return categoryName; |
| | | } |
| | | public void setTargetValue(String targetValue) |
| | | { |
| | | this.targetValue = targetValue; |
| | | } |
| | | |
| | | public String getTargetValue() |
| | | { |
| | | return targetValue; |
| | | } |
| | | public void setTargetID(String targetID) |
| | | { |
| | | this.targetID = targetID; |
| | | } |
| | | |
| | | public String getTargetID() |
| | | { |
| | | return targetID; |
| | | } |
| | | public void setQuestionTargetID(String questionTargetID) |
| | | { |
| | | this.questionTargetID = questionTargetID; |
| | | } |
| | | |
| | | public String getQuestionTargetID() |
| | | { |
| | | return questionTargetID; |
| | | } |
| | | public void setBasicRegex(String basicRegex) |
| | | { |
| | | this.basicRegex = basicRegex; |
| | | } |
| | | |
| | | public String getBasicRegex() |
| | | { |
| | | return basicRegex; |
| | | } |
| | | public void setSelfRegex(String selfRegex) |
| | | { |
| | | this.selfRegex = selfRegex; |
| | | } |
| | | |
| | | public String getSelfRegex() |
| | | { |
| | | return selfRegex; |
| | | } |
| | | public void setRegexUsedType(String regexUsedType) |
| | | { |
| | | this.regexUsedType = regexUsedType; |
| | | } |
| | | |
| | | public String getRegexUsedType() |
| | | { |
| | | return regexUsedType; |
| | | } |
| | | public void setLanguage(String language) |
| | | { |
| | | this.language = language; |
| | | } |
| | | |
| | | 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 setPlayType(Long playType) |
| | | { |
| | | this.playType = playType; |
| | | } |
| | | |
| | | public Long getPlayType() |
| | | { |
| | | return playType; |
| | | } |
| | | 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("templateTargetID", getTemplateTargetID()) |
| | | .append("templateQuestionID", getTemplateQuestionID()) |
| | | .append("templateQuestionNum", getTemplateQuestionNum()) |
| | | .append("nextQuestionNum", getNextQuestionNum()) |
| | | .append("templateID", getTemplateID()) |
| | | .append("switchID", getSwitchID()) |
| | | .append("switchDescription", getSwitchDescription()) |
| | | .append("switchText", getSwitchText()) |
| | | .append("switchWav", getSwitchWav()) |
| | | .append("switchTempWav", getSwitchTempWav()) |
| | | .append("targetType", getTargetType()) |
| | | .append("categoryName", getCategoryName()) |
| | | .append("targetValue", getTargetValue()) |
| | | .append("targetID", getTargetID()) |
| | | .append("questionTargetID", getQuestionTargetID()) |
| | | .append("basicRegex", getBasicRegex()) |
| | | .append("selfRegex", getSelfRegex()) |
| | | .append("regexUsedType", getRegexUsedType()) |
| | | .append("language", getLanguage()) |
| | | .append("isEnable", getIsEnable()) |
| | | .append("isDel", getIsDel()) |
| | | .append("playType", getPlayType()) |
| | | .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.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaExtemplate; |
| | | |
| | | /** |
| | | * æ©å±è¯æ¯æ¨¡æ¿åºMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IvrLibaExtemplateMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param subModuleID æ©å±è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | public IvrLibaExtemplate selectIvrLibaExtemplateBySubModuleID(String subModuleID); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºå表 |
| | | * |
| | | * @param ivrLibaExtemplate æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åºéå |
| | | */ |
| | | public List<IvrLibaExtemplate> selectIvrLibaExtemplateList(IvrLibaExtemplate ivrLibaExtemplate); |
| | | |
| | | /** |
| | | * æ°å¢æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaExtemplate æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaExtemplate(IvrLibaExtemplate ivrLibaExtemplate); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaExtemplate æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaExtemplate(IvrLibaExtemplate ivrLibaExtemplate); |
| | | |
| | | /** |
| | | * å 餿©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param subModuleID æ©å±è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaExtemplateBySubModuleID(String subModuleID); |
| | | |
| | | /** |
| | | * æ¹éå 餿©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param subModuleIDs éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaExtemplateBySubModuleIDs(String[] subModuleIDs); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaExtemplatescript; |
| | | |
| | | /** |
| | | * æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IvrLibaExtemplatescriptMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param DetailID æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | public IvrLibaExtemplatescript selectIvrLibaExtemplatescriptByDetailID(String DetailID); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | * |
| | | * @param ivrLibaExtemplatescript æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯éå |
| | | */ |
| | | public List<IvrLibaExtemplatescript> selectIvrLibaExtemplatescriptList(IvrLibaExtemplatescript ivrLibaExtemplatescript); |
| | | |
| | | /** |
| | | * æ°å¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaExtemplatescript æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaExtemplatescript(IvrLibaExtemplatescript ivrLibaExtemplatescript); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaExtemplatescript æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaExtemplatescript(IvrLibaExtemplatescript ivrLibaExtemplatescript); |
| | | |
| | | /** |
| | | * å 餿©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param DetailID æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaExtemplatescriptByDetailID(String DetailID); |
| | | |
| | | /** |
| | | * æ¹éå 餿©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param DetailIDs éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaExtemplatescriptByDetailIDs(String[] DetailIDs); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaScript; |
| | | |
| | | /** |
| | | * è¯æ¯åºMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IvrLibaScriptMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åº |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return è¯æ¯åº |
| | | */ |
| | | public IvrLibaScript selectIvrLibaScriptByQuestionid(String questionid); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return è¯æ¯åºéå |
| | | */ |
| | | public List<IvrLibaScript> selectIvrLibaScriptList(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScript(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScript(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åº |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptByQuestionid(String questionid); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯åº |
| | | * |
| | | * @param questionids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptByQuestionids(String[] questionids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaScripttarget; |
| | | |
| | | /** |
| | | * è¯æ¯åºè¯æ¯ææ Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IvrLibaScripttargetMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºè¯æ¯ææ |
| | | * |
| | | * @param questionTargetID è¯æ¯åºè¯æ¯ææ ä¸»é® |
| | | * @return è¯æ¯åºè¯æ¯ææ |
| | | */ |
| | | public IvrLibaScripttarget selectIvrLibaScripttargetByQuestionTargetID(String questionTargetID); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºè¯æ¯ææ å表 |
| | | * |
| | | * @param ivrLibaScripttarget è¯æ¯åºè¯æ¯ææ |
| | | * @return è¯æ¯åºè¯æ¯ææ éå |
| | | */ |
| | | public List<IvrLibaScripttarget> selectIvrLibaScripttargetList(IvrLibaScripttarget ivrLibaScripttarget); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaScripttarget è¯æ¯åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScripttarget(IvrLibaScripttarget ivrLibaScripttarget); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaScripttarget è¯æ¯åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScripttarget(IvrLibaScripttarget ivrLibaScripttarget); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åºè¯æ¯ææ |
| | | * |
| | | * @param questionTargetID è¯æ¯åºè¯æ¯ææ ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScripttargetByQuestionTargetID(String questionTargetID); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯åºè¯æ¯ææ |
| | | * |
| | | * @param questionTargetIDs éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScripttargetByQuestionTargetIDs(String[] questionTargetIDs); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaTarget; |
| | | |
| | | /** |
| | | * ææ åºMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IvrLibaTargetMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢ææ åº |
| | | * |
| | | * @param targetID ææ åºä¸»é® |
| | | * @return ææ åº |
| | | */ |
| | | public IvrLibaTarget selectIvrLibaTargetByTargetID(String targetID); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ åºå表 |
| | | * |
| | | * @param ivrLibaTarget ææ åº |
| | | * @return ææ åºéå |
| | | */ |
| | | public List<IvrLibaTarget> selectIvrLibaTargetList(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | /** |
| | | * æ°å¢ææ åº |
| | | * |
| | | * @param ivrLibaTarget ææ åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTarget(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ åº |
| | | * |
| | | * @param ivrLibaTarget ææ åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTarget(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | /** |
| | | * å 餿æ åº |
| | | * |
| | | * @param targetID ææ åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetByTargetID(String targetID); |
| | | |
| | | /** |
| | | * æ¹éå 餿æ åº |
| | | * |
| | | * @param targetIDs éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetByTargetIDs(String[] targetIDs); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaTemplate; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IvrLibaTemplateMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param templateID è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | public IvrLibaTemplate selectIvrLibaTemplateByTemplateID(String templateID); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºå表 |
| | | * |
| | | * @param ivrLibaTemplate è¯æ¯æ¨¡æ¿åº |
| | | * @return è¯æ¯æ¨¡æ¿åºéå |
| | | */ |
| | | public List<IvrLibaTemplate> selectIvrLibaTemplateList(IvrLibaTemplate ivrLibaTemplate); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaTemplate è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTemplate(IvrLibaTemplate ivrLibaTemplate); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaTemplate è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTemplate(IvrLibaTemplate ivrLibaTemplate); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param templateID è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplateByTemplateID(String templateID); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param templateIDs éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplateByTemplateIDs(String[] templateIDs); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaTemplatescript; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºè¯æ¯Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IvrLibaTemplatescriptMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param templateQuestionID è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | public IvrLibaTemplatescript selectIvrLibaTemplatescriptByTemplateQuestionID(String templateQuestionID); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | * |
| | | * @param ivrLibaTemplatescript è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯éå |
| | | */ |
| | | public List<IvrLibaTemplatescript> selectIvrLibaTemplatescriptList(IvrLibaTemplatescript ivrLibaTemplatescript); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaTemplatescript è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTemplatescript(IvrLibaTemplatescript ivrLibaTemplatescript); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaTemplatescript è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTemplatescript(IvrLibaTemplatescript ivrLibaTemplatescript); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param templateQuestionID è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatescriptByTemplateQuestionID(String templateQuestionID); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param templateQuestionIDs éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatescriptByTemplateQuestionIDs(String[] templateQuestionIDs); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaTemplatetarget; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºè¯æ¯ææ Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IvrLibaTemplatetargetMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param templateTargetID è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ä¸»é® |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | */ |
| | | public IvrLibaTemplatetarget selectIvrLibaTemplatetargetByTemplateTargetID(String templateTargetID); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ å表 |
| | | * |
| | | * @param ivrLibaTemplatetarget è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ææ éå |
| | | */ |
| | | public List<IvrLibaTemplatetarget> selectIvrLibaTemplatetargetList(IvrLibaTemplatetarget ivrLibaTemplatetarget); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaTemplatetarget è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTemplatetarget(IvrLibaTemplatetarget ivrLibaTemplatetarget); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaTemplatetarget è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTemplatetarget(IvrLibaTemplatetarget ivrLibaTemplatetarget); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param templateTargetID è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatetargetByTemplateTargetID(String templateTargetID); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param templateTargetIDs éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatetargetByTemplateTargetIDs(String[] templateTargetIDs); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaExtemplate; |
| | | |
| | | /** |
| | | * æ©å±è¯æ¯æ¨¡æ¿åºServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IIvrLibaExtemplateService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param subModuleID æ©å±è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | public IvrLibaExtemplate selectIvrLibaExtemplateBySubModuleID(String subModuleID); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºå表 |
| | | * |
| | | * @param ivrLibaExtemplate æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åºéå |
| | | */ |
| | | public List<IvrLibaExtemplate> selectIvrLibaExtemplateList(IvrLibaExtemplate ivrLibaExtemplate); |
| | | |
| | | /** |
| | | * æ°å¢æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaExtemplate æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaExtemplate(IvrLibaExtemplate ivrLibaExtemplate); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaExtemplate æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaExtemplate(IvrLibaExtemplate ivrLibaExtemplate); |
| | | |
| | | /** |
| | | * æ¹éå 餿©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param subModuleIDs éè¦å é¤çæ©å±è¯æ¯æ¨¡æ¿åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaExtemplateBySubModuleIDs(String[] subModuleIDs); |
| | | |
| | | /** |
| | | * å 餿©å±è¯æ¯æ¨¡æ¿åºä¿¡æ¯ |
| | | * |
| | | * @param subModuleID æ©å±è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaExtemplateBySubModuleID(String subModuleID); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaExtemplatescript; |
| | | |
| | | /** |
| | | * æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IIvrLibaExtemplatescriptService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param DetailID æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | public IvrLibaExtemplatescript selectIvrLibaExtemplatescriptByDetailID(String DetailID); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | * |
| | | * @param ivrLibaExtemplatescript æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯éå |
| | | */ |
| | | public List<IvrLibaExtemplatescript> selectIvrLibaExtemplatescriptList(IvrLibaExtemplatescript ivrLibaExtemplatescript); |
| | | |
| | | /** |
| | | * æ°å¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaExtemplatescript æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaExtemplatescript(IvrLibaExtemplatescript ivrLibaExtemplatescript); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaExtemplatescript æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaExtemplatescript(IvrLibaExtemplatescript ivrLibaExtemplatescript); |
| | | |
| | | /** |
| | | * æ¹éå 餿©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param DetailIDs éè¦å é¤çæ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaExtemplatescriptByDetailIDs(String[] DetailIDs); |
| | | |
| | | /** |
| | | * å 餿©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¿¡æ¯ |
| | | * |
| | | * @param DetailID æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaExtemplatescriptByDetailID(String DetailID); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaScript; |
| | | |
| | | /** |
| | | * è¯æ¯åºServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IIvrLibaScriptService |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åº |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return è¯æ¯åº |
| | | */ |
| | | public IvrLibaScript selectIvrLibaScriptByQuestionid(String questionid); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return è¯æ¯åºéå |
| | | */ |
| | | public List<IvrLibaScript> selectIvrLibaScriptList(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScript(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScript(IvrLibaScript ivrLibaScript); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯åº |
| | | * |
| | | * @param questionids éè¦å é¤çè¯æ¯åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptByQuestionids(String[] questionids); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åºä¿¡æ¯ |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScriptByQuestionid(String questionid); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaScripttarget; |
| | | |
| | | /** |
| | | * è¯æ¯åºè¯æ¯ææ Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IIvrLibaScripttargetService |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºè¯æ¯ææ |
| | | * |
| | | * @param questionTargetID è¯æ¯åºè¯æ¯ææ ä¸»é® |
| | | * @return è¯æ¯åºè¯æ¯ææ |
| | | */ |
| | | public IvrLibaScripttarget selectIvrLibaScripttargetByQuestionTargetID(String questionTargetID); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºè¯æ¯ææ å表 |
| | | * |
| | | * @param ivrLibaScripttarget è¯æ¯åºè¯æ¯ææ |
| | | * @return è¯æ¯åºè¯æ¯ææ éå |
| | | */ |
| | | public List<IvrLibaScripttarget> selectIvrLibaScripttargetList(IvrLibaScripttarget ivrLibaScripttarget); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaScripttarget è¯æ¯åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaScripttarget(IvrLibaScripttarget ivrLibaScripttarget); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaScripttarget è¯æ¯åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaScripttarget(IvrLibaScripttarget ivrLibaScripttarget); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯åºè¯æ¯ææ |
| | | * |
| | | * @param questionTargetIDs éè¦å é¤çè¯æ¯åºè¯æ¯ææ 主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScripttargetByQuestionTargetIDs(String[] questionTargetIDs); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åºè¯æ¯ææ ä¿¡æ¯ |
| | | * |
| | | * @param questionTargetID è¯æ¯åºè¯æ¯ææ ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaScripttargetByQuestionTargetID(String questionTargetID); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaTarget; |
| | | |
| | | /** |
| | | * ææ åºServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IIvrLibaTargetService |
| | | { |
| | | /** |
| | | * æ¥è¯¢ææ åº |
| | | * |
| | | * @param targetID ææ åºä¸»é® |
| | | * @return ææ åº |
| | | */ |
| | | public IvrLibaTarget selectIvrLibaTargetByTargetID(String targetID); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ åºå表 |
| | | * |
| | | * @param ivrLibaTarget ææ åº |
| | | * @return ææ åºéå |
| | | */ |
| | | public List<IvrLibaTarget> selectIvrLibaTargetList(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | /** |
| | | * æ°å¢ææ åº |
| | | * |
| | | * @param ivrLibaTarget ææ åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTarget(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ åº |
| | | * |
| | | * @param ivrLibaTarget ææ åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTarget(IvrLibaTarget ivrLibaTarget); |
| | | |
| | | /** |
| | | * æ¹éå 餿æ åº |
| | | * |
| | | * @param targetIDs éè¦å é¤çææ åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetByTargetIDs(String[] targetIDs); |
| | | |
| | | /** |
| | | * å 餿æ åºä¿¡æ¯ |
| | | * |
| | | * @param targetID ææ åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTargetByTargetID(String targetID); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaTemplate; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IIvrLibaTemplateService |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param templateID è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | public IvrLibaTemplate selectIvrLibaTemplateByTemplateID(String templateID); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºå表 |
| | | * |
| | | * @param ivrLibaTemplate è¯æ¯æ¨¡æ¿åº |
| | | * @return è¯æ¯æ¨¡æ¿åºéå |
| | | */ |
| | | public List<IvrLibaTemplate> selectIvrLibaTemplateList(IvrLibaTemplate ivrLibaTemplate); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaTemplate è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTemplate(IvrLibaTemplate ivrLibaTemplate); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaTemplate è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTemplate(IvrLibaTemplate ivrLibaTemplate); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param templateIDs éè¦å é¤çè¯æ¯æ¨¡æ¿åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplateByTemplateIDs(String[] templateIDs); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºä¿¡æ¯ |
| | | * |
| | | * @param templateID è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplateByTemplateID(String templateID); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaTemplatescript; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºè¯æ¯Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IIvrLibaTemplatescriptService |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param templateQuestionID è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | public IvrLibaTemplatescript selectIvrLibaTemplatescriptByTemplateQuestionID(String templateQuestionID); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | * |
| | | * @param ivrLibaTemplatescript è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯éå |
| | | */ |
| | | public List<IvrLibaTemplatescript> selectIvrLibaTemplatescriptList(IvrLibaTemplatescript ivrLibaTemplatescript); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaTemplatescript è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTemplatescript(IvrLibaTemplatescript ivrLibaTemplatescript); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaTemplatescript è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTemplatescript(IvrLibaTemplatescript ivrLibaTemplatescript); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param templateQuestionIDs éè¦å é¤çè¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatescriptByTemplateQuestionIDs(String[] templateQuestionIDs); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ä¿¡æ¯ |
| | | * |
| | | * @param templateQuestionID è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatescriptByTemplateQuestionID(String templateQuestionID); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibaTemplatetarget; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºè¯æ¯ææ Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | public interface IIvrLibaTemplatetargetService |
| | | { |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param templateTargetID è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ä¸»é® |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | */ |
| | | public IvrLibaTemplatetarget selectIvrLibaTemplatetargetByTemplateTargetID(String templateTargetID); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ å表 |
| | | * |
| | | * @param ivrLibaTemplatetarget è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ææ éå |
| | | */ |
| | | public List<IvrLibaTemplatetarget> selectIvrLibaTemplatetargetList(IvrLibaTemplatetarget ivrLibaTemplatetarget); |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaTemplatetarget è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibaTemplatetarget(IvrLibaTemplatetarget ivrLibaTemplatetarget); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaTemplatetarget è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibaTemplatetarget(IvrLibaTemplatetarget ivrLibaTemplatetarget); |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param templateTargetIDs éè¦å é¤çè¯æ¯æ¨¡æ¿åºè¯æ¯ææ 主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatetargetByTemplateTargetIDs(String[] templateTargetIDs); |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ä¿¡æ¯ |
| | | * |
| | | * @param templateTargetID è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibaTemplatetargetByTemplateTargetID(String templateTargetID); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.smartor.mapper.IvrLibaExtemplateMapper; |
| | | import com.smartor.domain.IvrLibaExtemplate; |
| | | import com.smartor.service.IIvrLibaExtemplateService; |
| | | |
| | | /** |
| | | * æ©å±è¯æ¯æ¨¡æ¿åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @Service |
| | | public class IvrLibaExtemplateServiceImpl implements IIvrLibaExtemplateService |
| | | { |
| | | @Autowired |
| | | private IvrLibaExtemplateMapper ivrLibaExtemplateMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param subModuleID æ©å±è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @Override |
| | | public IvrLibaExtemplate selectIvrLibaExtemplateBySubModuleID(String subModuleID) |
| | | { |
| | | return ivrLibaExtemplateMapper.selectIvrLibaExtemplateBySubModuleID(subModuleID); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºå表 |
| | | * |
| | | * @param ivrLibaExtemplate æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibaExtemplate> selectIvrLibaExtemplateList(IvrLibaExtemplate ivrLibaExtemplate) |
| | | { |
| | | return ivrLibaExtemplateMapper.selectIvrLibaExtemplateList(ivrLibaExtemplate); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaExtemplate æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaExtemplate(IvrLibaExtemplate ivrLibaExtemplate) |
| | | { |
| | | ivrLibaExtemplate.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaExtemplateMapper.insertIvrLibaExtemplate(ivrLibaExtemplate); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaExtemplate æ©å±è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaExtemplate(IvrLibaExtemplate ivrLibaExtemplate) |
| | | { |
| | | ivrLibaExtemplate.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaExtemplateMapper.updateIvrLibaExtemplate(ivrLibaExtemplate); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿©å±è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param subModuleIDs éè¦å é¤çæ©å±è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaExtemplateBySubModuleIDs(String[] subModuleIDs) |
| | | { |
| | | return ivrLibaExtemplateMapper.deleteIvrLibaExtemplateBySubModuleIDs(subModuleIDs); |
| | | } |
| | | |
| | | /** |
| | | * å 餿©å±è¯æ¯æ¨¡æ¿åºä¿¡æ¯ |
| | | * |
| | | * @param subModuleID æ©å±è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaExtemplateBySubModuleID(String subModuleID) |
| | | { |
| | | return ivrLibaExtemplateMapper.deleteIvrLibaExtemplateBySubModuleID(subModuleID); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.smartor.mapper.IvrLibaExtemplatescriptMapper; |
| | | import com.smartor.domain.IvrLibaExtemplatescript; |
| | | import com.smartor.service.IIvrLibaExtemplatescriptService; |
| | | |
| | | /** |
| | | * æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @Service |
| | | public class IvrLibaExtemplatescriptServiceImpl implements IIvrLibaExtemplatescriptService |
| | | { |
| | | @Autowired |
| | | private IvrLibaExtemplatescriptMapper ivrLibaExtemplatescriptMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param DetailID æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @Override |
| | | public IvrLibaExtemplatescript selectIvrLibaExtemplatescriptByDetailID(String DetailID) |
| | | { |
| | | return ivrLibaExtemplatescriptMapper.selectIvrLibaExtemplatescriptByDetailID(DetailID); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | * |
| | | * @param ivrLibaExtemplatescript æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @Override |
| | | public List<IvrLibaExtemplatescript> selectIvrLibaExtemplatescriptList(IvrLibaExtemplatescript ivrLibaExtemplatescript) |
| | | { |
| | | return ivrLibaExtemplatescriptMapper.selectIvrLibaExtemplatescriptList(ivrLibaExtemplatescript); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaExtemplatescript æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaExtemplatescript(IvrLibaExtemplatescript ivrLibaExtemplatescript) |
| | | { |
| | | ivrLibaExtemplatescript.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaExtemplatescriptMapper.insertIvrLibaExtemplatescript(ivrLibaExtemplatescript); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaExtemplatescript æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaExtemplatescript(IvrLibaExtemplatescript ivrLibaExtemplatescript) |
| | | { |
| | | ivrLibaExtemplatescript.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaExtemplatescriptMapper.updateIvrLibaExtemplatescript(ivrLibaExtemplatescript); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param DetailIDs éè¦å é¤çæ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaExtemplatescriptByDetailIDs(String[] DetailIDs) |
| | | { |
| | | return ivrLibaExtemplatescriptMapper.deleteIvrLibaExtemplatescriptByDetailIDs(DetailIDs); |
| | | } |
| | | |
| | | /** |
| | | * å 餿©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¿¡æ¯ |
| | | * |
| | | * @param DetailID æ©å±è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaExtemplatescriptByDetailID(String DetailID) |
| | | { |
| | | return ivrLibaExtemplatescriptMapper.deleteIvrLibaExtemplatescriptByDetailID(DetailID); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | 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; |
| | | |
| | | /** |
| | | * è¯æ¯åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @Service |
| | | public class IvrLibaScriptServiceImpl implements IIvrLibaScriptService |
| | | { |
| | | @Autowired |
| | | private IvrLibaScriptMapper ivrLibaScriptMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åº |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return è¯æ¯åº |
| | | */ |
| | | @Override |
| | | public IvrLibaScript selectIvrLibaScriptByQuestionid(String questionid) |
| | | { |
| | | return ivrLibaScriptMapper.selectIvrLibaScriptByQuestionid(questionid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return è¯æ¯åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibaScript> selectIvrLibaScriptList(IvrLibaScript ivrLibaScript) |
| | | { |
| | | return ivrLibaScriptMapper.selectIvrLibaScriptList(ivrLibaScript); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaScript(IvrLibaScript ivrLibaScript) |
| | | { |
| | | ivrLibaScript.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptMapper.insertIvrLibaScript(ivrLibaScript); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯åº |
| | | * |
| | | * @param ivrLibaScript è¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaScript(IvrLibaScript ivrLibaScript) |
| | | { |
| | | ivrLibaScript.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaScriptMapper.updateIvrLibaScript(ivrLibaScript); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯åº |
| | | * |
| | | * @param questionids éè¦å é¤çè¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptByQuestionids(String[] questionids) |
| | | { |
| | | return ivrLibaScriptMapper.deleteIvrLibaScriptByQuestionids(questionids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åºä¿¡æ¯ |
| | | * |
| | | * @param questionid è¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScriptByQuestionid(String questionid) |
| | | { |
| | | return ivrLibaScriptMapper.deleteIvrLibaScriptByQuestionid(questionid); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.smartor.mapper.IvrLibaScripttargetMapper; |
| | | import com.smartor.domain.IvrLibaScripttarget; |
| | | import com.smartor.service.IIvrLibaScripttargetService; |
| | | |
| | | /** |
| | | * è¯æ¯åºè¯æ¯ææ Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @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(String[] questionTargetIDs) |
| | | { |
| | | return ivrLibaScripttargetMapper.deleteIvrLibaScripttargetByQuestionTargetIDs(questionTargetIDs); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯åºè¯æ¯ææ ä¿¡æ¯ |
| | | * |
| | | * @param questionTargetID è¯æ¯åºè¯æ¯ææ ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaScripttargetByQuestionTargetID(String questionTargetID) |
| | | { |
| | | return ivrLibaScripttargetMapper.deleteIvrLibaScripttargetByQuestionTargetID(questionTargetID); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.smartor.mapper.IvrLibaTargetMapper; |
| | | import com.smartor.domain.IvrLibaTarget; |
| | | import com.smartor.service.IIvrLibaTargetService; |
| | | |
| | | /** |
| | | * ææ åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @Service |
| | | public class IvrLibaTargetServiceImpl implements IIvrLibaTargetService |
| | | { |
| | | @Autowired |
| | | private IvrLibaTargetMapper ivrLibaTargetMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ åº |
| | | * |
| | | * @param targetID ææ åºä¸»é® |
| | | * @return ææ åº |
| | | */ |
| | | @Override |
| | | public IvrLibaTarget selectIvrLibaTargetByTargetID(String targetID) |
| | | { |
| | | return ivrLibaTargetMapper.selectIvrLibaTargetByTargetID(targetID); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ åºå表 |
| | | * |
| | | * @param ivrLibaTarget ææ åº |
| | | * @return ææ åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibaTarget> selectIvrLibaTargetList(IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | return ivrLibaTargetMapper.selectIvrLibaTargetList(ivrLibaTarget); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ææ åº |
| | | * |
| | | * @param ivrLibaTarget ææ åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaTarget(IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | ivrLibaTarget.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTargetMapper.insertIvrLibaTarget(ivrLibaTarget); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ææ åº |
| | | * |
| | | * @param ivrLibaTarget ææ åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaTarget(IvrLibaTarget ivrLibaTarget) |
| | | { |
| | | ivrLibaTarget.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTargetMapper.updateIvrLibaTarget(ivrLibaTarget); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿æ åº |
| | | * |
| | | * @param targetIDs éè¦å é¤çææ åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTargetByTargetIDs(String[] targetIDs) |
| | | { |
| | | return ivrLibaTargetMapper.deleteIvrLibaTargetByTargetIDs(targetIDs); |
| | | } |
| | | |
| | | /** |
| | | * å 餿æ åºä¿¡æ¯ |
| | | * |
| | | * @param targetID ææ åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTargetByTargetID(String targetID) |
| | | { |
| | | return ivrLibaTargetMapper.deleteIvrLibaTargetByTargetID(targetID); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.smartor.mapper.IvrLibaTemplateMapper; |
| | | import com.smartor.domain.IvrLibaTemplate; |
| | | import com.smartor.service.IIvrLibaTemplateService; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @Service |
| | | public class IvrLibaTemplateServiceImpl implements IIvrLibaTemplateService |
| | | { |
| | | @Autowired |
| | | private IvrLibaTemplateMapper ivrLibaTemplateMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param templateID è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @Override |
| | | public IvrLibaTemplate selectIvrLibaTemplateByTemplateID(String templateID) |
| | | { |
| | | return ivrLibaTemplateMapper.selectIvrLibaTemplateByTemplateID(templateID); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºå表 |
| | | * |
| | | * @param ivrLibaTemplate è¯æ¯æ¨¡æ¿åº |
| | | * @return è¯æ¯æ¨¡æ¿åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibaTemplate> selectIvrLibaTemplateList(IvrLibaTemplate ivrLibaTemplate) |
| | | { |
| | | return ivrLibaTemplateMapper.selectIvrLibaTemplateList(ivrLibaTemplate); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaTemplate è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaTemplate(IvrLibaTemplate ivrLibaTemplate) |
| | | { |
| | | ivrLibaTemplate.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTemplateMapper.insertIvrLibaTemplate(ivrLibaTemplate); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param ivrLibaTemplate è¯æ¯æ¨¡æ¿åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaTemplate(IvrLibaTemplate ivrLibaTemplate) |
| | | { |
| | | ivrLibaTemplate.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTemplateMapper.updateIvrLibaTemplate(ivrLibaTemplate); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯æ¨¡æ¿åº |
| | | * |
| | | * @param templateIDs éè¦å é¤çè¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTemplateByTemplateIDs(String[] templateIDs) |
| | | { |
| | | return ivrLibaTemplateMapper.deleteIvrLibaTemplateByTemplateIDs(templateIDs); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºä¿¡æ¯ |
| | | * |
| | | * @param templateID è¯æ¯æ¨¡æ¿åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTemplateByTemplateID(String templateID) |
| | | { |
| | | return ivrLibaTemplateMapper.deleteIvrLibaTemplateByTemplateID(templateID); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.smartor.mapper.IvrLibaTemplatescriptMapper; |
| | | import com.smartor.domain.IvrLibaTemplatescript; |
| | | import com.smartor.service.IIvrLibaTemplatescriptService; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºè¯æ¯Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @Service |
| | | public class IvrLibaTemplatescriptServiceImpl implements IIvrLibaTemplatescriptService |
| | | { |
| | | @Autowired |
| | | private IvrLibaTemplatescriptMapper ivrLibaTemplatescriptMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param templateQuestionID è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @Override |
| | | public IvrLibaTemplatescript selectIvrLibaTemplatescriptByTemplateQuestionID(String templateQuestionID) |
| | | { |
| | | return ivrLibaTemplatescriptMapper.selectIvrLibaTemplatescriptByTemplateQuestionID(templateQuestionID); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯å表 |
| | | * |
| | | * @param ivrLibaTemplatescript è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | */ |
| | | @Override |
| | | public List<IvrLibaTemplatescript> selectIvrLibaTemplatescriptList(IvrLibaTemplatescript ivrLibaTemplatescript) |
| | | { |
| | | return ivrLibaTemplatescriptMapper.selectIvrLibaTemplatescriptList(ivrLibaTemplatescript); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaTemplatescript è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaTemplatescript(IvrLibaTemplatescript ivrLibaTemplatescript) |
| | | { |
| | | ivrLibaTemplatescript.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTemplatescriptMapper.insertIvrLibaTemplatescript(ivrLibaTemplatescript); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param ivrLibaTemplatescript è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaTemplatescript(IvrLibaTemplatescript ivrLibaTemplatescript) |
| | | { |
| | | ivrLibaTemplatescript.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTemplatescriptMapper.updateIvrLibaTemplatescript(ivrLibaTemplatescript); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ |
| | | * |
| | | * @param templateQuestionIDs éè¦å é¤çè¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTemplatescriptByTemplateQuestionIDs(String[] templateQuestionIDs) |
| | | { |
| | | return ivrLibaTemplatescriptMapper.deleteIvrLibaTemplatescriptByTemplateQuestionIDs(templateQuestionIDs); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ä¿¡æ¯ |
| | | * |
| | | * @param templateQuestionID è¯æ¯æ¨¡æ¿åºè¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTemplatescriptByTemplateQuestionID(String templateQuestionID) |
| | | { |
| | | return ivrLibaTemplatescriptMapper.deleteIvrLibaTemplatescriptByTemplateQuestionID(templateQuestionID); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service.impl; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.common.utils.DateUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.smartor.mapper.IvrLibaTemplatetargetMapper; |
| | | import com.smartor.domain.IvrLibaTemplatetarget; |
| | | import com.smartor.service.IIvrLibaTemplatetargetService; |
| | | |
| | | /** |
| | | * è¯æ¯æ¨¡æ¿åºè¯æ¯ææ Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-22 |
| | | */ |
| | | @Service |
| | | public class IvrLibaTemplatetargetServiceImpl implements IIvrLibaTemplatetargetService |
| | | { |
| | | @Autowired |
| | | private IvrLibaTemplatetargetMapper ivrLibaTemplatetargetMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param templateTargetID è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ä¸»é® |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | */ |
| | | @Override |
| | | public IvrLibaTemplatetarget selectIvrLibaTemplatetargetByTemplateTargetID(String templateTargetID) |
| | | { |
| | | return ivrLibaTemplatetargetMapper.selectIvrLibaTemplatetargetByTemplateTargetID(templateTargetID); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ å表 |
| | | * |
| | | * @param ivrLibaTemplatetarget è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * @return è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | */ |
| | | @Override |
| | | public List<IvrLibaTemplatetarget> selectIvrLibaTemplatetargetList(IvrLibaTemplatetarget ivrLibaTemplatetarget) |
| | | { |
| | | return ivrLibaTemplatetargetMapper.selectIvrLibaTemplatetargetList(ivrLibaTemplatetarget); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaTemplatetarget è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibaTemplatetarget(IvrLibaTemplatetarget ivrLibaTemplatetarget) |
| | | { |
| | | ivrLibaTemplatetarget.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTemplatetargetMapper.insertIvrLibaTemplatetarget(ivrLibaTemplatetarget); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param ivrLibaTemplatetarget è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibaTemplatetarget(IvrLibaTemplatetarget ivrLibaTemplatetarget) |
| | | { |
| | | ivrLibaTemplatetarget.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibaTemplatetargetMapper.updateIvrLibaTemplatetarget(ivrLibaTemplatetarget); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ææ |
| | | * |
| | | * @param templateTargetIDs éè¦å é¤çè¯æ¯æ¨¡æ¿åºè¯æ¯ææ ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTemplatetargetByTemplateTargetIDs(String[] templateTargetIDs) |
| | | { |
| | | return ivrLibaTemplatetargetMapper.deleteIvrLibaTemplatetargetByTemplateTargetIDs(templateTargetIDs); |
| | | } |
| | | |
| | | /** |
| | | * å é¤è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ä¿¡æ¯ |
| | | * |
| | | * @param templateTargetID è¯æ¯æ¨¡æ¿åºè¯æ¯ææ ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibaTemplatetargetByTemplateTargetID(String templateTargetID) |
| | | { |
| | | return ivrLibaTemplatetargetMapper.deleteIvrLibaTemplatetargetByTemplateTargetID(templateTargetID); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?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.IvrLibaExtemplateMapper"> |
| | | |
| | | <resultMap type="IvrLibaExtemplate" id="IvrLibaExtemplateResult"> |
| | | <result property="subModuleID" column="subModuleID" /> |
| | | <result property="subModuleName" column="subModuleName" /> |
| | | <result property="language" column="language" /> |
| | | <result property="description" column="description" /> |
| | | <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> |
| | | |
| | | <sql id="selectIvrLibaExtemplateVo"> |
| | | select subModuleID, subModuleName, language, description, 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_extemplate |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaExtemplateList" parameterType="IvrLibaExtemplate" resultMap="IvrLibaExtemplateResult"> |
| | | <include refid="selectIvrLibaExtemplateVo"/> |
| | | <where> |
| | | <if test="subModuleName != null and subModuleName != ''"> and subModuleName like concat('%', #{subModuleName}, '%')</if> |
| | | <if test="language != null and language != ''"> and language = #{language}</if> |
| | | <if test="description != null and description != ''"> and description = #{description}</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 = #{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> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaExtemplateBySubModuleID" parameterType="String" resultMap="IvrLibaExtemplateResult"> |
| | | <include refid="selectIvrLibaExtemplateVo"/> |
| | | where subModuleID = #{subModuleID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaExtemplate" parameterType="IvrLibaExtemplate"> |
| | | insert into ivr_liba_extemplate |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="subModuleID != null">subModuleID,</if> |
| | | <if test="subModuleName != null and subModuleName != ''">subModuleName,</if> |
| | | <if test="language != null and language != ''">language,</if> |
| | | <if test="description != null">description,</if> |
| | | <if test="version != null">version,</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="modifyTime != null">modifyTime,</if> |
| | | <if test="GroupID != null">GroupID,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="subModuleID != null">#{subModuleID},</if> |
| | | <if test="subModuleName != null and subModuleName != ''">#{subModuleName},</if> |
| | | <if test="language != null and language != ''">#{language},</if> |
| | | <if test="description != null">#{description},</if> |
| | | <if test="version != null">#{version},</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="modifyTime != null">#{modifyTime},</if> |
| | | <if test="GroupID != null">#{GroupID},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaExtemplate" parameterType="IvrLibaExtemplate"> |
| | | update ivr_liba_extemplate |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="subModuleName != null and subModuleName != ''">subModuleName = #{subModuleName},</if> |
| | | <if test="language != null and language != ''">language = #{language},</if> |
| | | <if test="description != null">description = #{description},</if> |
| | | <if test="version != null">version = #{version},</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="modifyTime != null">modifyTime = #{modifyTime},</if> |
| | | <if test="GroupID != null">GroupID = #{GroupID},</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> |
| | | </trim> |
| | | where subModuleID = #{subModuleID} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaExtemplateBySubModuleID" parameterType="String"> |
| | | delete from ivr_liba_extemplate where subModuleID = #{subModuleID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaExtemplateBySubModuleIDs" parameterType="String"> |
| | | delete from ivr_liba_extemplate where subModuleID in |
| | | <foreach item="subModuleID" collection="array" open="(" separator="," close=")"> |
| | | #{subModuleID} |
| | | </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.IvrLibaExtemplatescriptMapper"> |
| | | |
| | | <resultMap type="IvrLibaExtemplatescript" id="IvrLibaExtemplatescriptResult"> |
| | | <result property="DetailID" column="DetailID" /> |
| | | <result property="subModuleID" column="subModuleID" /> |
| | | <result property="switchID" column="switchID" /> |
| | | <result property="switchText" column="switchText" /> |
| | | <result property="switchWav" column="switchWav" /> |
| | | <result property="selfRegex" column="selfRegex" /> |
| | | <result property="isEnable" column="isEnable" /> |
| | | <result property="isDel" column="isDel" /> |
| | | <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="selectIvrLibaExtemplatescriptVo"> |
| | | select DetailID, subModuleID, switchID, switchText, switchWav, selfRegex, isEnable, isDel, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid from ivr_liba_extemplatescript |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaExtemplatescriptList" parameterType="IvrLibaExtemplatescript" resultMap="IvrLibaExtemplatescriptResult"> |
| | | <include refid="selectIvrLibaExtemplatescriptVo"/> |
| | | <where> |
| | | <if test="subModuleID != null and subModuleID != ''"> and subModuleID = #{subModuleID}</if> |
| | | <if test="switchID != null "> and switchID = #{switchID}</if> |
| | | <if test="switchText != null and switchText != ''"> and switchText = #{switchText}</if> |
| | | <if test="switchWav != null and switchWav != ''"> and switchWav = #{switchWav}</if> |
| | | <if test="selfRegex != null and selfRegex != ''"> and selfRegex = #{selfRegex}</if> |
| | | <if test="isEnable != null "> and isEnable = #{isEnable}</if> |
| | | <if test="isDel != null "> and isDel = #{isDel}</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="selectIvrLibaExtemplatescriptByDetailID" parameterType="String" resultMap="IvrLibaExtemplatescriptResult"> |
| | | <include refid="selectIvrLibaExtemplatescriptVo"/> |
| | | where DetailID = #{DetailID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaExtemplatescript" parameterType="IvrLibaExtemplatescript"> |
| | | insert into ivr_liba_extemplatescript |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="DetailID != null">DetailID,</if> |
| | | <if test="subModuleID != null and subModuleID != ''">subModuleID,</if> |
| | | <if test="switchID != null">switchID,</if> |
| | | <if test="switchText != null">switchText,</if> |
| | | <if test="switchWav != null">switchWav,</if> |
| | | <if test="selfRegex != null">selfRegex,</if> |
| | | <if test="isEnable != null">isEnable,</if> |
| | | <if test="isDel != null">isDel,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="DetailID != null">#{DetailID},</if> |
| | | <if test="subModuleID != null and subModuleID != ''">#{subModuleID},</if> |
| | | <if test="switchID != null">#{switchID},</if> |
| | | <if test="switchText != null">#{switchText},</if> |
| | | <if test="switchWav != null">#{switchWav},</if> |
| | | <if test="selfRegex != null">#{selfRegex},</if> |
| | | <if test="isEnable != null">#{isEnable},</if> |
| | | <if test="isDel != null">#{isDel},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaExtemplatescript" parameterType="IvrLibaExtemplatescript"> |
| | | update ivr_liba_extemplatescript |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="subModuleID != null and subModuleID != ''">subModuleID = #{subModuleID},</if> |
| | | <if test="switchID != null">switchID = #{switchID},</if> |
| | | <if test="switchText != null">switchText = #{switchText},</if> |
| | | <if test="switchWav != null">switchWav = #{switchWav},</if> |
| | | <if test="selfRegex != null">selfRegex = #{selfRegex},</if> |
| | | <if test="isEnable != null">isEnable = #{isEnable},</if> |
| | | <if test="isDel != null">isDel = #{isDel},</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> |
| | | </trim> |
| | | where DetailID = #{DetailID} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaExtemplatescriptByDetailID" parameterType="String"> |
| | | delete from ivr_liba_extemplatescript where DetailID = #{DetailID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaExtemplatescriptByDetailIDs" parameterType="String"> |
| | | delete from ivr_liba_extemplatescript where DetailID in |
| | | <foreach item="DetailID" collection="array" open="(" separator="," close=")"> |
| | | #{DetailID} |
| | | </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.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="description" column="description" /> |
| | | <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> |
| | | |
| | | <sql id="selectIvrLibaScriptVo"> |
| | | select questionid, questionpoint, questiontext, questionvoice, nomatchtext, nomatchvoice, sliencetext, sliencevoice, submoduletext, submodulevoice, noclearlytext, noclearlyvoice, questiontype, categoryname, targetoptions, language, description, 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 |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaScriptList" parameterType="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="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> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaScriptByQuestionid" parameterType="String" resultMap="IvrLibaScriptResult"> |
| | | <include refid="selectIvrLibaScriptVo"/> |
| | | where questionid = #{questionid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaScript" parameterType="IvrLibaScript"> |
| | | insert into ivr_liba_script |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="questionid != null">questionid,</if> |
| | | <if test="questionpoint != null">questionpoint,</if> |
| | | <if test="questiontext != null">questiontext,</if> |
| | | <if test="questionvoice != null">questionvoice,</if> |
| | | <if test="nomatchtext != null">nomatchtext,</if> |
| | | <if test="nomatchvoice != null">nomatchvoice,</if> |
| | | <if test="sliencetext != null">sliencetext,</if> |
| | | <if test="sliencevoice != null">sliencevoice,</if> |
| | | <if test="submoduletext != null">submoduletext,</if> |
| | | <if test="submodulevoice != null">submodulevoice,</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="targetoptions != null">targetoptions,</if> |
| | | <if test="language != null">language,</if> |
| | | <if test="description != null">description,</if> |
| | | <if test="version != null">version,</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="modifytime != null">modifytime,</if> |
| | | <if test="groupid != null">groupid,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="questionid != null">#{questionid},</if> |
| | | <if test="questionpoint != null">#{questionpoint},</if> |
| | | <if test="questiontext != null">#{questiontext},</if> |
| | | <if test="questionvoice != null">#{questionvoice},</if> |
| | | <if test="nomatchtext != null">#{nomatchtext},</if> |
| | | <if test="nomatchvoice != null">#{nomatchvoice},</if> |
| | | <if test="sliencetext != null">#{sliencetext},</if> |
| | | <if test="sliencevoice != null">#{sliencevoice},</if> |
| | | <if test="submoduletext != null">#{submoduletext},</if> |
| | | <if test="submodulevoice != null">#{submodulevoice},</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="targetoptions != null">#{targetoptions},</if> |
| | | <if test="language != null">#{language},</if> |
| | | <if test="description != null">#{description},</if> |
| | | <if test="version != null">#{version},</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="modifytime != null">#{modifytime},</if> |
| | | <if test="groupid != null">#{groupid},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaScript" parameterType="IvrLibaScript"> |
| | | update ivr_liba_script |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="questionpoint != null">questionpoint = #{questionpoint},</if> |
| | | <if test="questiontext != null">questiontext = #{questiontext},</if> |
| | | <if test="questionvoice != null">questionvoice = #{questionvoice},</if> |
| | | <if test="nomatchtext != null">nomatchtext = #{nomatchtext},</if> |
| | | <if test="nomatchvoice != null">nomatchvoice = #{nomatchvoice},</if> |
| | | <if test="sliencetext != null">sliencetext = #{sliencetext},</if> |
| | | <if test="sliencevoice != null">sliencevoice = #{sliencevoice},</if> |
| | | <if test="submoduletext != null">submoduletext = #{submoduletext},</if> |
| | | <if test="submodulevoice != null">submodulevoice = #{submodulevoice},</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="targetoptions != null">targetoptions = #{targetoptions},</if> |
| | | <if test="language != null">language = #{language},</if> |
| | | <if test="description != null">description = #{description},</if> |
| | | <if test="version != null">version = #{version},</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="modifytime != null">modifytime = #{modifytime},</if> |
| | | <if test="groupid != null">groupid = #{groupid},</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> |
| | | </trim> |
| | | where questionid = #{questionid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaScriptByQuestionid" parameterType="String"> |
| | | delete from ivr_liba_script where questionid = #{questionid} |
| | | </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.IvrLibaScripttargetMapper"> |
| | | |
| | | <resultMap type="IvrLibaScripttarget" id="IvrLibaScripttargetResult"> |
| | | <result property="questionTargetID" column="questionTargetID" /> |
| | | <result property="questionID" column="questionID" /> |
| | | <result property="targetID" column="targetID" /> |
| | | <result property="targetType" column="targetType" /> |
| | | <result property="categoryName" column="categoryName" /> |
| | | <result property="targetValue" column="targetValue" /> |
| | | <result property="basicRegex" column="basicRegex" /> |
| | | <result property="selfRegex" column="selfRegex" /> |
| | | <result property="regexUsedType" column="regexUsedType" /> |
| | | <result property="sort" column="sort" /> |
| | | <result property="version" column="version" /> |
| | | <result property="isEnable" column="isEnable" /> |
| | | <result property="isDel" column="isDel" /> |
| | | <result property="tipsJson" column="tipsJson" /> |
| | | <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="selectIvrLibaScripttargetVo"> |
| | | select questionTargetID, questionID, targetID, targetType, categoryName, targetValue, basicRegex, selfRegex, regexUsedType, sort, version, isEnable, isDel, tipsJson, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid from ivr_liba_scripttarget |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaScripttargetList" parameterType="IvrLibaScripttarget" resultMap="IvrLibaScripttargetResult"> |
| | | <include refid="selectIvrLibaScripttargetVo"/> |
| | | <where> |
| | | <if test="questionID != null and questionID != ''"> and questionID = #{questionID}</if> |
| | | <if test="targetID != null and targetID != ''"> 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> |
| | | <if test="targetValue != null and targetValue != ''"> and targetValue = #{targetValue}</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="sort != null "> and sort = #{sort}</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="tipsJson != null and tipsJson != ''"> and tipsJson = #{tipsJson}</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="selectIvrLibaScripttargetByQuestionTargetID" parameterType="String" resultMap="IvrLibaScripttargetResult"> |
| | | <include refid="selectIvrLibaScripttargetVo"/> |
| | | where questionTargetID = #{questionTargetID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaScripttarget" parameterType="IvrLibaScripttarget"> |
| | | insert into ivr_liba_scripttarget |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="questionTargetID != null">questionTargetID,</if> |
| | | <if test="questionID != null and questionID != ''">questionID,</if> |
| | | <if test="targetID != null">targetID,</if> |
| | | <if test="targetType != null">targetType,</if> |
| | | <if test="categoryName != null">categoryName,</if> |
| | | <if test="targetValue != null">targetValue,</if> |
| | | <if test="basicRegex != null">basicRegex,</if> |
| | | <if test="selfRegex != null">selfRegex,</if> |
| | | <if test="regexUsedType != null">regexUsedType,</if> |
| | | <if test="sort != null">sort,</if> |
| | | <if test="version != null">version,</if> |
| | | <if test="isEnable != null">isEnable,</if> |
| | | <if test="isDel != null">isDel,</if> |
| | | <if test="tipsJson != null">tipsJson,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="questionTargetID != null">#{questionTargetID},</if> |
| | | <if test="questionID != null and questionID != ''">#{questionID},</if> |
| | | <if test="targetID != null">#{targetID},</if> |
| | | <if test="targetType != null">#{targetType},</if> |
| | | <if test="categoryName != null">#{categoryName},</if> |
| | | <if test="targetValue != null">#{targetValue},</if> |
| | | <if test="basicRegex != null">#{basicRegex},</if> |
| | | <if test="selfRegex != null">#{selfRegex},</if> |
| | | <if test="regexUsedType != null">#{regexUsedType},</if> |
| | | <if test="sort != null">#{sort},</if> |
| | | <if test="version != null">#{version},</if> |
| | | <if test="isEnable != null">#{isEnable},</if> |
| | | <if test="isDel != null">#{isDel},</if> |
| | | <if test="tipsJson != null">#{tipsJson},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaScripttarget" parameterType="IvrLibaScripttarget"> |
| | | update ivr_liba_scripttarget |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="questionID != null and questionID != ''">questionID = #{questionID},</if> |
| | | <if test="targetID != null">targetID = #{targetID},</if> |
| | | <if test="targetType != null">targetType = #{targetType},</if> |
| | | <if test="categoryName != null">categoryName = #{categoryName},</if> |
| | | <if test="targetValue != null">targetValue = #{targetValue},</if> |
| | | <if test="basicRegex != null">basicRegex = #{basicRegex},</if> |
| | | <if test="selfRegex != null">selfRegex = #{selfRegex},</if> |
| | | <if test="regexUsedType != null">regexUsedType = #{regexUsedType},</if> |
| | | <if test="sort != null">sort = #{sort},</if> |
| | | <if test="version != null">version = #{version},</if> |
| | | <if test="isEnable != null">isEnable = #{isEnable},</if> |
| | | <if test="isDel != null">isDel = #{isDel},</if> |
| | | <if test="tipsJson != null">tipsJson = #{tipsJson},</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> |
| | | </trim> |
| | | where questionTargetID = #{questionTargetID} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaScripttargetByQuestionTargetID" parameterType="String"> |
| | | delete from ivr_liba_scripttarget where questionTargetID = #{questionTargetID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaScripttargetByQuestionTargetIDs" parameterType="String"> |
| | | delete from ivr_liba_scripttarget where questionTargetID in |
| | | <foreach item="questionTargetID" collection="array" open="(" separator="," close=")"> |
| | | #{questionTargetID} |
| | | </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.IvrLibaTargetMapper"> |
| | | |
| | | <resultMap type="IvrLibaTarget" id="IvrLibaTargetResult"> |
| | | <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="description" column="description" /> |
| | | <result property="language" column="language" /> |
| | | <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="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" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibaTargetVo"> |
| | | select targetID, targetType, categoryName, targetValue, targetRegex, description, language, version, isEnable, isDel, addUserID, addTime, modifyUserID, modifyTime, groupID, isAbnormal, WarnUp, WarnDown, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid from ivr_liba_target |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTargetList" parameterType="IvrLibaTarget" resultMap="IvrLibaTargetResult"> |
| | | <include refid="selectIvrLibaTargetVo"/> |
| | | <where> |
| | | <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="description != null and description != ''"> and description = #{description}</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="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="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> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaTargetByTargetID" parameterType="String" resultMap="IvrLibaTargetResult"> |
| | | <include refid="selectIvrLibaTargetVo"/> |
| | | where targetID = #{targetID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTarget" parameterType="IvrLibaTarget"> |
| | | insert into ivr_liba_target |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="targetID != null">targetID,</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="description != null">description,</if> |
| | | <if test="language != null and language != ''">language,</if> |
| | | <if test="version != null">version,</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="modifyTime != null">modifyTime,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="targetID != null">#{targetID},</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="description != null">#{description},</if> |
| | | <if test="language != null and language != ''">#{language},</if> |
| | | <if test="version != null">#{version},</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="modifyTime != null">#{modifyTime},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTarget" parameterType="IvrLibaTarget"> |
| | | update ivr_liba_target |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <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="description != null">description = #{description},</if> |
| | | <if test="language != null and language != ''">language = #{language},</if> |
| | | <if test="version != null">version = #{version},</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="modifyTime != null">modifyTime = #{modifyTime},</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> |
| | | </trim> |
| | | where targetID = #{targetID} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTargetByTargetID" parameterType="String"> |
| | | delete from ivr_liba_target where targetID = #{targetID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTargetByTargetIDs" parameterType="String"> |
| | | delete from ivr_liba_target where targetID in |
| | | <foreach item="targetID" collection="array" open="(" separator="," close=")"> |
| | | #{targetID} |
| | | </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.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="description" column="description" /> |
| | | <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> |
| | | |
| | | <sql id="selectIvrLibaTemplateVo"> |
| | | select templateID, templateName, silencetime, slienceRepeatTimes, nomatchRepeatTimes, firstQuestionNum, submodule, language, description, 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 |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTemplateList" parameterType="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="description != null and description != ''"> and description = #{description}</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> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaTemplateByTemplateID" parameterType="String" resultMap="IvrLibaTemplateResult"> |
| | | <include refid="selectIvrLibaTemplateVo"/> |
| | | where templateID = #{templateID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTemplate" parameterType="IvrLibaTemplate"> |
| | | insert into ivr_liba_template |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="templateID != null">templateID,</if> |
| | | <if test="templateName != null and templateName != ''">templateName,</if> |
| | | <if test="silencetime != null">silencetime,</if> |
| | | <if test="slienceRepeatTimes != null">slienceRepeatTimes,</if> |
| | | <if test="nomatchRepeatTimes != null">nomatchRepeatTimes,</if> |
| | | <if test="firstQuestionNum != null">firstQuestionNum,</if> |
| | | <if test="submodule != null">submodule,</if> |
| | | <if test="language != null and language != ''">language,</if> |
| | | <if test="description != null">description,</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="modifyTime != null">modifyTime,</if> |
| | | <if test="groupID != null">groupID,</if> |
| | | <if test="labelInfo != null">labelInfo,</if> |
| | | <if test="submoduleID != null">submoduleID,</if> |
| | | <if test="playType != null">playType,</if> |
| | | <if test="icd10code != null">icd10code,</if> |
| | | <if test="icd10codename != null">icd10codename,</if> |
| | | <if test="atuoTaskDayOffset != null">atuoTaskDayOffset,</if> |
| | | <if test="DeptIds != null">DeptIds,</if> |
| | | <if test="DeptNames != null">DeptNames,</if> |
| | | <if test="fKsdm != null">F_KSDM,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="templateID != null">#{templateID},</if> |
| | | <if test="templateName != null and templateName != ''">#{templateName},</if> |
| | | <if test="silencetime != null">#{silencetime},</if> |
| | | <if test="slienceRepeatTimes != null">#{slienceRepeatTimes},</if> |
| | | <if test="nomatchRepeatTimes != null">#{nomatchRepeatTimes},</if> |
| | | <if test="firstQuestionNum != null">#{firstQuestionNum},</if> |
| | | <if test="submodule != null">#{submodule},</if> |
| | | <if test="language != null and language != ''">#{language},</if> |
| | | <if test="description != null">#{description},</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="modifyTime != null">#{modifyTime},</if> |
| | | <if test="groupID != null">#{groupID},</if> |
| | | <if test="labelInfo != null">#{labelInfo},</if> |
| | | <if test="submoduleID != null">#{submoduleID},</if> |
| | | <if test="playType != null">#{playType},</if> |
| | | <if test="icd10code != null">#{icd10code},</if> |
| | | <if test="icd10codename != null">#{icd10codename},</if> |
| | | <if test="atuoTaskDayOffset != null">#{atuoTaskDayOffset},</if> |
| | | <if test="DeptIds != null">#{DeptIds},</if> |
| | | <if test="DeptNames != null">#{DeptNames},</if> |
| | | <if test="fKsdm != null">#{fKsdm},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTemplate" parameterType="IvrLibaTemplate"> |
| | | update ivr_liba_template |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="templateName != null and templateName != ''">templateName = #{templateName},</if> |
| | | <if test="silencetime != null">silencetime = #{silencetime},</if> |
| | | <if test="slienceRepeatTimes != null">slienceRepeatTimes = #{slienceRepeatTimes},</if> |
| | | <if test="nomatchRepeatTimes != null">nomatchRepeatTimes = #{nomatchRepeatTimes},</if> |
| | | <if test="firstQuestionNum != null">firstQuestionNum = #{firstQuestionNum},</if> |
| | | <if test="submodule != null">submodule = #{submodule},</if> |
| | | <if test="language != null and language != ''">language = #{language},</if> |
| | | <if test="description != null">description = #{description},</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="modifyTime != null">modifyTime = #{modifyTime},</if> |
| | | <if test="groupID != null">groupID = #{groupID},</if> |
| | | <if test="labelInfo != null">labelInfo = #{labelInfo},</if> |
| | | <if test="submoduleID != null">submoduleID = #{submoduleID},</if> |
| | | <if test="playType != null">playType = #{playType},</if> |
| | | <if test="icd10code != null">icd10code = #{icd10code},</if> |
| | | <if test="icd10codename != null">icd10codename = #{icd10codename},</if> |
| | | <if test="atuoTaskDayOffset != null">atuoTaskDayOffset = #{atuoTaskDayOffset},</if> |
| | | <if test="DeptIds != null">DeptIds = #{DeptIds},</if> |
| | | <if test="DeptNames != null">DeptNames = #{DeptNames},</if> |
| | | <if test="fKsdm != null">F_KSDM = #{fKsdm},</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> |
| | | </trim> |
| | | where templateID = #{templateID} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTemplateByTemplateID" parameterType="String"> |
| | | delete from ivr_liba_template where templateID = #{templateID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTemplateByTemplateIDs" parameterType="String"> |
| | | delete from ivr_liba_template where templateID in |
| | | <foreach item="templateID" collection="array" open="(" separator="," close=")"> |
| | | #{templateID} |
| | | </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.IvrLibaTemplatescriptMapper"> |
| | | |
| | | <resultMap type="IvrLibaTemplatescript" id="IvrLibaTemplatescriptResult"> |
| | | <result property="templateQuestionID" column="templateQuestionID" /> |
| | | <result property="templateQuestionNum" column="templateQuestionNum" /> |
| | | <result property="templateID" column="templateID" /> |
| | | <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="categoryName" column="categoryName" /> |
| | | <result property="targetOptions" column="targetOptions" /> |
| | | <result property="language" column="language" /> |
| | | <result property="playWavOnly" column="playWavOnly" /> |
| | | <result property="isEnable" column="isEnable" /> |
| | | <result property="isDel" column="isDel" /> |
| | | <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="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 |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTemplatescriptList" parameterType="IvrLibaTemplatescript" resultMap="IvrLibaTemplatescriptResult"> |
| | | <include refid="selectIvrLibaTemplatescriptVo"/> |
| | | <where> |
| | | <if test="templateQuestionNum != null "> and templateQuestionNum = #{templateQuestionNum}</if> |
| | | <if test="templateID != null and templateID != ''"> and templateID = #{templateID}</if> |
| | | <if test="questionID != null and questionID != ''"> and questionID = #{questionID}</if> |
| | | <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="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="playWavOnly != null "> and playWavOnly = #{playWavOnly}</if> |
| | | <if test="isEnable != null "> and isEnable = #{isEnable}</if> |
| | | <if test="isDel != null "> and isDel = #{isDel}</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="selectIvrLibaTemplatescriptByTemplateQuestionID" parameterType="String" resultMap="IvrLibaTemplatescriptResult"> |
| | | <include refid="selectIvrLibaTemplatescriptVo"/> |
| | | where templateQuestionID = #{templateQuestionID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTemplatescript" parameterType="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="questionID != null and questionID != ''">questionID,</if> |
| | | <if test="questionPoint != null and questionPoint != ''">questionPoint,</if> |
| | | <if test="questionText != null">questionText,</if> |
| | | <if test="questionVoice != null">questionVoice,</if> |
| | | <if test="noMatchText != null">noMatchText,</if> |
| | | <if test="noMatchVoice != null">noMatchVoice,</if> |
| | | <if test="slienceText != null">slienceText,</if> |
| | | <if test="slienceVoice != null">slienceVoice,</if> |
| | | <if test="submoduleText != null">submoduleText,</if> |
| | | <if test="submoduleVoice != null">submoduleVoice,</if> |
| | | <if test="noClearlyText != null">noClearlyText,</if> |
| | | <if test="noClearlyVoice != null">noClearlyVoice,</if> |
| | | <if test="categoryName != null">categoryName,</if> |
| | | <if test="targetOptions != null">targetOptions,</if> |
| | | <if test="language != null and language != ''">language,</if> |
| | | <if test="playWavOnly != null">playWavOnly,</if> |
| | | <if test="isEnable != null">isEnable,</if> |
| | | <if test="isDel != null">isDel,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="templateQuestionID != null">#{templateQuestionID},</if> |
| | | <if test="templateQuestionNum != null">#{templateQuestionNum},</if> |
| | | <if test="templateID != null and templateID != ''">#{templateID},</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="questionVoice != null">#{questionVoice},</if> |
| | | <if test="noMatchText != null">#{noMatchText},</if> |
| | | <if test="noMatchVoice != null">#{noMatchVoice},</if> |
| | | <if test="slienceText != null">#{slienceText},</if> |
| | | <if test="slienceVoice != null">#{slienceVoice},</if> |
| | | <if test="submoduleText != null">#{submoduleText},</if> |
| | | <if test="submoduleVoice != null">#{submoduleVoice},</if> |
| | | <if test="noClearlyText != null">#{noClearlyText},</if> |
| | | <if test="noClearlyVoice != null">#{noClearlyVoice},</if> |
| | | <if test="categoryName != null">#{categoryName},</if> |
| | | <if test="targetOptions != null">#{targetOptions},</if> |
| | | <if test="language != null and language != ''">#{language},</if> |
| | | <if test="playWavOnly != null">#{playWavOnly},</if> |
| | | <if test="isEnable != null">#{isEnable},</if> |
| | | <if test="isDel != null">#{isDel},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTemplatescript" parameterType="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="questionID != null and questionID != ''">questionID = #{questionID},</if> |
| | | <if test="questionPoint != null and questionPoint != ''">questionPoint = #{questionPoint},</if> |
| | | <if test="questionText != null">questionText = #{questionText},</if> |
| | | <if test="questionVoice != null">questionVoice = #{questionVoice},</if> |
| | | <if test="noMatchText != null">noMatchText = #{noMatchText},</if> |
| | | <if test="noMatchVoice != null">noMatchVoice = #{noMatchVoice},</if> |
| | | <if test="slienceText != null">slienceText = #{slienceText},</if> |
| | | <if test="slienceVoice != null">slienceVoice = #{slienceVoice},</if> |
| | | <if test="submoduleText != null">submoduleText = #{submoduleText},</if> |
| | | <if test="submoduleVoice != null">submoduleVoice = #{submoduleVoice},</if> |
| | | <if test="noClearlyText != null">noClearlyText = #{noClearlyText},</if> |
| | | <if test="noClearlyVoice != null">noClearlyVoice = #{noClearlyVoice},</if> |
| | | <if test="categoryName != null">categoryName = #{categoryName},</if> |
| | | <if test="targetOptions != null">targetOptions = #{targetOptions},</if> |
| | | <if test="language != null and language != ''">language = #{language},</if> |
| | | <if test="playWavOnly != null">playWavOnly = #{playWavOnly},</if> |
| | | <if test="isEnable != null">isEnable = #{isEnable},</if> |
| | | <if test="isDel != null">isDel = #{isDel},</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> |
| | | </trim> |
| | | where templateQuestionID = #{templateQuestionID} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTemplatescriptByTemplateQuestionID" parameterType="String"> |
| | | delete from ivr_liba_templatescript where templateQuestionID = #{templateQuestionID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTemplatescriptByTemplateQuestionIDs" parameterType="String"> |
| | | delete from ivr_liba_templatescript where templateQuestionID in |
| | | <foreach item="templateQuestionID" collection="array" open="(" separator="," close=")"> |
| | | #{templateQuestionID} |
| | | </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.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> |
| | | |
| | | <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 |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibaTemplatetargetList" parameterType="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> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibaTemplatetargetByTemplateTargetID" parameterType="String" resultMap="IvrLibaTemplatetargetResult"> |
| | | <include refid="selectIvrLibaTemplatetargetVo"/> |
| | | where templateTargetID = #{templateTargetID} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibaTemplatetarget" parameterType="IvrLibaTemplatetarget"> |
| | | insert into ivr_liba_templatetarget |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="templateTargetID != null">templateTargetID,</if> |
| | | <if test="templateQuestionID != null and templateQuestionID != ''">templateQuestionID,</if> |
| | | <if test="templateQuestionNum != null">templateQuestionNum,</if> |
| | | <if test="nextQuestionNum != null">nextQuestionNum,</if> |
| | | <if test="templateID != null and templateID != ''">templateID,</if> |
| | | <if test="switchID != null">switchID,</if> |
| | | <if test="switchDescription != null">switchDescription,</if> |
| | | <if test="switchText != null">switchText,</if> |
| | | <if test="switchWav != null">switchWav,</if> |
| | | <if test="switchTempWav != null">switchTempWav,</if> |
| | | <if test="targetType != null">targetType,</if> |
| | | <if test="categoryName != null">categoryName,</if> |
| | | <if test="targetValue != null">targetValue,</if> |
| | | <if test="targetID != null">targetID,</if> |
| | | <if test="questionTargetID != null">questionTargetID,</if> |
| | | <if test="basicRegex != null">basicRegex,</if> |
| | | <if test="selfRegex != null">selfRegex,</if> |
| | | <if test="regexUsedType != null">regexUsedType,</if> |
| | | <if test="language != null and language != ''">language,</if> |
| | | <if test="isEnable != null">isEnable,</if> |
| | | <if test="isDel != null">isDel,</if> |
| | | <if test="playType != null">playType,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="templateTargetID != null">#{templateTargetID},</if> |
| | | <if test="templateQuestionID != null and templateQuestionID != ''">#{templateQuestionID},</if> |
| | | <if test="templateQuestionNum != null">#{templateQuestionNum},</if> |
| | | <if test="nextQuestionNum != null">#{nextQuestionNum},</if> |
| | | <if test="templateID != null and templateID != ''">#{templateID},</if> |
| | | <if test="switchID != null">#{switchID},</if> |
| | | <if test="switchDescription != null">#{switchDescription},</if> |
| | | <if test="switchText != null">#{switchText},</if> |
| | | <if test="switchWav != null">#{switchWav},</if> |
| | | <if test="switchTempWav != null">#{switchTempWav},</if> |
| | | <if test="targetType != null">#{targetType},</if> |
| | | <if test="categoryName != null">#{categoryName},</if> |
| | | <if test="targetValue != null">#{targetValue},</if> |
| | | <if test="targetID != null">#{targetID},</if> |
| | | <if test="questionTargetID != null">#{questionTargetID},</if> |
| | | <if test="basicRegex != null">#{basicRegex},</if> |
| | | <if test="selfRegex != null">#{selfRegex},</if> |
| | | <if test="regexUsedType != null">#{regexUsedType},</if> |
| | | <if test="language != null and language != ''">#{language},</if> |
| | | <if test="isEnable != null">#{isEnable},</if> |
| | | <if test="isDel != null">#{isDel},</if> |
| | | <if test="playType != null">#{playType},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibaTemplatetarget" parameterType="IvrLibaTemplatetarget"> |
| | | update ivr_liba_templatetarget |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <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> |
| | | <if test="switchID != null">switchID = #{switchID},</if> |
| | | <if test="switchDescription != null">switchDescription = #{switchDescription},</if> |
| | | <if test="switchText != null">switchText = #{switchText},</if> |
| | | <if test="switchWav != null">switchWav = #{switchWav},</if> |
| | | <if test="switchTempWav != null">switchTempWav = #{switchTempWav},</if> |
| | | <if test="targetType != null">targetType = #{targetType},</if> |
| | | <if test="categoryName != null">categoryName = #{categoryName},</if> |
| | | <if test="targetValue != null">targetValue = #{targetValue},</if> |
| | | <if test="targetID != null">targetID = #{targetID},</if> |
| | | <if test="questionTargetID != null">questionTargetID = #{questionTargetID},</if> |
| | | <if test="basicRegex != null">basicRegex = #{basicRegex},</if> |
| | | <if test="selfRegex != null">selfRegex = #{selfRegex},</if> |
| | | <if test="regexUsedType != null">regexUsedType = #{regexUsedType},</if> |
| | | <if test="language != null and language != ''">language = #{language},</if> |
| | | <if test="isEnable != null">isEnable = #{isEnable},</if> |
| | | <if test="isDel != null">isDel = #{isDel},</if> |
| | | <if test="playType != null">playType = #{playType},</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> |
| | | </trim> |
| | | where templateTargetID = #{templateTargetID} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibaTemplatetargetByTemplateTargetID" parameterType="String"> |
| | | delete from ivr_liba_templatetarget where templateTargetID = #{templateTargetID} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibaTemplatetargetByTemplateTargetIDs" parameterType="String"> |
| | | delete from ivr_liba_templatetarget where templateTargetID in |
| | | <foreach item="templateTargetID" collection="array" open="(" separator="," close=")"> |
| | | #{templateTargetID} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |