| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.BaseSmsaccount; |
| | | import com.smartor.service.IBaseSmsaccountService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * çä¿¡è´¦å·Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/smsaccount") |
| | | public class BaseSmsaccountController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IBaseSmsaccountService baseSmsaccountService; |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è´¦å·å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsaccount:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(BaseSmsaccount baseSmsaccount) |
| | | { |
| | | startPage(); |
| | | List<BaseSmsaccount> list = baseSmsaccountService.selectBaseSmsaccountList(baseSmsaccount); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºçä¿¡è´¦å·å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsaccount:export')") |
| | | @Log(title = "çä¿¡è´¦å·", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, BaseSmsaccount baseSmsaccount) |
| | | { |
| | | List<BaseSmsaccount> list = baseSmsaccountService.selectBaseSmsaccountList(baseSmsaccount); |
| | | ExcelUtil<BaseSmsaccount> util = new ExcelUtil<BaseSmsaccount>(BaseSmsaccount.class); |
| | | util.exportExcel(response, list, "çä¿¡è´¦å·æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åçä¿¡è´¦å·è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsaccount:query')") |
| | | @GetMapping(value = "/{smsacountid}") |
| | | public AjaxResult getInfo(@PathVariable("smsacountid") Long smsacountid) |
| | | { |
| | | return success(baseSmsaccountService.selectBaseSmsaccountBySmsacountid(smsacountid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡è´¦å· |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsaccount:add')") |
| | | @Log(title = "çä¿¡è´¦å·", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody BaseSmsaccount baseSmsaccount) |
| | | { |
| | | return toAjax(baseSmsaccountService.insertBaseSmsaccount(baseSmsaccount)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡è´¦å· |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsaccount:edit')") |
| | | @Log(title = "çä¿¡è´¦å·", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody BaseSmsaccount baseSmsaccount) |
| | | { |
| | | return toAjax(baseSmsaccountService.updateBaseSmsaccount(baseSmsaccount)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤çä¿¡è´¦å· |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsaccount:remove')") |
| | | @Log(title = "çä¿¡è´¦å·", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{smsacountids}") |
| | | public AjaxResult remove(@PathVariable Long[] smsacountids) |
| | | { |
| | | return toAjax(baseSmsaccountService.deleteBaseSmsaccountBySmsacountids(smsacountids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibIntent; |
| | | import com.smartor.service.IIvrLibIntentService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIæå¾åºController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrlibintent") |
| | | public class IvrLibIntentController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibIntentService ivrLibIntentService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintent:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibIntent ivrLibIntent) |
| | | { |
| | | startPage(); |
| | | List<IvrLibIntent> list = ivrLibIntentService.selectIvrLibIntentList(ivrLibIntent); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIæå¾åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintent:export')") |
| | | @Log(title = "AIæå¾åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibIntent ivrLibIntent) |
| | | { |
| | | List<IvrLibIntent> list = ivrLibIntentService.selectIvrLibIntentList(ivrLibIntent); |
| | | ExcelUtil<IvrLibIntent> util = new ExcelUtil<IvrLibIntent>(IvrLibIntent.class); |
| | | util.exportExcel(response, list, "AIæå¾åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIæå¾åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintent:query')") |
| | | @GetMapping(value = "/{intentid}") |
| | | public AjaxResult getInfo(@PathVariable("intentid") Long intentid) |
| | | { |
| | | return success(ivrLibIntentService.selectIvrLibIntentByIntentid(intentid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIæå¾åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintent:add')") |
| | | @Log(title = "AIæå¾åº", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibIntent ivrLibIntent) |
| | | { |
| | | return toAjax(ivrLibIntentService.insertIvrLibIntent(ivrLibIntent)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¾åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintent:edit')") |
| | | @Log(title = "AIæå¾åº", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibIntent ivrLibIntent) |
| | | { |
| | | return toAjax(ivrLibIntentService.updateIvrLibIntent(ivrLibIntent)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIæå¾åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintent:remove')") |
| | | @Log(title = "AIæå¾åº", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{intentids}") |
| | | public AjaxResult remove(@PathVariable Long[] intentids) |
| | | { |
| | | return toAjax(ivrLibIntentService.deleteIvrLibIntentByIntentids(intentids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibIntentcategory; |
| | | import com.smartor.service.IIvrLibIntentcategoryService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIæå¾åºåç±»Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrlibintentcategory") |
| | | public class IvrLibIntentcategoryController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibIntentcategoryService ivrLibIntentcategoryService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºåç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintentcategory:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibIntentcategory ivrLibIntentcategory) |
| | | { |
| | | startPage(); |
| | | List<IvrLibIntentcategory> list = ivrLibIntentcategoryService.selectIvrLibIntentcategoryList(ivrLibIntentcategory); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIæå¾åºåç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintentcategory:export')") |
| | | @Log(title = "AIæå¾åºåç±»", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibIntentcategory ivrLibIntentcategory) |
| | | { |
| | | List<IvrLibIntentcategory> list = ivrLibIntentcategoryService.selectIvrLibIntentcategoryList(ivrLibIntentcategory); |
| | | ExcelUtil<IvrLibIntentcategory> util = new ExcelUtil<IvrLibIntentcategory>(IvrLibIntentcategory.class); |
| | | util.exportExcel(response, list, "AIæå¾åºåç±»æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIæå¾åºå类详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintentcategory:query')") |
| | | @GetMapping(value = "/{intertcatid}") |
| | | public AjaxResult getInfo(@PathVariable("intertcatid") Long intertcatid) |
| | | { |
| | | return success(ivrLibIntentcategoryService.selectIvrLibIntentcategoryByIntertcatid(intertcatid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIæå¾åºåç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintentcategory:add')") |
| | | @Log(title = "AIæå¾åºåç±»", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibIntentcategory ivrLibIntentcategory) |
| | | { |
| | | return toAjax(ivrLibIntentcategoryService.insertIvrLibIntentcategory(ivrLibIntentcategory)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¾åºåç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintentcategory:edit')") |
| | | @Log(title = "AIæå¾åºåç±»", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibIntentcategory ivrLibIntentcategory) |
| | | { |
| | | return toAjax(ivrLibIntentcategoryService.updateIvrLibIntentcategory(ivrLibIntentcategory)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIæå¾åºåç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibintentcategory:remove')") |
| | | @Log(title = "AIæå¾åºåç±»", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{intertcatids}") |
| | | public AjaxResult remove(@PathVariable Long[] intertcatids) |
| | | { |
| | | return toAjax(ivrLibIntentcategoryService.deleteIvrLibIntentcategoryByIntertcatids(intertcatids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibScript; |
| | | import com.smartor.service.IIvrLibScriptService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrlibscript") |
| | | public class IvrLibScriptController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibScriptService ivrLibScriptService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscript:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibScript ivrLibScript) |
| | | { |
| | | startPage(); |
| | | List<IvrLibScript> list = ivrLibScriptService.selectIvrLibScriptList(ivrLibScript); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIè¯æ¯åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscript:export')") |
| | | @Log(title = "AIè¯æ¯åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibScript ivrLibScript) |
| | | { |
| | | List<IvrLibScript> list = ivrLibScriptService.selectIvrLibScriptList(ivrLibScript); |
| | | ExcelUtil<IvrLibScript> util = new ExcelUtil<IvrLibScript>(IvrLibScript.class); |
| | | util.exportExcel(response, list, "AIè¯æ¯åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIè¯æ¯åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscript:query')") |
| | | @GetMapping(value = "/{scriptid}") |
| | | public AjaxResult getInfo(@PathVariable("scriptid") Long scriptid) |
| | | { |
| | | return success(ivrLibScriptService.selectIvrLibScriptByScriptid(scriptid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscript:add')") |
| | | @Log(title = "AIè¯æ¯åº", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibScript ivrLibScript) |
| | | { |
| | | return toAjax(ivrLibScriptService.insertIvrLibScript(ivrLibScript)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscript:edit')") |
| | | @Log(title = "AIè¯æ¯åº", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibScript ivrLibScript) |
| | | { |
| | | return toAjax(ivrLibScriptService.updateIvrLibScript(ivrLibScript)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscript:remove')") |
| | | @Log(title = "AIè¯æ¯åº", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{scriptids}") |
| | | public AjaxResult remove(@PathVariable Long[] scriptids) |
| | | { |
| | | return toAjax(ivrLibScriptService.deleteIvrLibScriptByScriptids(scriptids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibScriptcategory; |
| | | import com.smartor.service.IIvrLibScriptcategoryService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºåç±»Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrlibscriptcategory") |
| | | public class IvrLibScriptcategoryController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibScriptcategoryService ivrLibScriptcategoryService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºåç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptcategory:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibScriptcategory ivrLibScriptcategory) |
| | | { |
| | | startPage(); |
| | | List<IvrLibScriptcategory> list = ivrLibScriptcategoryService.selectIvrLibScriptcategoryList(ivrLibScriptcategory); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIè¯æ¯åºåç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptcategory:export')") |
| | | @Log(title = "AIè¯æ¯åºåç±»", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibScriptcategory ivrLibScriptcategory) |
| | | { |
| | | List<IvrLibScriptcategory> list = ivrLibScriptcategoryService.selectIvrLibScriptcategoryList(ivrLibScriptcategory); |
| | | ExcelUtil<IvrLibScriptcategory> util = new ExcelUtil<IvrLibScriptcategory>(IvrLibScriptcategory.class); |
| | | util.exportExcel(response, list, "AIè¯æ¯åºåç±»æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIè¯æ¯åºå类详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptcategory:query')") |
| | | @GetMapping(value = "/{categoryid}") |
| | | public AjaxResult getInfo(@PathVariable("categoryid") Long categoryid) |
| | | { |
| | | return success(ivrLibScriptcategoryService.selectIvrLibScriptcategoryByCategoryid(categoryid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯åºåç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptcategory:add')") |
| | | @Log(title = "AIè¯æ¯åºåç±»", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibScriptcategory ivrLibScriptcategory) |
| | | { |
| | | return toAjax(ivrLibScriptcategoryService.insertIvrLibScriptcategory(ivrLibScriptcategory)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯åºåç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptcategory:edit')") |
| | | @Log(title = "AIè¯æ¯åºåç±»", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibScriptcategory ivrLibScriptcategory) |
| | | { |
| | | return toAjax(ivrLibScriptcategoryService.updateIvrLibScriptcategory(ivrLibScriptcategory)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯åºåç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptcategory:remove')") |
| | | @Log(title = "AIè¯æ¯åºåç±»", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{categoryids}") |
| | | public AjaxResult remove(@PathVariable Long[] categoryids) |
| | | { |
| | | return toAjax(ivrLibScriptcategoryService.deleteIvrLibScriptcategoryByCategoryids(categoryids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibScriptmodel; |
| | | import com.smartor.service.IIvrLibScriptmodelService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIè¯æ¯æ¨¡åController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrlibscriptmodel") |
| | | public class IvrLibScriptmodelController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrLibScriptmodelService ivrLibScriptmodelService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯æ¨¡åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptmodel:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrLibScriptmodel ivrLibScriptmodel) |
| | | { |
| | | startPage(); |
| | | List<IvrLibScriptmodel> list = ivrLibScriptmodelService.selectIvrLibScriptmodelList(ivrLibScriptmodel); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIè¯æ¯æ¨¡åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptmodel:export')") |
| | | @Log(title = "AIè¯æ¯æ¨¡å", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrLibScriptmodel ivrLibScriptmodel) |
| | | { |
| | | List<IvrLibScriptmodel> list = ivrLibScriptmodelService.selectIvrLibScriptmodelList(ivrLibScriptmodel); |
| | | ExcelUtil<IvrLibScriptmodel> util = new ExcelUtil<IvrLibScriptmodel>(IvrLibScriptmodel.class); |
| | | util.exportExcel(response, list, "AIè¯æ¯æ¨¡åæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIè¯æ¯æ¨¡å详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptmodel:query')") |
| | | @GetMapping(value = "/{modelid}") |
| | | public AjaxResult getInfo(@PathVariable("modelid") Long modelid) |
| | | { |
| | | return success(ivrLibScriptmodelService.selectIvrLibScriptmodelByModelid(modelid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯æ¨¡å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptmodel:add')") |
| | | @Log(title = "AIè¯æ¯æ¨¡å", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrLibScriptmodel ivrLibScriptmodel) |
| | | { |
| | | return toAjax(ivrLibScriptmodelService.insertIvrLibScriptmodel(ivrLibScriptmodel)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯æ¨¡å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptmodel:edit')") |
| | | @Log(title = "AIè¯æ¯æ¨¡å", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrLibScriptmodel ivrLibScriptmodel) |
| | | { |
| | | return toAjax(ivrLibScriptmodelService.updateIvrLibScriptmodel(ivrLibScriptmodel)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯æ¨¡å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrlibscriptmodel:remove')") |
| | | @Log(title = "AIè¯æ¯æ¨¡å", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{modelids}") |
| | | public AjaxResult remove(@PathVariable Long[] modelids) |
| | | { |
| | | return toAjax(ivrLibScriptmodelService.deleteIvrLibScriptmodelByModelids(modelids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrScene; |
| | | import com.smartor.service.IIvrSceneService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼åºæ¯ç®¡çController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrscene") |
| | | public class IvrSceneController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneService ivrSceneService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼åºæ¯ç®¡çå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscene:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrScene ivrScene) |
| | | { |
| | | startPage(); |
| | | List<IvrScene> list = ivrSceneService.selectIvrSceneList(ivrScene); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼åºæ¯ç®¡çå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscene:export')") |
| | | @Log(title = "AIå¤å¼åºæ¯ç®¡ç", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrScene ivrScene) |
| | | { |
| | | List<IvrScene> list = ivrSceneService.selectIvrSceneList(ivrScene); |
| | | ExcelUtil<IvrScene> util = new ExcelUtil<IvrScene>(IvrScene.class); |
| | | util.exportExcel(response, list, "AIå¤å¼åºæ¯ç®¡çæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼åºæ¯ç®¡ç详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscene:query')") |
| | | @GetMapping(value = "/{sceneid}") |
| | | public AjaxResult getInfo(@PathVariable("sceneid") Long sceneid) |
| | | { |
| | | return success(ivrSceneService.selectIvrSceneBySceneid(sceneid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼åºæ¯ç®¡ç |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscene:add')") |
| | | @Log(title = "AIå¤å¼åºæ¯ç®¡ç", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrScene ivrScene) |
| | | { |
| | | return toAjax(ivrSceneService.insertIvrScene(ivrScene)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼åºæ¯ç®¡ç |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscene:edit')") |
| | | @Log(title = "AIå¤å¼åºæ¯ç®¡ç", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrScene ivrScene) |
| | | { |
| | | return toAjax(ivrSceneService.updateIvrScene(ivrScene)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼åºæ¯ç®¡ç |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscene:remove')") |
| | | @Log(title = "AIå¤å¼åºæ¯ç®¡ç", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{sceneids}") |
| | | public AjaxResult remove(@PathVariable Long[] sceneids) |
| | | { |
| | | return toAjax(ivrSceneService.deleteIvrSceneBySceneids(sceneids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneExecuteconfig; |
| | | import com.smartor.service.IIvrSceneExecuteconfigService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼æ§è¡é
ç½®Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrexecuteconfig") |
| | | public class IvrSceneExecuteconfigController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneExecuteconfigService ivrSceneExecuteconfigService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æ§è¡é
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrexecuteconfig:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrSceneExecuteconfig ivrSceneExecuteconfig) |
| | | { |
| | | startPage(); |
| | | List<IvrSceneExecuteconfig> list = ivrSceneExecuteconfigService.selectIvrSceneExecuteconfigList(ivrSceneExecuteconfig); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼æ§è¡é
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrexecuteconfig:export')") |
| | | @Log(title = "AIå¤å¼æ§è¡é
ç½®", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneExecuteconfig ivrSceneExecuteconfig) |
| | | { |
| | | List<IvrSceneExecuteconfig> list = ivrSceneExecuteconfigService.selectIvrSceneExecuteconfigList(ivrSceneExecuteconfig); |
| | | ExcelUtil<IvrSceneExecuteconfig> util = new ExcelUtil<IvrSceneExecuteconfig>(IvrSceneExecuteconfig.class); |
| | | util.exportExcel(response, list, "AIå¤å¼æ§è¡é
ç½®æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼æ§è¡é
置详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrexecuteconfig:query')") |
| | | @GetMapping(value = "/{scenecfgid}") |
| | | public AjaxResult getInfo(@PathVariable("scenecfgid") Long scenecfgid) |
| | | { |
| | | return success(ivrSceneExecuteconfigService.selectIvrSceneExecuteconfigByScenecfgid(scenecfgid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æ§è¡é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrexecuteconfig:add')") |
| | | @Log(title = "AIå¤å¼æ§è¡é
ç½®", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrSceneExecuteconfig ivrSceneExecuteconfig) |
| | | { |
| | | return toAjax(ivrSceneExecuteconfigService.insertIvrSceneExecuteconfig(ivrSceneExecuteconfig)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æ§è¡é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrexecuteconfig:edit')") |
| | | @Log(title = "AIå¤å¼æ§è¡é
ç½®", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrSceneExecuteconfig ivrSceneExecuteconfig) |
| | | { |
| | | return toAjax(ivrSceneExecuteconfigService.updateIvrSceneExecuteconfig(ivrSceneExecuteconfig)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æ§è¡é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrexecuteconfig:remove')") |
| | | @Log(title = "AIå¤å¼æ§è¡é
ç½®", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{scenecfgids}") |
| | | public AjaxResult remove(@PathVariable Long[] scenecfgids) |
| | | { |
| | | return toAjax(ivrSceneExecuteconfigService.deleteIvrSceneExecuteconfigByScenecfgids(scenecfgids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneFlow; |
| | | import com.smartor.service.IIvrSceneFlowService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrflow") |
| | | public class IvrSceneFlowController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneFlowService ivrSceneFlowService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflow:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrSceneFlow ivrSceneFlow) |
| | | { |
| | | startPage(); |
| | | List<IvrSceneFlow> list = ivrSceneFlowService.selectIvrSceneFlowList(ivrSceneFlow); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼æµç¨å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflow:export')") |
| | | @Log(title = "AIå¤å¼æµç¨", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneFlow ivrSceneFlow) |
| | | { |
| | | List<IvrSceneFlow> list = ivrSceneFlowService.selectIvrSceneFlowList(ivrSceneFlow); |
| | | ExcelUtil<IvrSceneFlow> util = new ExcelUtil<IvrSceneFlow>(IvrSceneFlow.class); |
| | | util.exportExcel(response, list, "AIå¤å¼æµç¨æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼æµç¨è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflow:query')") |
| | | @GetMapping(value = "/{flowid}") |
| | | public AjaxResult getInfo(@PathVariable("flowid") Long flowid) |
| | | { |
| | | return success(ivrSceneFlowService.selectIvrSceneFlowByFlowid(flowid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflow:add')") |
| | | @Log(title = "AIå¤å¼æµç¨", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrSceneFlow ivrSceneFlow) |
| | | { |
| | | return toAjax(ivrSceneFlowService.insertIvrSceneFlow(ivrSceneFlow)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflow:edit')") |
| | | @Log(title = "AIå¤å¼æµç¨", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrSceneFlow ivrSceneFlow) |
| | | { |
| | | return toAjax(ivrSceneFlowService.updateIvrSceneFlow(ivrSceneFlow)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflow:remove')") |
| | | @Log(title = "AIå¤å¼æµç¨", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{flowids}") |
| | | public AjaxResult remove(@PathVariable Long[] flowids) |
| | | { |
| | | return toAjax(ivrSceneFlowService.deleteIvrSceneFlowByFlowids(flowids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneFlownode; |
| | | import com.smartor.service.IIvrSceneFlownodeService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrflownode") |
| | | public class IvrSceneFlownodeController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneFlownodeService ivrSceneFlownodeService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownode:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrSceneFlownode ivrSceneFlownode) |
| | | { |
| | | startPage(); |
| | | List<IvrSceneFlownode> list = ivrSceneFlownodeService.selectIvrSceneFlownodeList(ivrSceneFlownode); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼æµç¨èç¹å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownode:export')") |
| | | @Log(title = "AIå¤å¼æµç¨èç¹", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneFlownode ivrSceneFlownode) |
| | | { |
| | | List<IvrSceneFlownode> list = ivrSceneFlownodeService.selectIvrSceneFlownodeList(ivrSceneFlownode); |
| | | ExcelUtil<IvrSceneFlownode> util = new ExcelUtil<IvrSceneFlownode>(IvrSceneFlownode.class); |
| | | util.exportExcel(response, list, "AIå¤å¼æµç¨èç¹æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼æµç¨èç¹è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownode:query')") |
| | | @GetMapping(value = "/{flownodeid}") |
| | | public AjaxResult getInfo(@PathVariable("flownodeid") Long flownodeid) |
| | | { |
| | | return success(ivrSceneFlownodeService.selectIvrSceneFlownodeByFlownodeid(flownodeid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨èç¹ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownode:add')") |
| | | @Log(title = "AIå¤å¼æµç¨èç¹", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrSceneFlownode ivrSceneFlownode) |
| | | { |
| | | return toAjax(ivrSceneFlownodeService.insertIvrSceneFlownode(ivrSceneFlownode)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨èç¹ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownode:edit')") |
| | | @Log(title = "AIå¤å¼æµç¨èç¹", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrSceneFlownode ivrSceneFlownode) |
| | | { |
| | | return toAjax(ivrSceneFlownodeService.updateIvrSceneFlownode(ivrSceneFlownode)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨èç¹ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownode:remove')") |
| | | @Log(title = "AIå¤å¼æµç¨èç¹", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{flownodeids}") |
| | | public AjaxResult remove(@PathVariable Long[] flownodeids) |
| | | { |
| | | return toAjax(ivrSceneFlownodeService.deleteIvrSceneFlownodeByFlownodeids(flownodeids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneFlownodebranch; |
| | | import com.smartor.service.IIvrSceneFlownodebranchService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹åæ¯Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrflownodebranch") |
| | | public class IvrSceneFlownodebranchController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneFlownodebranchService ivrSceneFlownodebranchService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹åæ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | | { |
| | | startPage(); |
| | | List<IvrSceneFlownodebranch> list = ivrSceneFlownodebranchService.selectIvrSceneFlownodebranchList(ivrSceneFlownodebranch); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼æµç¨èç¹åæ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:export')") |
| | | @Log(title = "AIå¤å¼æµç¨èç¹åæ¯", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | | { |
| | | List<IvrSceneFlownodebranch> list = ivrSceneFlownodebranchService.selectIvrSceneFlownodebranchList(ivrSceneFlownodebranch); |
| | | ExcelUtil<IvrSceneFlownodebranch> util = new ExcelUtil<IvrSceneFlownodebranch>(IvrSceneFlownodebranch.class); |
| | | util.exportExcel(response, list, "AIå¤å¼æµç¨èç¹åæ¯æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼æµç¨èç¹åæ¯è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:query')") |
| | | @GetMapping(value = "/{branchid}") |
| | | public AjaxResult getInfo(@PathVariable("branchid") Long branchid) |
| | | { |
| | | return success(ivrSceneFlownodebranchService.selectIvrSceneFlownodebranchByBranchid(branchid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨èç¹åæ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:add')") |
| | | @Log(title = "AIå¤å¼æµç¨èç¹åæ¯", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | | { |
| | | return toAjax(ivrSceneFlownodebranchService.insertIvrSceneFlownodebranch(ivrSceneFlownodebranch)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨èç¹åæ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:edit')") |
| | | @Log(title = "AIå¤å¼æµç¨èç¹åæ¯", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | | { |
| | | return toAjax(ivrSceneFlownodebranchService.updateIvrSceneFlownodebranch(ivrSceneFlownodebranch)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨èç¹åæ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrflownodebranch:remove')") |
| | | @Log(title = "AIå¤å¼æµç¨èç¹åæ¯", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{branchids}") |
| | | public AjaxResult remove(@PathVariable Long[] branchids) |
| | | { |
| | | return toAjax(ivrSceneFlownodebranchService.deleteIvrSceneFlownodebranchByBranchids(branchids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneGlobalconfig; |
| | | import com.smartor.service.IIvrSceneGlobalconfigService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼å
¨å±é
ç½®Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrglobalconfig") |
| | | public class IvrSceneGlobalconfigController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneGlobalconfigService ivrSceneGlobalconfigService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼å
¨å±é
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrglobalconfig:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrSceneGlobalconfig ivrSceneGlobalconfig) |
| | | { |
| | | startPage(); |
| | | List<IvrSceneGlobalconfig> list = ivrSceneGlobalconfigService.selectIvrSceneGlobalconfigList(ivrSceneGlobalconfig); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼å
¨å±é
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrglobalconfig:export')") |
| | | @Log(title = "AIå¤å¼å
¨å±é
ç½®", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneGlobalconfig ivrSceneGlobalconfig) |
| | | { |
| | | List<IvrSceneGlobalconfig> list = ivrSceneGlobalconfigService.selectIvrSceneGlobalconfigList(ivrSceneGlobalconfig); |
| | | ExcelUtil<IvrSceneGlobalconfig> util = new ExcelUtil<IvrSceneGlobalconfig>(IvrSceneGlobalconfig.class); |
| | | util.exportExcel(response, list, "AIå¤å¼å
¨å±é
ç½®æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼å
¨å±é
置详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrglobalconfig:query')") |
| | | @GetMapping(value = "/{gblconfigid}") |
| | | public AjaxResult getInfo(@PathVariable("gblconfigid") Long gblconfigid) |
| | | { |
| | | return success(ivrSceneGlobalconfigService.selectIvrSceneGlobalconfigByGblconfigid(gblconfigid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼å
¨å±é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrglobalconfig:add')") |
| | | @Log(title = "AIå¤å¼å
¨å±é
ç½®", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrSceneGlobalconfig ivrSceneGlobalconfig) |
| | | { |
| | | return toAjax(ivrSceneGlobalconfigService.insertIvrSceneGlobalconfig(ivrSceneGlobalconfig)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼å
¨å±é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrglobalconfig:edit')") |
| | | @Log(title = "AIå¤å¼å
¨å±é
ç½®", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrSceneGlobalconfig ivrSceneGlobalconfig) |
| | | { |
| | | return toAjax(ivrSceneGlobalconfigService.updateIvrSceneGlobalconfig(ivrSceneGlobalconfig)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼å
¨å±é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrglobalconfig:remove')") |
| | | @Log(title = "AIå¤å¼å
¨å±é
ç½®", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{gblconfigids}") |
| | | public AjaxResult remove(@PathVariable Long[] gblconfigids) |
| | | { |
| | | return toAjax(ivrSceneGlobalconfigService.deleteIvrSceneGlobalconfigByGblconfigids(gblconfigids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneIntent; |
| | | import com.smartor.service.IIvrSceneIntentService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼æå¾Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrintent") |
| | | public class IvrSceneIntentController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneIntentService ivrSceneIntentService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æå¾å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrintent:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrSceneIntent ivrSceneIntent) |
| | | { |
| | | startPage(); |
| | | List<IvrSceneIntent> list = ivrSceneIntentService.selectIvrSceneIntentList(ivrSceneIntent); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼æå¾å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrintent:export')") |
| | | @Log(title = "AIå¤å¼æå¾", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneIntent ivrSceneIntent) |
| | | { |
| | | List<IvrSceneIntent> list = ivrSceneIntentService.selectIvrSceneIntentList(ivrSceneIntent); |
| | | ExcelUtil<IvrSceneIntent> util = new ExcelUtil<IvrSceneIntent>(IvrSceneIntent.class); |
| | | util.exportExcel(response, list, "AIå¤å¼æå¾æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼æå¾è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrintent:query')") |
| | | @GetMapping(value = "/{sceneintentid}") |
| | | public AjaxResult getInfo(@PathVariable("sceneintentid") Long sceneintentid) |
| | | { |
| | | return success(ivrSceneIntentService.selectIvrSceneIntentBySceneintentid(sceneintentid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æå¾ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrintent:add')") |
| | | @Log(title = "AIå¤å¼æå¾", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrSceneIntent ivrSceneIntent) |
| | | { |
| | | return toAjax(ivrSceneIntentService.insertIvrSceneIntent(ivrSceneIntent)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æå¾ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrintent:edit')") |
| | | @Log(title = "AIå¤å¼æå¾", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrSceneIntent ivrSceneIntent) |
| | | { |
| | | return toAjax(ivrSceneIntentService.updateIvrSceneIntent(ivrSceneIntent)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æå¾ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrintent:remove')") |
| | | @Log(title = "AIå¤å¼æå¾", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{sceneintentids}") |
| | | public AjaxResult remove(@PathVariable Long[] sceneintentids) |
| | | { |
| | | return toAjax(ivrSceneIntentService.deleteIvrSceneIntentBySceneintentids(sceneintentids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneRecall; |
| | | import com.smartor.service.IIvrSceneRecallService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼éæ¨é
ç½®Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrrecall") |
| | | public class IvrSceneRecallController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneRecallService ivrSceneRecallService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼éæ¨é
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrrecall:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrSceneRecall ivrSceneRecall) |
| | | { |
| | | startPage(); |
| | | List<IvrSceneRecall> list = ivrSceneRecallService.selectIvrSceneRecallList(ivrSceneRecall); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼éæ¨é
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrrecall:export')") |
| | | @Log(title = "AIå¤å¼éæ¨é
ç½®", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneRecall ivrSceneRecall) |
| | | { |
| | | List<IvrSceneRecall> list = ivrSceneRecallService.selectIvrSceneRecallList(ivrSceneRecall); |
| | | ExcelUtil<IvrSceneRecall> util = new ExcelUtil<IvrSceneRecall>(IvrSceneRecall.class); |
| | | util.exportExcel(response, list, "AIå¤å¼éæ¨é
ç½®æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼éæ¨é
置详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrrecall:query')") |
| | | @GetMapping(value = "/{recallid}") |
| | | public AjaxResult getInfo(@PathVariable("recallid") Long recallid) |
| | | { |
| | | return success(ivrSceneRecallService.selectIvrSceneRecallByRecallid(recallid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼éæ¨é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrrecall:add')") |
| | | @Log(title = "AIå¤å¼éæ¨é
ç½®", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrSceneRecall ivrSceneRecall) |
| | | { |
| | | return toAjax(ivrSceneRecallService.insertIvrSceneRecall(ivrSceneRecall)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼éæ¨é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrrecall:edit')") |
| | | @Log(title = "AIå¤å¼éæ¨é
ç½®", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrSceneRecall ivrSceneRecall) |
| | | { |
| | | return toAjax(ivrSceneRecallService.updateIvrSceneRecall(ivrSceneRecall)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼éæ¨é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrrecall:remove')") |
| | | @Log(title = "AIå¤å¼éæ¨é
ç½®", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{recallids}") |
| | | public AjaxResult remove(@PathVariable Long[] recallids) |
| | | { |
| | | return toAjax(ivrSceneRecallService.deleteIvrSceneRecallByRecallids(recallids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneScript; |
| | | import com.smartor.service.IIvrSceneScriptService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrscript") |
| | | public class IvrSceneScriptController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneScriptService ivrSceneScriptService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscript:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrSceneScript ivrSceneScript) |
| | | { |
| | | startPage(); |
| | | List<IvrSceneScript> list = ivrSceneScriptService.selectIvrSceneScriptList(ivrSceneScript); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼è¯æ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscript:export')") |
| | | @Log(title = "AIå¤å¼è¯æ¯", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneScript ivrSceneScript) |
| | | { |
| | | List<IvrSceneScript> list = ivrSceneScriptService.selectIvrSceneScriptList(ivrSceneScript); |
| | | ExcelUtil<IvrSceneScript> util = new ExcelUtil<IvrSceneScript>(IvrSceneScript.class); |
| | | util.exportExcel(response, list, "AIå¤å¼è¯æ¯æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼è¯æ¯è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscript:query')") |
| | | @GetMapping(value = "/{scenescrid}") |
| | | public AjaxResult getInfo(@PathVariable("scenescrid") Long scenescrid) |
| | | { |
| | | return success(ivrSceneScriptService.selectIvrSceneScriptByScenescrid(scenescrid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼è¯æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscript:add')") |
| | | @Log(title = "AIå¤å¼è¯æ¯", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrSceneScript ivrSceneScript) |
| | | { |
| | | return toAjax(ivrSceneScriptService.insertIvrSceneScript(ivrSceneScript)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼è¯æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscript:edit')") |
| | | @Log(title = "AIå¤å¼è¯æ¯", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrSceneScript ivrSceneScript) |
| | | { |
| | | return toAjax(ivrSceneScriptService.updateIvrSceneScript(ivrSceneScript)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼è¯æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscript:remove')") |
| | | @Log(title = "AIå¤å¼è¯æ¯", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{scenescrids}") |
| | | public AjaxResult remove(@PathVariable Long[] scenescrids) |
| | | { |
| | | return toAjax(ivrSceneScriptService.deleteIvrSceneScriptByScenescrids(scenescrids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneScriptmodel; |
| | | import com.smartor.service.IIvrSceneScriptmodelService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯æ¨¡åController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrscriptmodel") |
| | | public class IvrSceneScriptmodelController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrSceneScriptmodelService ivrSceneScriptmodelService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯æ¨¡åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscriptmodel:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrSceneScriptmodel ivrSceneScriptmodel) |
| | | { |
| | | startPage(); |
| | | List<IvrSceneScriptmodel> list = ivrSceneScriptmodelService.selectIvrSceneScriptmodelList(ivrSceneScriptmodel); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIå¤å¼è¯æ¯æ¨¡åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscriptmodel:export')") |
| | | @Log(title = "AIå¤å¼è¯æ¯æ¨¡å", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrSceneScriptmodel ivrSceneScriptmodel) |
| | | { |
| | | List<IvrSceneScriptmodel> list = ivrSceneScriptmodelService.selectIvrSceneScriptmodelList(ivrSceneScriptmodel); |
| | | ExcelUtil<IvrSceneScriptmodel> util = new ExcelUtil<IvrSceneScriptmodel>(IvrSceneScriptmodel.class); |
| | | util.exportExcel(response, list, "AIå¤å¼è¯æ¯æ¨¡åæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIå¤å¼è¯æ¯æ¨¡å详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscriptmodel:query')") |
| | | @GetMapping(value = "/{scenemodid}") |
| | | public AjaxResult getInfo(@PathVariable("scenemodid") Long scenemodid) |
| | | { |
| | | return success(ivrSceneScriptmodelService.selectIvrSceneScriptmodelByScenemodid(scenemodid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼è¯æ¯æ¨¡å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscriptmodel:add')") |
| | | @Log(title = "AIå¤å¼è¯æ¯æ¨¡å", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrSceneScriptmodel ivrSceneScriptmodel) |
| | | { |
| | | return toAjax(ivrSceneScriptmodelService.insertIvrSceneScriptmodel(ivrSceneScriptmodel)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼è¯æ¯æ¨¡å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscriptmodel:edit')") |
| | | @Log(title = "AIå¤å¼è¯æ¯æ¨¡å", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrSceneScriptmodel ivrSceneScriptmodel) |
| | | { |
| | | return toAjax(ivrSceneScriptmodelService.updateIvrSceneScriptmodel(ivrSceneScriptmodel)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼è¯æ¯æ¨¡å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscriptmodel:remove')") |
| | | @Log(title = "AIå¤å¼è¯æ¯æ¨¡å", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{scenemodids}") |
| | | public AjaxResult remove(@PathVariable Long[] scenemodids) |
| | | { |
| | | return toAjax(ivrSceneScriptmodelService.deleteIvrSceneScriptmodelByScenemodids(scenemodids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrScenecategory; |
| | | import com.smartor.service.IIvrScenecategoryService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * AIæå¡åºæ¯ç®¡çåç±»Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/ivrscenecategory") |
| | | public class IvrScenecategoryController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IIvrScenecategoryService ivrScenecategoryService; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¡åºæ¯ç®¡çåç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscenecategory:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(IvrScenecategory ivrScenecategory) |
| | | { |
| | | startPage(); |
| | | List<IvrScenecategory> list = ivrScenecategoryService.selectIvrScenecategoryList(ivrScenecategory); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºAIæå¡åºæ¯ç®¡çåç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscenecategory:export')") |
| | | @Log(title = "AIæå¡åºæ¯ç®¡çåç±»", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, IvrScenecategory ivrScenecategory) |
| | | { |
| | | List<IvrScenecategory> list = ivrScenecategoryService.selectIvrScenecategoryList(ivrScenecategory); |
| | | ExcelUtil<IvrScenecategory> util = new ExcelUtil<IvrScenecategory>(IvrScenecategory.class); |
| | | util.exportExcel(response, list, "AIæå¡åºæ¯ç®¡çåç±»æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åAIæå¡åºæ¯ç®¡çå类详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscenecategory:query')") |
| | | @GetMapping(value = "/{scenecatid}") |
| | | public AjaxResult getInfo(@PathVariable("scenecatid") Long scenecatid) |
| | | { |
| | | return success(ivrScenecategoryService.selectIvrScenecategoryByScenecatid(scenecatid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIæå¡åºæ¯ç®¡çåç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscenecategory:add')") |
| | | @Log(title = "AIæå¡åºæ¯ç®¡çåç±»", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody IvrScenecategory ivrScenecategory) |
| | | { |
| | | return toAjax(ivrScenecategoryService.insertIvrScenecategory(ivrScenecategory)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¡åºæ¯ç®¡çåç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscenecategory:edit')") |
| | | @Log(title = "AIæå¡åºæ¯ç®¡çåç±»", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody IvrScenecategory ivrScenecategory) |
| | | { |
| | | return toAjax(ivrScenecategoryService.updateIvrScenecategory(ivrScenecategory)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIæå¡åºæ¯ç®¡çåç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:ivrscenecategory:remove')") |
| | | @Log(title = "AIæå¡åºæ¯ç®¡çåç±»", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{scenecatids}") |
| | | public AjaxResult remove(@PathVariable Long[] scenecatids) |
| | | { |
| | | return toAjax(ivrScenecategoryService.deleteIvrScenecategoryByScenecatids(scenecatids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SmsParam; |
| | | import com.smartor.service.ISmsParamService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * çä¿¡åæ°Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/smsparam") |
| | | public class SmsParamController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISmsParamService smsParamService; |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡åæ°å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsparam:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SmsParam smsParam) |
| | | { |
| | | startPage(); |
| | | List<SmsParam> list = smsParamService.selectSmsParamList(smsParam); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºçä¿¡åæ°å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsparam:export')") |
| | | @Log(title = "çä¿¡åæ°", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SmsParam smsParam) |
| | | { |
| | | List<SmsParam> list = smsParamService.selectSmsParamList(smsParam); |
| | | ExcelUtil<SmsParam> util = new ExcelUtil<SmsParam>(SmsParam.class); |
| | | util.exportExcel(response, list, "çä¿¡åæ°æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åçä¿¡åæ°è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsparam:query')") |
| | | @GetMapping(value = "/{paramid}") |
| | | public AjaxResult getInfo(@PathVariable("paramid") Long paramid) |
| | | { |
| | | return success(smsParamService.selectSmsParamByParamid(paramid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡åæ° |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsparam:add')") |
| | | @Log(title = "çä¿¡åæ°", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SmsParam smsParam) |
| | | { |
| | | return toAjax(smsParamService.insertSmsParam(smsParam)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡åæ° |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsparam:edit')") |
| | | @Log(title = "çä¿¡åæ°", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SmsParam smsParam) |
| | | { |
| | | return toAjax(smsParamService.updateSmsParam(smsParam)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤çä¿¡åæ° |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsparam:remove')") |
| | | @Log(title = "çä¿¡åæ°", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{paramids}") |
| | | public AjaxResult remove(@PathVariable Long[] paramids) |
| | | { |
| | | return toAjax(smsParamService.deleteSmsParamByParamids(paramids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SmsRecords; |
| | | import com.smartor.service.ISmsRecordsService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * çä¿¡è®°å½Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/smsrecords") |
| | | public class SmsRecordsController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISmsRecordsService smsRecordsService; |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsrecords:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SmsRecords smsRecords) |
| | | { |
| | | startPage(); |
| | | List<SmsRecords> list = smsRecordsService.selectSmsRecordsList(smsRecords); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºçä¿¡è®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsrecords:export')") |
| | | @Log(title = "çä¿¡è®°å½", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SmsRecords smsRecords) |
| | | { |
| | | List<SmsRecords> list = smsRecordsService.selectSmsRecordsList(smsRecords); |
| | | ExcelUtil<SmsRecords> util = new ExcelUtil<SmsRecords>(SmsRecords.class); |
| | | util.exportExcel(response, list, "çä¿¡è®°å½æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åçä¿¡è®°å½è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsrecords:query')") |
| | | @GetMapping(value = "/{recordid}") |
| | | public AjaxResult getInfo(@PathVariable("recordid") Long recordid) |
| | | { |
| | | return success(smsRecordsService.selectSmsRecordsByRecordid(recordid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsrecords:add')") |
| | | @Log(title = "çä¿¡è®°å½", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SmsRecords smsRecords) |
| | | { |
| | | return toAjax(smsRecordsService.insertSmsRecords(smsRecords)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsrecords:edit')") |
| | | @Log(title = "çä¿¡è®°å½", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SmsRecords smsRecords) |
| | | { |
| | | return toAjax(smsRecordsService.updateSmsRecords(smsRecords)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤çä¿¡è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smsrecords:remove')") |
| | | @Log(title = "çä¿¡è®°å½", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{recordids}") |
| | | public AjaxResult remove(@PathVariable Long[] recordids) |
| | | { |
| | | return toAjax(smsRecordsService.deleteSmsRecordsByRecordids(recordids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SmsTemplet; |
| | | import com.smartor.service.ISmsTempletService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * ç信模æ¿Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/smstemplet") |
| | | public class SmsTempletController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISmsTempletService smsTempletService; |
| | | |
| | | /** |
| | | * æ¥è¯¢ç信模æ¿å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smstemplet:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SmsTemplet smsTemplet) |
| | | { |
| | | startPage(); |
| | | List<SmsTemplet> list = smsTempletService.selectSmsTempletList(smsTemplet); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºç信模æ¿å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smstemplet:export')") |
| | | @Log(title = "ç信模æ¿", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SmsTemplet smsTemplet) |
| | | { |
| | | List<SmsTemplet> list = smsTempletService.selectSmsTempletList(smsTemplet); |
| | | ExcelUtil<SmsTemplet> util = new ExcelUtil<SmsTemplet>(SmsTemplet.class); |
| | | util.exportExcel(response, list, "çä¿¡æ¨¡æ¿æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åç信模æ¿è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smstemplet:query')") |
| | | @GetMapping(value = "/{templetid}") |
| | | public AjaxResult getInfo(@PathVariable("templetid") Long templetid) |
| | | { |
| | | return success(smsTempletService.selectSmsTempletByTempletid(templetid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡æ¨¡æ¿ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smstemplet:add')") |
| | | @Log(title = "ç信模æ¿", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SmsTemplet smsTemplet) |
| | | { |
| | | return toAjax(smsTempletService.insertSmsTemplet(smsTemplet)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡æ¨¡æ¿ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smstemplet:edit')") |
| | | @Log(title = "ç信模æ¿", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SmsTemplet smsTemplet) |
| | | { |
| | | return toAjax(smsTempletService.updateSmsTemplet(smsTemplet)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤çä¿¡æ¨¡æ¿ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:smstemplet:remove')") |
| | | @Log(title = "ç信模æ¿", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{templetids}") |
| | | public AjaxResult remove(@PathVariable Long[] templetids) |
| | | { |
| | | return toAjax(smsTempletService.deleteSmsTempletByTempletids(templetids)); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; |
| | | |
| | | /** |
| | | * çä¿¡è´¦å·å¯¹è±¡ base_smsaccount |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class BaseSmsaccount extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long smsacountid; |
| | | |
| | | /** æ ç¾åç§° */ |
| | | @Excel(name = " æ ç¾åç§° ") |
| | | private String smsname; |
| | | |
| | | /** å¹³å°è´¦å· */ |
| | | @Excel(name = " å¹³å°è´¦å· ") |
| | | private String account; |
| | | |
| | | /** å¹³å°å¯ç */ |
| | | @Excel(name = " å¹³å°å¯ç ") |
| | | private String password; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** æ¯å¦å¼å¯ */ |
| | | @Excel(name = " æ¯å¦å¼å¯ ") |
| | | private Long isenable; |
| | | |
| | | public void setSmsacountid(Long smsacountid) |
| | | { |
| | | this.smsacountid = smsacountid; |
| | | } |
| | | |
| | | public Long getSmsacountid() |
| | | { |
| | | return smsacountid; |
| | | } |
| | | public void setSmsname(String smsname) |
| | | { |
| | | this.smsname = smsname; |
| | | } |
| | | |
| | | public String getSmsname() |
| | | { |
| | | return smsname; |
| | | } |
| | | public void setAccount(String account) |
| | | { |
| | | this.account = account; |
| | | } |
| | | |
| | | public String getAccount() |
| | | { |
| | | return account; |
| | | } |
| | | public void setPassword(String password) |
| | | { |
| | | this.password = password; |
| | | } |
| | | |
| | | public String getPassword() |
| | | { |
| | | return password; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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 setIsenable(Long isenable) |
| | | { |
| | | this.isenable = isenable; |
| | | } |
| | | |
| | | public Long getIsenable() |
| | | { |
| | | return isenable; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("smsacountid", getSmsacountid()) |
| | | .append("smsname", getSmsname()) |
| | | .append("account", getAccount()) |
| | | .append("password", getPassword()) |
| | | .append("remark", getRemark()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("isenable", getIsenable()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIæå¾åºå¯¹è±¡ ivr_lib_intent |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrLibIntent extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long intentid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** æå¾åç§° */ |
| | | @Excel(name = " æå¾åç§° ") |
| | | private String intentionname; |
| | | |
| | | /** åç±»ID */ |
| | | @Excel(name = " åç±»ID ") |
| | | private Long categoryid; |
| | | |
| | | /** æå¾åç±»åç§° */ |
| | | @Excel(name = " æå¾åç±»åç§° ") |
| | | private String categoryname; |
| | | |
| | | /** æå¾å
³é®åï¼æ£åï¼ */ |
| | | @Excel(name = " æå¾å
³é®å", readConverterExp = "æ£=å") |
| | | private String intentionword; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setIntentid(Long intentid) |
| | | { |
| | | this.intentid = intentid; |
| | | } |
| | | |
| | | public Long getIntentid() |
| | | { |
| | | return intentid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | public void setIntentionname(String intentionname) |
| | | { |
| | | this.intentionname = intentionname; |
| | | } |
| | | |
| | | public String getIntentionname() |
| | | { |
| | | return intentionname; |
| | | } |
| | | public void setCategoryid(Long categoryid) |
| | | { |
| | | this.categoryid = categoryid; |
| | | } |
| | | |
| | | public Long getCategoryid() |
| | | { |
| | | return categoryid; |
| | | } |
| | | public void setCategoryname(String categoryname) |
| | | { |
| | | this.categoryname = categoryname; |
| | | } |
| | | |
| | | public String getCategoryname() |
| | | { |
| | | return categoryname; |
| | | } |
| | | public void setIntentionword(String intentionword) |
| | | { |
| | | this.intentionword = intentionword; |
| | | } |
| | | |
| | | public String getIntentionword() |
| | | { |
| | | return intentionword; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("intentid", getIntentid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("intentionname", getIntentionname()) |
| | | .append("categoryid", getCategoryid()) |
| | | .append("categoryname", getCategoryname()) |
| | | .append("intentionword", getIntentionword()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIæå¾åºå类对象 ivr_lib_intentcategory |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrLibIntentcategory extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long intertcatid; |
| | | |
| | | /** åç±»åç§° */ |
| | | @Excel(name = " åç±»åç§° ") |
| | | private String categoryname; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setIntertcatid(Long intertcatid) |
| | | { |
| | | this.intertcatid = intertcatid; |
| | | } |
| | | |
| | | public Long getIntertcatid() |
| | | { |
| | | return intertcatid; |
| | | } |
| | | public void setCategoryname(String categoryname) |
| | | { |
| | | this.categoryname = categoryname; |
| | | } |
| | | |
| | | public String getCategoryname() |
| | | { |
| | | return categoryname; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("intertcatid", getIntertcatid()) |
| | | .append("categoryname", getCategoryname()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºå¯¹è±¡ ivr_lib_script |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrLibScript extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long scriptid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** åç±» */ |
| | | @Excel(name = " åç±» ") |
| | | private Long categoryid; |
| | | |
| | | /** åç±»åç§° */ |
| | | @Excel(name = " åç±»åç§° ") |
| | | private String categoryname; |
| | | |
| | | /** è¯æ¯å
容ï¼å®æ´ï¼ */ |
| | | @Excel(name = " è¯æ¯å
容", readConverterExp = "å®=æ´") |
| | | private String speakbody; |
| | | |
| | | /** è¯æ¯æä»¶è·¯å¾ï¼å®æ´ï¼ */ |
| | | @Excel(name = " è¯æ¯æä»¶è·¯å¾", readConverterExp = "å®=æ´") |
| | | private String speakfilepath; |
| | | |
| | | /** æ¯å¦å
¨å±ã0å¦1æ¯ã */ |
| | | @Excel(name = " æ¯å¦å
¨å±ã0å¦1æ¯ã ") |
| | | private Long isall; |
| | | |
| | | /** è¯æ¯åç§° */ |
| | | @Excel(name = " è¯æ¯åç§° ") |
| | | private String speakname; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setScriptid(Long scriptid) |
| | | { |
| | | this.scriptid = scriptid; |
| | | } |
| | | |
| | | public Long getScriptid() |
| | | { |
| | | return scriptid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | public void setCategoryid(Long categoryid) |
| | | { |
| | | this.categoryid = categoryid; |
| | | } |
| | | |
| | | public Long getCategoryid() |
| | | { |
| | | return categoryid; |
| | | } |
| | | public void setCategoryname(String categoryname) |
| | | { |
| | | this.categoryname = categoryname; |
| | | } |
| | | |
| | | public String getCategoryname() |
| | | { |
| | | return categoryname; |
| | | } |
| | | public void setSpeakbody(String speakbody) |
| | | { |
| | | this.speakbody = speakbody; |
| | | } |
| | | |
| | | public String getSpeakbody() |
| | | { |
| | | return speakbody; |
| | | } |
| | | public void setSpeakfilepath(String speakfilepath) |
| | | { |
| | | this.speakfilepath = speakfilepath; |
| | | } |
| | | |
| | | public String getSpeakfilepath() |
| | | { |
| | | return speakfilepath; |
| | | } |
| | | public void setIsall(Long isall) |
| | | { |
| | | this.isall = isall; |
| | | } |
| | | |
| | | public Long getIsall() |
| | | { |
| | | return isall; |
| | | } |
| | | public void setSpeakname(String speakname) |
| | | { |
| | | this.speakname = speakname; |
| | | } |
| | | |
| | | public String getSpeakname() |
| | | { |
| | | return speakname; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("scriptid", getScriptid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("categoryid", getCategoryid()) |
| | | .append("categoryname", getCategoryname()) |
| | | .append("speakbody", getSpeakbody()) |
| | | .append("speakfilepath", getSpeakfilepath()) |
| | | .append("isall", getIsall()) |
| | | .append("speakname", getSpeakname()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºå类对象 ivr_lib_scriptcategory |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrLibScriptcategory extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long categoryid; |
| | | |
| | | /** åç±»åç§° */ |
| | | @Excel(name = " åç±»åç§° ") |
| | | private String categoryname; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setCategoryid(Long categoryid) |
| | | { |
| | | this.categoryid = categoryid; |
| | | } |
| | | |
| | | public Long getCategoryid() |
| | | { |
| | | return categoryid; |
| | | } |
| | | public void setCategoryname(String categoryname) |
| | | { |
| | | this.categoryname = categoryname; |
| | | } |
| | | |
| | | public String getCategoryname() |
| | | { |
| | | return categoryname; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("categoryid", getCategoryid()) |
| | | .append("categoryname", getCategoryname()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIè¯æ¯æ¨¡å对象 ivr_lib_scriptmodel |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrLibScriptmodel extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long modelid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** è¯æ¯ID */ |
| | | @Excel(name = " è¯æ¯ID ") |
| | | private Long scriptid; |
| | | |
| | | /** è¯æ¯ç±»åã0:æ®éè¯æ¯ 1:åéè¯æ¯ã */ |
| | | @Excel(name = " è¯æ¯ç±»åã0:æ®éè¯æ¯ 1:åéè¯æ¯ã ") |
| | | private Long speaktype; |
| | | |
| | | /** è¯æ¯å
容 */ |
| | | @Excel(name = " è¯æ¯å
容 ") |
| | | private String speakbody; |
| | | |
| | | /** è¯é³ç±»åã0:ç人å½é³ 1:åæè¯é³ã */ |
| | | @Excel(name = " è¯é³ç±»åã0:ç人å½é³ 1:åæè¯é³ã ") |
| | | private Long voicetype; |
| | | |
| | | /** è¯é³æä»¶ */ |
| | | @Excel(name = " è¯é³æä»¶ ") |
| | | private String speakfilepath; |
| | | |
| | | /** åæåå */ |
| | | @Excel(name = " åæåå ") |
| | | private String manufactor; |
| | | |
| | | /** 声é³ç±»å */ |
| | | @Excel(name = " 声é³ç±»å ") |
| | | private String soundtype; |
| | | |
| | | /** è¯é */ |
| | | @Excel(name = " è¯é ") |
| | | private Long speechnum; |
| | | |
| | | /** é³é« */ |
| | | @Excel(name = " é³é« ") |
| | | private Long pitch; |
| | | |
| | | /** é³é */ |
| | | @Excel(name = " é³é ") |
| | | private Long volume; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** åéè¯æ¯åé */ |
| | | @Excel(name = " åéè¯æ¯åé ") |
| | | private String speakvariable; |
| | | |
| | | public void setModelid(Long modelid) |
| | | { |
| | | this.modelid = modelid; |
| | | } |
| | | |
| | | public Long getModelid() |
| | | { |
| | | return modelid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | public void setScriptid(Long scriptid) |
| | | { |
| | | this.scriptid = scriptid; |
| | | } |
| | | |
| | | public Long getScriptid() |
| | | { |
| | | return scriptid; |
| | | } |
| | | public void setSpeaktype(Long speaktype) |
| | | { |
| | | this.speaktype = speaktype; |
| | | } |
| | | |
| | | public Long getSpeaktype() |
| | | { |
| | | return speaktype; |
| | | } |
| | | public void setSpeakbody(String speakbody) |
| | | { |
| | | this.speakbody = speakbody; |
| | | } |
| | | |
| | | public String getSpeakbody() |
| | | { |
| | | return speakbody; |
| | | } |
| | | public void setVoicetype(Long voicetype) |
| | | { |
| | | this.voicetype = voicetype; |
| | | } |
| | | |
| | | public Long getVoicetype() |
| | | { |
| | | return voicetype; |
| | | } |
| | | public void setSpeakfilepath(String speakfilepath) |
| | | { |
| | | this.speakfilepath = speakfilepath; |
| | | } |
| | | |
| | | public String getSpeakfilepath() |
| | | { |
| | | return speakfilepath; |
| | | } |
| | | public void setManufactor(String manufactor) |
| | | { |
| | | this.manufactor = manufactor; |
| | | } |
| | | |
| | | public String getManufactor() |
| | | { |
| | | return manufactor; |
| | | } |
| | | public void setSoundtype(String soundtype) |
| | | { |
| | | this.soundtype = soundtype; |
| | | } |
| | | |
| | | public String getSoundtype() |
| | | { |
| | | return soundtype; |
| | | } |
| | | public void setSpeechnum(Long speechnum) |
| | | { |
| | | this.speechnum = speechnum; |
| | | } |
| | | |
| | | public Long getSpeechnum() |
| | | { |
| | | return speechnum; |
| | | } |
| | | public void setPitch(Long pitch) |
| | | { |
| | | this.pitch = pitch; |
| | | } |
| | | |
| | | public Long getPitch() |
| | | { |
| | | return pitch; |
| | | } |
| | | public void setVolume(Long volume) |
| | | { |
| | | this.volume = volume; |
| | | } |
| | | |
| | | public Long getVolume() |
| | | { |
| | | return volume; |
| | | } |
| | | 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 setSpeakvariable(String speakvariable) |
| | | { |
| | | this.speakvariable = speakvariable; |
| | | } |
| | | |
| | | public String getSpeakvariable() |
| | | { |
| | | return speakvariable; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("modelid", getModelid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("scriptid", getScriptid()) |
| | | .append("speaktype", getSpeaktype()) |
| | | .append("speakbody", getSpeakbody()) |
| | | .append("voicetype", getVoicetype()) |
| | | .append("speakfilepath", getSpeakfilepath()) |
| | | .append("manufactor", getManufactor()) |
| | | .append("soundtype", getSoundtype()) |
| | | .append("speechnum", getSpeechnum()) |
| | | .append("pitch", getPitch()) |
| | | .append("volume", getVolume()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("speakvariable", getSpeakvariable()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼åºæ¯ç®¡ç对象 ivr_scene |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrScene extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long sceneid; |
| | | |
| | | /** åç±»ID */ |
| | | @Excel(name = " åç±»ID ") |
| | | private String categoryid; |
| | | |
| | | /** åºæ¯åç§° */ |
| | | @Excel(name = " åºæ¯åç§° ") |
| | | private String scenename; |
| | | |
| | | /** çæ¬å· */ |
| | | @Excel(name = " çæ¬å· ") |
| | | private String version; |
| | | |
| | | /** å
³èIDï¼é®å·ï¼ */ |
| | | @Excel(name = " å
³èID", readConverterExp = "é®=å·") |
| | | private Long relationid; |
| | | |
| | | /** åå¸ID;å¤ä¸ªåå¸éå· */ |
| | | @Excel(name = " åå¸ID;å¤ä¸ªåå¸éå· ") |
| | | private String seatsid; |
| | | |
| | | /** åºæ¯ç¼å·;åä¸åºæ¯å¯ä¸ï¼ç¨äºåºåçæ¬ */ |
| | | @Excel(name = " åºæ¯ç¼å·;åä¸åºæ¯å¯ä¸ï¼ç¨äºåºåçæ¬ ") |
| | | private String scenecode; |
| | | |
| | | /** çæ¬æ¯å¦å¯ç¨;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " çæ¬æ¯å¦å¯ç¨;0.å¦ 1.æ¯ ") |
| | | private Long versionenable; |
| | | |
| | | /** æ¯å¦å¯ç¨;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " æ¯å¦å¯ç¨;0.å¦ 1.æ¯ ") |
| | | private Long isenable; |
| | | |
| | | /** æ¯å¦åå¸ */ |
| | | @Excel(name = " æ¯å¦åå¸ ") |
| | | private String isrelease; |
| | | |
| | | /** æé¿æ§è¡å¨æ;0-15æ£æ´æ°ï¼é»è®¤ä¸º5 */ |
| | | @Excel(name = " æé¿æ§è¡å¨æ;0-15æ£æ´æ°ï¼é»è®¤ä¸º5 ") |
| | | private Long executecycle; |
| | | |
| | | /** æ¯å¦å¤æ ¸;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " æ¯å¦å¤æ ¸;0.å¦ 1.æ¯ ") |
| | | private Long isreview; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** åå¸è¯´æ */ |
| | | @Excel(name = " åå¸è¯´æ ") |
| | | private String releasenotes; |
| | | |
| | | /** è稿ID */ |
| | | @Excel(name = " è稿ID ") |
| | | private Long draftid; |
| | | |
| | | public void setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setCategoryid(String categoryid) |
| | | { |
| | | this.categoryid = categoryid; |
| | | } |
| | | |
| | | public String getCategoryid() |
| | | { |
| | | return categoryid; |
| | | } |
| | | public void setScenename(String scenename) |
| | | { |
| | | this.scenename = scenename; |
| | | } |
| | | |
| | | public String getScenename() |
| | | { |
| | | return scenename; |
| | | } |
| | | public void setVersion(String version) |
| | | { |
| | | this.version = version; |
| | | } |
| | | |
| | | public String getVersion() |
| | | { |
| | | return version; |
| | | } |
| | | public void setRelationid(Long relationid) |
| | | { |
| | | this.relationid = relationid; |
| | | } |
| | | |
| | | public Long getRelationid() |
| | | { |
| | | return relationid; |
| | | } |
| | | public void setSeatsid(String seatsid) |
| | | { |
| | | this.seatsid = seatsid; |
| | | } |
| | | |
| | | public String getSeatsid() |
| | | { |
| | | return seatsid; |
| | | } |
| | | public void setScenecode(String scenecode) |
| | | { |
| | | this.scenecode = scenecode; |
| | | } |
| | | |
| | | public String getScenecode() |
| | | { |
| | | return scenecode; |
| | | } |
| | | public void setVersionenable(Long versionenable) |
| | | { |
| | | this.versionenable = versionenable; |
| | | } |
| | | |
| | | public Long getVersionenable() |
| | | { |
| | | return versionenable; |
| | | } |
| | | public void setIsenable(Long isenable) |
| | | { |
| | | this.isenable = isenable; |
| | | } |
| | | |
| | | public Long getIsenable() |
| | | { |
| | | return isenable; |
| | | } |
| | | public void setIsrelease(String isrelease) |
| | | { |
| | | this.isrelease = isrelease; |
| | | } |
| | | |
| | | public String getIsrelease() |
| | | { |
| | | return isrelease; |
| | | } |
| | | public void setExecutecycle(Long executecycle) |
| | | { |
| | | this.executecycle = executecycle; |
| | | } |
| | | |
| | | public Long getExecutecycle() |
| | | { |
| | | return executecycle; |
| | | } |
| | | public void setIsreview(Long isreview) |
| | | { |
| | | this.isreview = isreview; |
| | | } |
| | | |
| | | public Long getIsreview() |
| | | { |
| | | return isreview; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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 setReleasenotes(String releasenotes) |
| | | { |
| | | this.releasenotes = releasenotes; |
| | | } |
| | | |
| | | public String getReleasenotes() |
| | | { |
| | | return releasenotes; |
| | | } |
| | | public void setDraftid(Long draftid) |
| | | { |
| | | this.draftid = draftid; |
| | | } |
| | | |
| | | public Long getDraftid() |
| | | { |
| | | return draftid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("sceneid", getSceneid()) |
| | | .append("categoryid", getCategoryid()) |
| | | .append("scenename", getScenename()) |
| | | .append("version", getVersion()) |
| | | .append("relationid", getRelationid()) |
| | | .append("seatsid", getSeatsid()) |
| | | .append("scenecode", getScenecode()) |
| | | .append("versionenable", getVersionenable()) |
| | | .append("isenable", getIsenable()) |
| | | .append("isrelease", getIsrelease()) |
| | | .append("executecycle", getExecutecycle()) |
| | | .append("isreview", getIsreview()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("releasenotes", getReleasenotes()) |
| | | .append("draftid", getDraftid()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼æ§è¡é
置对象 ivr_scene_executeconfig |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrSceneExecuteconfig extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long scenecfgid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** æ¥æºç±»å;0.å
¨å± 1.主线 */ |
| | | @Excel(name = " æ¥æºç±»å;0.å
¨å± 1.主线 ") |
| | | private Long sourcetype; |
| | | |
| | | /** å
¨å±é
ç½®ID;å
¨å±é
ç½®ID */ |
| | | @Excel(name = " å
¨å±é
ç½®ID;å
¨å±é
ç½®ID ") |
| | | private Long globalid; |
| | | |
| | | /** å¤å¼èç¹ID */ |
| | | @Excel(name = " å¤å¼èç¹ID ") |
| | | private Long flownodebranchid; |
| | | |
| | | /** æ§è¡ç±»å;0.é®å·çæ¡ 1.æ£è
æ ç¾ */ |
| | | @Excel(name = " æ§è¡ç±»å;0.é®å·çæ¡ 1.æ£è
æ ç¾ ") |
| | | private Long executetype; |
| | | |
| | | /** æ§è¡æ¡ä»¶;为é®å·æ¶å¡«é®å·é¢ç®/为æ£è
æ ç¾æ¶ä¸å¡« */ |
| | | @Excel(name = " æ§è¡æ¡ä»¶;为é®å·æ¶å¡«é®å·é¢ç®/为æ£è
æ ç¾æ¶ä¸å¡« ") |
| | | private String executeconditions; |
| | | |
| | | /** æ§è¡ç»æ;åéé¢ä¸»é®/å¤éé¢ä¸»é®/å¡«ç©ºé¢ææ¬/æ ç¾ä¸»é®å¯å¤é/å¤ééå·éå¼ */ |
| | | @Excel(name = " æ§è¡ç»æ;åéé¢ä¸»é®/å¤éé¢ä¸»é®/å¡«ç©ºé¢ææ¬/æ ç¾ä¸»é®å¯å¤é/å¤ééå·éå¼ ") |
| | | private String executeresult; |
| | | |
| | | /** å 餿 è®° */ |
| | | 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 Long sceneid; |
| | | |
| | | /** æ§è¡æ¡ä»¶ä»£ç ;为é®å·æ¶å¡«é®å·é¢ç®Code */ |
| | | @Excel(name = " æ§è¡æ¡ä»¶ä»£ç ;为é®å·æ¶å¡«é®å·é¢ç®Code ") |
| | | private String executeconditionscode; |
| | | |
| | | /** æ§è¡ç»æä»£ç ;åéé¢ä¸»é®/å¤éé¢ä¸»é®çé项Code */ |
| | | @Excel(name = " æ§è¡ç»æä»£ç ;åéé¢ä¸»é®/å¤éé¢ä¸»é®çé项Code ") |
| | | private String executeresultcode; |
| | | |
| | | /** æµç¨èç¹ID */ |
| | | @Excel(name = " æµç¨èç¹ID ") |
| | | private Long flownodeid; |
| | | |
| | | public void setScenecfgid(Long scenecfgid) |
| | | { |
| | | this.scenecfgid = scenecfgid; |
| | | } |
| | | |
| | | public Long getScenecfgid() |
| | | { |
| | | return scenecfgid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | public void setSourcetype(Long sourcetype) |
| | | { |
| | | this.sourcetype = sourcetype; |
| | | } |
| | | |
| | | public Long getSourcetype() |
| | | { |
| | | return sourcetype; |
| | | } |
| | | public void setGlobalid(Long globalid) |
| | | { |
| | | this.globalid = globalid; |
| | | } |
| | | |
| | | public Long getGlobalid() |
| | | { |
| | | return globalid; |
| | | } |
| | | public void setFlownodebranchid(Long flownodebranchid) |
| | | { |
| | | this.flownodebranchid = flownodebranchid; |
| | | } |
| | | |
| | | public Long getFlownodebranchid() |
| | | { |
| | | return flownodebranchid; |
| | | } |
| | | public void setExecutetype(Long executetype) |
| | | { |
| | | this.executetype = executetype; |
| | | } |
| | | |
| | | public Long getExecutetype() |
| | | { |
| | | return executetype; |
| | | } |
| | | public void setExecuteconditions(String executeconditions) |
| | | { |
| | | this.executeconditions = executeconditions; |
| | | } |
| | | |
| | | public String getExecuteconditions() |
| | | { |
| | | return executeconditions; |
| | | } |
| | | public void setExecuteresult(String executeresult) |
| | | { |
| | | this.executeresult = executeresult; |
| | | } |
| | | |
| | | public String getExecuteresult() |
| | | { |
| | | return executeresult; |
| | | } |
| | | 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 setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setExecuteconditionscode(String executeconditionscode) |
| | | { |
| | | this.executeconditionscode = executeconditionscode; |
| | | } |
| | | |
| | | public String getExecuteconditionscode() |
| | | { |
| | | return executeconditionscode; |
| | | } |
| | | public void setExecuteresultcode(String executeresultcode) |
| | | { |
| | | this.executeresultcode = executeresultcode; |
| | | } |
| | | |
| | | public String getExecuteresultcode() |
| | | { |
| | | return executeresultcode; |
| | | } |
| | | public void setFlownodeid(Long flownodeid) |
| | | { |
| | | this.flownodeid = flownodeid; |
| | | } |
| | | |
| | | public Long getFlownodeid() |
| | | { |
| | | return flownodeid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("scenecfgid", getScenecfgid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("sourcetype", getSourcetype()) |
| | | .append("globalid", getGlobalid()) |
| | | .append("flownodebranchid", getFlownodebranchid()) |
| | | .append("executetype", getExecutetype()) |
| | | .append("executeconditions", getExecuteconditions()) |
| | | .append("executeresult", getExecuteresult()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("executeconditionscode", getExecuteconditionscode()) |
| | | .append("executeresultcode", getExecuteresultcode()) |
| | | .append("flownodeid", getFlownodeid()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨å¯¹è±¡ ivr_scene_flow |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrSceneFlow extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long flowid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** AIå¤å¼åºæ¯ID */ |
| | | @Excel(name = " AIå¤å¼åºæ¯ID ") |
| | | private Long sceneid; |
| | | |
| | | /** æµç¨åç§° */ |
| | | @Excel(name = " æµç¨åç§° ") |
| | | private String flowname; |
| | | |
| | | /** å
³èé®å·ID */ |
| | | @Excel(name = " å
³èé®å·ID ") |
| | | private Long relevantqsid; |
| | | |
| | | /** å
³èé¢ç®IDï¼å¤ééå·éå¼ï¼ */ |
| | | @Excel(name = " å
³èé¢ç®ID", readConverterExp = "å¤=ééå·éå¼") |
| | | private String relevanttopicid; |
| | | |
| | | /** å
³èé¢ç®Codeï¼å¤ééå·éå¼;ä¸å
³èé¢ç®IDå¯¹åº */ |
| | | @Excel(name = " å
³èé¢ç®Code", readConverterExp = " å
³èé¢ç®Codeï¼å¤ééå·éå¼;ä¸å
³èé¢ç®IDå¯¹åº ") |
| | | private String relevanttopiccode; |
| | | |
| | | /** æ¯å¦æ ¡éª;0å¦ 1æ¯ */ |
| | | @Excel(name = " æ¯å¦æ ¡éª;0å¦ 1æ¯ ") |
| | | private Long ischeck; |
| | | |
| | | /** æµç¨å¾JSONæ°æ® */ |
| | | @Excel(name = " æµç¨å¾JSONæ°æ® ") |
| | | private String flowdata; |
| | | |
| | | /** åºå· */ |
| | | @Excel(name = " åºå· ") |
| | | private Long sort; |
| | | |
| | | /** èµ·å§èç¹ID */ |
| | | @Excel(name = " èµ·å§èç¹ID ") |
| | | private Long startnode; |
| | | |
| | | /** æ·è´ID */ |
| | | @Excel(name = " æ·è´ID ") |
| | | private Long oldid; |
| | | |
| | | public void setFlowid(Long flowid) |
| | | { |
| | | this.flowid = flowid; |
| | | } |
| | | |
| | | public Long getFlowid() |
| | | { |
| | | return flowid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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 setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setFlowname(String flowname) |
| | | { |
| | | this.flowname = flowname; |
| | | } |
| | | |
| | | public String getFlowname() |
| | | { |
| | | return flowname; |
| | | } |
| | | public void setRelevantqsid(Long relevantqsid) |
| | | { |
| | | this.relevantqsid = relevantqsid; |
| | | } |
| | | |
| | | public Long getRelevantqsid() |
| | | { |
| | | return relevantqsid; |
| | | } |
| | | public void setRelevanttopicid(String relevanttopicid) |
| | | { |
| | | this.relevanttopicid = relevanttopicid; |
| | | } |
| | | |
| | | public String getRelevanttopicid() |
| | | { |
| | | return relevanttopicid; |
| | | } |
| | | public void setRelevanttopiccode(String relevanttopiccode) |
| | | { |
| | | this.relevanttopiccode = relevanttopiccode; |
| | | } |
| | | |
| | | public String getRelevanttopiccode() |
| | | { |
| | | return relevanttopiccode; |
| | | } |
| | | public void setIscheck(Long ischeck) |
| | | { |
| | | this.ischeck = ischeck; |
| | | } |
| | | |
| | | public Long getIscheck() |
| | | { |
| | | return ischeck; |
| | | } |
| | | public void setFlowdata(String flowdata) |
| | | { |
| | | this.flowdata = flowdata; |
| | | } |
| | | |
| | | public String getFlowdata() |
| | | { |
| | | return flowdata; |
| | | } |
| | | public void setSort(Long sort) |
| | | { |
| | | this.sort = sort; |
| | | } |
| | | |
| | | public Long getSort() |
| | | { |
| | | return sort; |
| | | } |
| | | public void setStartnode(Long startnode) |
| | | { |
| | | this.startnode = startnode; |
| | | } |
| | | |
| | | public Long getStartnode() |
| | | { |
| | | return startnode; |
| | | } |
| | | public void setOldid(Long oldid) |
| | | { |
| | | this.oldid = oldid; |
| | | } |
| | | |
| | | public Long getOldid() |
| | | { |
| | | return oldid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("flowid", getFlowid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("flowname", getFlowname()) |
| | | .append("relevantqsid", getRelevantqsid()) |
| | | .append("relevanttopicid", getRelevanttopicid()) |
| | | .append("relevanttopiccode", getRelevanttopiccode()) |
| | | .append("ischeck", getIscheck()) |
| | | .append("flowdata", getFlowdata()) |
| | | .append("sort", getSort()) |
| | | .append("startnode", getStartnode()) |
| | | .append("oldid", getOldid()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹å¯¹è±¡ ivr_scene_flownode |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrSceneFlownode extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long flownodeid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** AIå¤å¼åºæ¯ID */ |
| | | @Excel(name = " AIå¤å¼åºæ¯ID ") |
| | | private Long sceneid; |
| | | |
| | | /** æµç¨ID */ |
| | | @Excel(name = " æµç¨ID ") |
| | | private Long flowid; |
| | | |
| | | /** èç¹ç±»å;0.æ®éèç¹ 1.跳转èç¹ 2.循ç¯èç¹ */ |
| | | @Excel(name = " èç¹ç±»å;0.æ®éèç¹ 1.跳转èç¹ 2.循ç¯èç¹ ") |
| | | private Long nodetype; |
| | | |
| | | /** èç¹åç§° */ |
| | | @Excel(name = " èç¹åç§° ") |
| | | private String nodename; |
| | | |
| | | /** åé¡¿æ¶é¿ï¼msï¼;1ms-1500ms */ |
| | | @Excel(name = " åé¡¿æ¶é¿", readConverterExp = "m=s") |
| | | private Long maxsentencesilence; |
| | | |
| | | /** çå¾
æ¶é¿ï¼sï¼;1s-60s */ |
| | | @Excel(name = " çå¾
æ¶é¿", readConverterExp = "s=") |
| | | private String waittime; |
| | | |
| | | /** è¯æ¯ç±»å;循ç¯èç¹ç¨ 0.åèç¹è¯æ¯ 1.ä½¿ç¨æ°è¯æ¯ */ |
| | | @Excel(name = " è¯æ¯ç±»å;循ç¯èç¹ç¨ 0.åèç¹è¯æ¯ 1.ä½¿ç¨æ°è¯æ¯ ") |
| | | private Long corpustype; |
| | | |
| | | /** æ°è¯æ¯çå¾
æ¶é¿ï¼sï¼;循ç¯èç¹ç¨ */ |
| | | @Excel(name = " æ°è¯æ¯çå¾
æ¶é¿", readConverterExp = "s=") |
| | | private String corpuswaittime; |
| | | |
| | | /** æå¤§é夿¬¡æ°;循ç¯èç¹ç¨ */ |
| | | @Excel(name = " æå¤§é夿¬¡æ°;循ç¯èç¹ç¨ ") |
| | | private Long maxrepetition; |
| | | |
| | | /** 跳转类å;跳转èç¹ç¨ 0.ææº 1.跳转æµç¨ */ |
| | | @Excel(name = " 跳转类å;跳转èç¹ç¨ 0.ææº 1.跳转æµç¨ ") |
| | | private Long jumptype; |
| | | |
| | | /** 跳转è³;跳转èç¹ç¨ ç®åæ¾æµç¨ID */ |
| | | @Excel(name = " 跳转è³;跳转èç¹ç¨ ç®åæ¾æµç¨ID ") |
| | | private String jumpto; |
| | | |
| | | /** æµç¨å¾çæID */ |
| | | @Excel(name = " æµç¨å¾çæID ") |
| | | private String flowcode; |
| | | |
| | | /** è·³è½¬ç®æ èç¹ID */ |
| | | @Excel(name = " è·³è½¬ç®æ èç¹ID ") |
| | | private Long targetid; |
| | | |
| | | /** æ·è´ID */ |
| | | @Excel(name = " æ·è´ID ") |
| | | private Long oldid; |
| | | |
| | | public void setFlownodeid(Long flownodeid) |
| | | { |
| | | this.flownodeid = flownodeid; |
| | | } |
| | | |
| | | public Long getFlownodeid() |
| | | { |
| | | return flownodeid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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 setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setFlowid(Long flowid) |
| | | { |
| | | this.flowid = flowid; |
| | | } |
| | | |
| | | public Long getFlowid() |
| | | { |
| | | return flowid; |
| | | } |
| | | public void setNodetype(Long nodetype) |
| | | { |
| | | this.nodetype = nodetype; |
| | | } |
| | | |
| | | public Long getNodetype() |
| | | { |
| | | return nodetype; |
| | | } |
| | | public void setNodename(String nodename) |
| | | { |
| | | this.nodename = nodename; |
| | | } |
| | | |
| | | public String getNodename() |
| | | { |
| | | return nodename; |
| | | } |
| | | public void setMaxsentencesilence(Long maxsentencesilence) |
| | | { |
| | | this.maxsentencesilence = maxsentencesilence; |
| | | } |
| | | |
| | | public Long getMaxsentencesilence() |
| | | { |
| | | return maxsentencesilence; |
| | | } |
| | | public void setWaittime(String waittime) |
| | | { |
| | | this.waittime = waittime; |
| | | } |
| | | |
| | | public String getWaittime() |
| | | { |
| | | return waittime; |
| | | } |
| | | public void setCorpustype(Long corpustype) |
| | | { |
| | | this.corpustype = corpustype; |
| | | } |
| | | |
| | | public Long getCorpustype() |
| | | { |
| | | return corpustype; |
| | | } |
| | | public void setCorpuswaittime(String corpuswaittime) |
| | | { |
| | | this.corpuswaittime = corpuswaittime; |
| | | } |
| | | |
| | | public String getCorpuswaittime() |
| | | { |
| | | return corpuswaittime; |
| | | } |
| | | public void setMaxrepetition(Long maxrepetition) |
| | | { |
| | | this.maxrepetition = maxrepetition; |
| | | } |
| | | |
| | | public Long getMaxrepetition() |
| | | { |
| | | return maxrepetition; |
| | | } |
| | | public void setJumptype(Long jumptype) |
| | | { |
| | | this.jumptype = jumptype; |
| | | } |
| | | |
| | | public Long getJumptype() |
| | | { |
| | | return jumptype; |
| | | } |
| | | public void setJumpto(String jumpto) |
| | | { |
| | | this.jumpto = jumpto; |
| | | } |
| | | |
| | | public String getJumpto() |
| | | { |
| | | return jumpto; |
| | | } |
| | | public void setFlowcode(String flowcode) |
| | | { |
| | | this.flowcode = flowcode; |
| | | } |
| | | |
| | | public String getFlowcode() |
| | | { |
| | | return flowcode; |
| | | } |
| | | public void setTargetid(Long targetid) |
| | | { |
| | | this.targetid = targetid; |
| | | } |
| | | |
| | | public Long getTargetid() |
| | | { |
| | | return targetid; |
| | | } |
| | | public void setOldid(Long oldid) |
| | | { |
| | | this.oldid = oldid; |
| | | } |
| | | |
| | | public Long getOldid() |
| | | { |
| | | return oldid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("flownodeid", getFlownodeid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("flowid", getFlowid()) |
| | | .append("nodetype", getNodetype()) |
| | | .append("nodename", getNodename()) |
| | | .append("maxsentencesilence", getMaxsentencesilence()) |
| | | .append("waittime", getWaittime()) |
| | | .append("corpustype", getCorpustype()) |
| | | .append("corpuswaittime", getCorpuswaittime()) |
| | | .append("maxrepetition", getMaxrepetition()) |
| | | .append("jumptype", getJumptype()) |
| | | .append("jumpto", getJumpto()) |
| | | .append("flowcode", getFlowcode()) |
| | | .append("targetid", getTargetid()) |
| | | .append("oldid", getOldid()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹åæ¯å¯¹è±¡ ivr_scene_flownodebranch |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrSceneFlownodebranch extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long branchid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** AIå¤å¼åºæ¯ID */ |
| | | @Excel(name = " AIå¤å¼åºæ¯ID ") |
| | | private Long sceneid; |
| | | |
| | | /** æµç¨ID */ |
| | | @Excel(name = " æµç¨ID ") |
| | | private Long flowid; |
| | | |
| | | /** èç¹ID */ |
| | | @Excel(name = " èç¹ID ") |
| | | private Long flownodeid; |
| | | |
| | | /** 忝åç§° */ |
| | | @Excel(name = " 忝åç§° ") |
| | | private String branchname; |
| | | |
| | | /** æ¯å¦å¯ç¨;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " æ¯å¦å¯ç¨;0.å¦ 1.æ¯ ") |
| | | private Long isenable; |
| | | |
| | | /** æåº */ |
| | | @Excel(name = " æåº ") |
| | | private Long sort; |
| | | |
| | | /** åæ¯ç±»å;1 ä»»ä½åå¤ï¼2æ åå¤ï¼3æªè¯å« 9.æ®é忝 */ |
| | | @Excel(name = " åæ¯ç±»å;1 ä»»ä½åå¤ï¼2æ åå¤ï¼3æªè¯å« 9.æ®é忝 ") |
| | | private Long nodetype; |
| | | |
| | | /** è·³è½¬ç®æ èç¹ID */ |
| | | @Excel(name = " è·³è½¬ç®æ èç¹ID ") |
| | | private Long targetid; |
| | | |
| | | /** æ·è´ID */ |
| | | @Excel(name = " æ·è´ID ") |
| | | private Long oldid; |
| | | |
| | | public void setBranchid(Long branchid) |
| | | { |
| | | this.branchid = branchid; |
| | | } |
| | | |
| | | public Long getBranchid() |
| | | { |
| | | return branchid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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 setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setFlowid(Long flowid) |
| | | { |
| | | this.flowid = flowid; |
| | | } |
| | | |
| | | public Long getFlowid() |
| | | { |
| | | return flowid; |
| | | } |
| | | public void setFlownodeid(Long flownodeid) |
| | | { |
| | | this.flownodeid = flownodeid; |
| | | } |
| | | |
| | | public Long getFlownodeid() |
| | | { |
| | | return flownodeid; |
| | | } |
| | | public void setBranchname(String branchname) |
| | | { |
| | | this.branchname = branchname; |
| | | } |
| | | |
| | | public String getBranchname() |
| | | { |
| | | return branchname; |
| | | } |
| | | public void setIsenable(Long isenable) |
| | | { |
| | | this.isenable = isenable; |
| | | } |
| | | |
| | | public Long getIsenable() |
| | | { |
| | | return isenable; |
| | | } |
| | | public void setSort(Long sort) |
| | | { |
| | | this.sort = sort; |
| | | } |
| | | |
| | | public Long getSort() |
| | | { |
| | | return sort; |
| | | } |
| | | public void setNodetype(Long nodetype) |
| | | { |
| | | this.nodetype = nodetype; |
| | | } |
| | | |
| | | public Long getNodetype() |
| | | { |
| | | return nodetype; |
| | | } |
| | | public void setTargetid(Long targetid) |
| | | { |
| | | this.targetid = targetid; |
| | | } |
| | | |
| | | public Long getTargetid() |
| | | { |
| | | return targetid; |
| | | } |
| | | public void setOldid(Long oldid) |
| | | { |
| | | this.oldid = oldid; |
| | | } |
| | | |
| | | public Long getOldid() |
| | | { |
| | | return oldid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("branchid", getBranchid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("flowid", getFlowid()) |
| | | .append("flownodeid", getFlownodeid()) |
| | | .append("branchname", getBranchname()) |
| | | .append("isenable", getIsenable()) |
| | | .append("sort", getSort()) |
| | | .append("nodetype", getNodetype()) |
| | | .append("targetid", getTargetid()) |
| | | .append("oldid", getOldid()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼å
¨å±é
置对象 ivr_scene_globalconfig |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrSceneGlobalconfig extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long gblconfigid; |
| | | |
| | | /** AIå¤å¼åºæ¯ID */ |
| | | @Excel(name = " AIå¤å¼åºæ¯ID ") |
| | | private Long sceneid; |
| | | |
| | | /** é
ç½®åç§° */ |
| | | @Excel(name = " é
ç½®åç§° ") |
| | | private String configname; |
| | | |
| | | /** é
ç½®æè¿° */ |
| | | @Excel(name = " é
ç½®æè¿° ") |
| | | private String description; |
| | | |
| | | /** ä¼å
级 */ |
| | | @Excel(name = " ä¼å
级 ") |
| | | private Long sort; |
| | | |
| | | /** ä¼å
æ§è¡ç±»å;1.忝å¨ä½ 2.é
ç½®å¨ä½ */ |
| | | @Excel(name = " ä¼å
æ§è¡ç±»å;1.忝å¨ä½ 2.é
ç½®å¨ä½ ") |
| | | private Long executetype; |
| | | |
| | | /** æ¯å¦å¯ç¨;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " æ¯å¦å¯ç¨;0.å¦ 1.æ¯ ") |
| | | private Long isenable; |
| | | |
| | | /** 跳转类å;0.ææº 1.éå¤èç¹ */ |
| | | @Excel(name = " 跳转类å;0.ææº 1.éå¤èç¹ ") |
| | | private Long jumpto; |
| | | |
| | | /** é夿¬¡æ° */ |
| | | @Excel(name = " é夿¬¡æ° ") |
| | | private Long repeatcount; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setGblconfigid(Long gblconfigid) |
| | | { |
| | | this.gblconfigid = gblconfigid; |
| | | } |
| | | |
| | | public Long getGblconfigid() |
| | | { |
| | | return gblconfigid; |
| | | } |
| | | public void setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setConfigname(String configname) |
| | | { |
| | | this.configname = configname; |
| | | } |
| | | |
| | | public String getConfigname() |
| | | { |
| | | return configname; |
| | | } |
| | | public void setDescription(String description) |
| | | { |
| | | this.description = description; |
| | | } |
| | | |
| | | public String getDescription() |
| | | { |
| | | return description; |
| | | } |
| | | public void setSort(Long sort) |
| | | { |
| | | this.sort = sort; |
| | | } |
| | | |
| | | public Long getSort() |
| | | { |
| | | return sort; |
| | | } |
| | | public void setExecutetype(Long executetype) |
| | | { |
| | | this.executetype = executetype; |
| | | } |
| | | |
| | | public Long getExecutetype() |
| | | { |
| | | return executetype; |
| | | } |
| | | public void setIsenable(Long isenable) |
| | | { |
| | | this.isenable = isenable; |
| | | } |
| | | |
| | | public Long getIsenable() |
| | | { |
| | | return isenable; |
| | | } |
| | | public void setJumpto(Long jumpto) |
| | | { |
| | | this.jumpto = jumpto; |
| | | } |
| | | |
| | | public Long getJumpto() |
| | | { |
| | | return jumpto; |
| | | } |
| | | public void setRepeatcount(Long repeatcount) |
| | | { |
| | | this.repeatcount = repeatcount; |
| | | } |
| | | |
| | | public Long getRepeatcount() |
| | | { |
| | | return repeatcount; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("gblconfigid", getGblconfigid()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("configname", getConfigname()) |
| | | .append("description", getDescription()) |
| | | .append("sort", getSort()) |
| | | .append("executetype", getExecutetype()) |
| | | .append("isenable", getIsenable()) |
| | | .append("jumpto", getJumpto()) |
| | | .append("repeatcount", getRepeatcount()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼æå¾å¯¹è±¡ ivr_scene_intent |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrSceneIntent extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long sceneintentid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** æ¥æºç±»å;0.å
¨å± 1.主线 */ |
| | | @Excel(name = " æ¥æºç±»å;0.å
¨å± 1.主线 ") |
| | | private Long sourcetype; |
| | | |
| | | /** å
¨å±é
ç½®ID;å
¨å±é
ç½®ID */ |
| | | @Excel(name = " å
¨å±é
ç½®ID;å
¨å±é
ç½®ID ") |
| | | private Long gbiconfigid; |
| | | |
| | | /** åºæ¯ID */ |
| | | @Excel(name = " åºæ¯ID ") |
| | | private Long sceneid; |
| | | |
| | | /** æµç¨ID */ |
| | | @Excel(name = " æµç¨ID ") |
| | | private Long flowid; |
| | | |
| | | /** æµç¨èç¹ID */ |
| | | @Excel(name = " æµç¨èç¹ID ") |
| | | private Long flownodeid; |
| | | |
| | | /** æµç¨èç¹åæ¯ID */ |
| | | @Excel(name = " æµç¨èç¹åæ¯ID ") |
| | | private Long flownodebranchid; |
| | | |
| | | /** å¼ç¨æå¾æ¨¡æ¿ID */ |
| | | @Excel(name = " å¼ç¨æå¾æ¨¡æ¿ID ") |
| | | private Long templateid; |
| | | |
| | | /** æå¾åç§° */ |
| | | @Excel(name = " æå¾åç§° ") |
| | | private String intentionname; |
| | | |
| | | /** æå¾å
³é®åï¼æ£åï¼ */ |
| | | @Excel(name = " æå¾å
³é®å", readConverterExp = "æ£=å") |
| | | private String intentionword; |
| | | |
| | | /** æ¡ä»¶ç±»å;0.æå¾è¯å« 1.æ£è
æ ç¾ */ |
| | | @Excel(name = " æ¡ä»¶ç±»å;0.æå¾è¯å« 1.æ£è
æ ç¾ ") |
| | | private Long conditionstype; |
| | | |
| | | /** éªè¯è§å;å¤ééå·éå¼ï¼1ã2ã3ï¼ï¼ç¸åºç±»åçä¸»é® */ |
| | | @Excel(name = " éªè¯è§å;å¤ééå·éå¼", readConverterExp = "1=ã2ã3") |
| | | private String verifyrule; |
| | | |
| | | /** å䏿;0.æ 1.ä¸ */ |
| | | @Excel(name = " å䏿;0.æ 1.ä¸ ") |
| | | private Long orand; |
| | | |
| | | /** ç¶æ¡ä»¶ */ |
| | | @Excel(name = " ç¶æ¡ä»¶ ") |
| | | private String parentresultconditionsid; |
| | | |
| | | /** ç¶çº§åç» */ |
| | | @Excel(name = " ç¶çº§åç» ") |
| | | private Long groupnumber; |
| | | |
| | | /** ç¶ä¸æ */ |
| | | @Excel(name = " ç¶ä¸æ ") |
| | | private Long grouporand; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setSceneintentid(Long sceneintentid) |
| | | { |
| | | this.sceneintentid = sceneintentid; |
| | | } |
| | | |
| | | public Long getSceneintentid() |
| | | { |
| | | return sceneintentid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | public void setSourcetype(Long sourcetype) |
| | | { |
| | | this.sourcetype = sourcetype; |
| | | } |
| | | |
| | | public Long getSourcetype() |
| | | { |
| | | return sourcetype; |
| | | } |
| | | public void setGbiconfigid(Long gbiconfigid) |
| | | { |
| | | this.gbiconfigid = gbiconfigid; |
| | | } |
| | | |
| | | public Long getGbiconfigid() |
| | | { |
| | | return gbiconfigid; |
| | | } |
| | | public void setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setFlowid(Long flowid) |
| | | { |
| | | this.flowid = flowid; |
| | | } |
| | | |
| | | public Long getFlowid() |
| | | { |
| | | return flowid; |
| | | } |
| | | public void setFlownodeid(Long flownodeid) |
| | | { |
| | | this.flownodeid = flownodeid; |
| | | } |
| | | |
| | | public Long getFlownodeid() |
| | | { |
| | | return flownodeid; |
| | | } |
| | | public void setFlownodebranchid(Long flownodebranchid) |
| | | { |
| | | this.flownodebranchid = flownodebranchid; |
| | | } |
| | | |
| | | public Long getFlownodebranchid() |
| | | { |
| | | return flownodebranchid; |
| | | } |
| | | public void setTemplateid(Long templateid) |
| | | { |
| | | this.templateid = templateid; |
| | | } |
| | | |
| | | public Long getTemplateid() |
| | | { |
| | | return templateid; |
| | | } |
| | | public void setIntentionname(String intentionname) |
| | | { |
| | | this.intentionname = intentionname; |
| | | } |
| | | |
| | | public String getIntentionname() |
| | | { |
| | | return intentionname; |
| | | } |
| | | public void setIntentionword(String intentionword) |
| | | { |
| | | this.intentionword = intentionword; |
| | | } |
| | | |
| | | public String getIntentionword() |
| | | { |
| | | return intentionword; |
| | | } |
| | | public void setConditionstype(Long conditionstype) |
| | | { |
| | | this.conditionstype = conditionstype; |
| | | } |
| | | |
| | | public Long getConditionstype() |
| | | { |
| | | return conditionstype; |
| | | } |
| | | public void setVerifyrule(String verifyrule) |
| | | { |
| | | this.verifyrule = verifyrule; |
| | | } |
| | | |
| | | public String getVerifyrule() |
| | | { |
| | | return verifyrule; |
| | | } |
| | | public void setOrand(Long orand) |
| | | { |
| | | this.orand = orand; |
| | | } |
| | | |
| | | public Long getOrand() |
| | | { |
| | | return orand; |
| | | } |
| | | public void setParentresultconditionsid(String parentresultconditionsid) |
| | | { |
| | | this.parentresultconditionsid = parentresultconditionsid; |
| | | } |
| | | |
| | | public String getParentresultconditionsid() |
| | | { |
| | | return parentresultconditionsid; |
| | | } |
| | | public void setGroupnumber(Long groupnumber) |
| | | { |
| | | this.groupnumber = groupnumber; |
| | | } |
| | | |
| | | public Long getGroupnumber() |
| | | { |
| | | return groupnumber; |
| | | } |
| | | public void setGrouporand(Long grouporand) |
| | | { |
| | | this.grouporand = grouporand; |
| | | } |
| | | |
| | | public Long getGrouporand() |
| | | { |
| | | return grouporand; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("sceneintentid", getSceneintentid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("sourcetype", getSourcetype()) |
| | | .append("gbiconfigid", getGbiconfigid()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("flowid", getFlowid()) |
| | | .append("flownodeid", getFlownodeid()) |
| | | .append("flownodebranchid", getFlownodebranchid()) |
| | | .append("templateid", getTemplateid()) |
| | | .append("intentionname", getIntentionname()) |
| | | .append("intentionword", getIntentionword()) |
| | | .append("conditionstype", getConditionstype()) |
| | | .append("verifyrule", getVerifyrule()) |
| | | .append("orand", getOrand()) |
| | | .append("parentresultconditionsid", getParentresultconditionsid()) |
| | | .append("groupnumber", getGroupnumber()) |
| | | .append("grouporand", getGrouporand()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼éæ¨é
置对象 ivr_scene_recall |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrSceneRecall extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long recallid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** åºæ¯ID */ |
| | | @Excel(name = " åºæ¯ID ") |
| | | private Long sceneid; |
| | | |
| | | /** 鿍æ
æ¯ç±»å;0.任塿§è¡å¤±è´¥ 1.æªæ¥é 2.æ 人æ¥å¬ 3.æ£è
æç» 4.æ¥éæ åºç å¤é éå·éå¼ */ |
| | | @Excel(name = " 鿍æ
æ¯ç±»å;0.任塿§è¡å¤±è´¥ 1.æªæ¥é 2.æ 人æ¥å¬ 3.æ£è
æç» 4.æ¥éæ åºç å¤é éå·éå¼ ") |
| | | private String recalltype; |
| | | |
| | | /** æ¬¡æ° */ |
| | | @Excel(name = " æ¬¡æ° ") |
| | | private Long recallcount; |
| | | |
| | | /** 鿍é´é */ |
| | | @Excel(name = " 鿍é´é ") |
| | | private Long recallinterval; |
| | | |
| | | /** 鿍æ¶é´åä½;0.åé 1.ç§ 2.å°æ¶ */ |
| | | @Excel(name = " 鿍æ¶é´åä½;0.åé 1.ç§ 2.å°æ¶ ") |
| | | private Long recallunit; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setRecallid(Long recallid) |
| | | { |
| | | this.recallid = recallid; |
| | | } |
| | | |
| | | public Long getRecallid() |
| | | { |
| | | return recallid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | public void setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setRecalltype(String recalltype) |
| | | { |
| | | this.recalltype = recalltype; |
| | | } |
| | | |
| | | public String getRecalltype() |
| | | { |
| | | return recalltype; |
| | | } |
| | | public void setRecallcount(Long recallcount) |
| | | { |
| | | this.recallcount = recallcount; |
| | | } |
| | | |
| | | public Long getRecallcount() |
| | | { |
| | | return recallcount; |
| | | } |
| | | public void setRecallinterval(Long recallinterval) |
| | | { |
| | | this.recallinterval = recallinterval; |
| | | } |
| | | |
| | | public Long getRecallinterval() |
| | | { |
| | | return recallinterval; |
| | | } |
| | | public void setRecallunit(Long recallunit) |
| | | { |
| | | this.recallunit = recallunit; |
| | | } |
| | | |
| | | public Long getRecallunit() |
| | | { |
| | | return recallunit; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("recallid", getRecallid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("recalltype", getRecalltype()) |
| | | .append("recallcount", getRecallcount()) |
| | | .append("recallinterval", getRecallinterval()) |
| | | .append("recallunit", getRecallunit()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯å¯¹è±¡ ivr_scene_script |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrSceneScript extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long scenescrid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** æ¥æºç±»å;0.å
¨å± 1.主线 */ |
| | | @Excel(name = " æ¥æºç±»å;0.å
¨å± 1.主线 ") |
| | | private Long sourcetype; |
| | | |
| | | /** å
¨å±é
ç½®ID;å
¨å±é
ç½®ID */ |
| | | @Excel(name = " å
¨å±é
ç½®ID;å
¨å±é
ç½®ID ") |
| | | private Long globalid; |
| | | |
| | | /** åºæ¯id */ |
| | | @Excel(name = " åºæ¯id ") |
| | | private Long sceneid; |
| | | |
| | | /** æµç¨ID */ |
| | | @Excel(name = " æµç¨ID ") |
| | | private Long flowid; |
| | | |
| | | /** æµç¨èç¹ID */ |
| | | @Excel(name = " æµç¨èç¹ID ") |
| | | private Long flownodeid; |
| | | |
| | | /** å¼ç¨è¯æ¯æ¨¡æ¿ID */ |
| | | @Excel(name = " å¼ç¨è¯æ¯æ¨¡æ¿ID ") |
| | | private Long templateid; |
| | | |
| | | /** è¯æ¯å
容ï¼å®æ´ï¼ */ |
| | | @Excel(name = " è¯æ¯å
容", readConverterExp = "å®=æ´") |
| | | private String speakbody; |
| | | |
| | | /** è¯æ¯æä»¶è·¯å¾ï¼å®æ´ï¼ */ |
| | | @Excel(name = " è¯æ¯æä»¶è·¯å¾", readConverterExp = "å®=æ´") |
| | | private String speakfilepath; |
| | | |
| | | /** è¯æ¯åç§° */ |
| | | @Excel(name = " è¯æ¯åç§° ") |
| | | private String speakname; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setScenescrid(Long scenescrid) |
| | | { |
| | | this.scenescrid = scenescrid; |
| | | } |
| | | |
| | | public Long getScenescrid() |
| | | { |
| | | return scenescrid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | public void setSourcetype(Long sourcetype) |
| | | { |
| | | this.sourcetype = sourcetype; |
| | | } |
| | | |
| | | public Long getSourcetype() |
| | | { |
| | | return sourcetype; |
| | | } |
| | | public void setGlobalid(Long globalid) |
| | | { |
| | | this.globalid = globalid; |
| | | } |
| | | |
| | | public Long getGlobalid() |
| | | { |
| | | return globalid; |
| | | } |
| | | public void setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setFlowid(Long flowid) |
| | | { |
| | | this.flowid = flowid; |
| | | } |
| | | |
| | | public Long getFlowid() |
| | | { |
| | | return flowid; |
| | | } |
| | | public void setFlownodeid(Long flownodeid) |
| | | { |
| | | this.flownodeid = flownodeid; |
| | | } |
| | | |
| | | public Long getFlownodeid() |
| | | { |
| | | return flownodeid; |
| | | } |
| | | public void setTemplateid(Long templateid) |
| | | { |
| | | this.templateid = templateid; |
| | | } |
| | | |
| | | public Long getTemplateid() |
| | | { |
| | | return templateid; |
| | | } |
| | | public void setSpeakbody(String speakbody) |
| | | { |
| | | this.speakbody = speakbody; |
| | | } |
| | | |
| | | public String getSpeakbody() |
| | | { |
| | | return speakbody; |
| | | } |
| | | public void setSpeakfilepath(String speakfilepath) |
| | | { |
| | | this.speakfilepath = speakfilepath; |
| | | } |
| | | |
| | | public String getSpeakfilepath() |
| | | { |
| | | return speakfilepath; |
| | | } |
| | | public void setSpeakname(String speakname) |
| | | { |
| | | this.speakname = speakname; |
| | | } |
| | | |
| | | public String getSpeakname() |
| | | { |
| | | return speakname; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("scenescrid", getScenescrid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("sourcetype", getSourcetype()) |
| | | .append("globalid", getGlobalid()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("flowid", getFlowid()) |
| | | .append("flownodeid", getFlownodeid()) |
| | | .append("templateid", getTemplateid()) |
| | | .append("speakbody", getSpeakbody()) |
| | | .append("speakfilepath", getSpeakfilepath()) |
| | | .append("speakname", getSpeakname()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯æ¨¡å对象 ivr_scene_scriptmodel |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrSceneScriptmodel extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long scenemodid; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** è¯æ¯ID */ |
| | | @Excel(name = " è¯æ¯ID ") |
| | | private Long scenescrid; |
| | | |
| | | /** è¯æ¯ç±»åã0:æ®éè¯æ¯ 1:åéè¯æ¯ã */ |
| | | @Excel(name = " è¯æ¯ç±»åã0:æ®éè¯æ¯ 1:åéè¯æ¯ã ") |
| | | private Long speaktype; |
| | | |
| | | /** è¯æ¯å
容 */ |
| | | @Excel(name = " è¯æ¯å
容 ") |
| | | private String speakbody; |
| | | |
| | | /** è¯é³ç±»åã0:ç人å½é³ 1:åæè¯é³ã */ |
| | | @Excel(name = " è¯é³ç±»åã0:ç人å½é³ 1:åæè¯é³ã ") |
| | | private Long voicetype; |
| | | |
| | | /** è¯é³æä»¶ */ |
| | | @Excel(name = " è¯é³æä»¶ ") |
| | | private String speakfilepath; |
| | | |
| | | /** åæåå */ |
| | | @Excel(name = " åæåå ") |
| | | private String manufactor; |
| | | |
| | | /** 声é³ç±»å */ |
| | | @Excel(name = " 声é³ç±»å ") |
| | | private String soundtype; |
| | | |
| | | /** è¯é */ |
| | | @Excel(name = " è¯é ") |
| | | private Long speechnum; |
| | | |
| | | /** é³é« */ |
| | | @Excel(name = " é³é« ") |
| | | private Long pitch; |
| | | |
| | | /** é³é */ |
| | | @Excel(name = " é³é ") |
| | | private Long volume; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | /** åéè¯æ¯åé */ |
| | | @Excel(name = " åéè¯æ¯åé ") |
| | | private String speakvariable; |
| | | |
| | | /** åºæ¯ID */ |
| | | @Excel(name = " åºæ¯ID ") |
| | | private Long sceneid; |
| | | |
| | | public void setScenemodid(Long scenemodid) |
| | | { |
| | | this.scenemodid = scenemodid; |
| | | } |
| | | |
| | | public Long getScenemodid() |
| | | { |
| | | return scenemodid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | public void setScenescrid(Long scenescrid) |
| | | { |
| | | this.scenescrid = scenescrid; |
| | | } |
| | | |
| | | public Long getScenescrid() |
| | | { |
| | | return scenescrid; |
| | | } |
| | | public void setSpeaktype(Long speaktype) |
| | | { |
| | | this.speaktype = speaktype; |
| | | } |
| | | |
| | | public Long getSpeaktype() |
| | | { |
| | | return speaktype; |
| | | } |
| | | public void setSpeakbody(String speakbody) |
| | | { |
| | | this.speakbody = speakbody; |
| | | } |
| | | |
| | | public String getSpeakbody() |
| | | { |
| | | return speakbody; |
| | | } |
| | | public void setVoicetype(Long voicetype) |
| | | { |
| | | this.voicetype = voicetype; |
| | | } |
| | | |
| | | public Long getVoicetype() |
| | | { |
| | | return voicetype; |
| | | } |
| | | public void setSpeakfilepath(String speakfilepath) |
| | | { |
| | | this.speakfilepath = speakfilepath; |
| | | } |
| | | |
| | | public String getSpeakfilepath() |
| | | { |
| | | return speakfilepath; |
| | | } |
| | | public void setManufactor(String manufactor) |
| | | { |
| | | this.manufactor = manufactor; |
| | | } |
| | | |
| | | public String getManufactor() |
| | | { |
| | | return manufactor; |
| | | } |
| | | public void setSoundtype(String soundtype) |
| | | { |
| | | this.soundtype = soundtype; |
| | | } |
| | | |
| | | public String getSoundtype() |
| | | { |
| | | return soundtype; |
| | | } |
| | | public void setSpeechnum(Long speechnum) |
| | | { |
| | | this.speechnum = speechnum; |
| | | } |
| | | |
| | | public Long getSpeechnum() |
| | | { |
| | | return speechnum; |
| | | } |
| | | public void setPitch(Long pitch) |
| | | { |
| | | this.pitch = pitch; |
| | | } |
| | | |
| | | public Long getPitch() |
| | | { |
| | | return pitch; |
| | | } |
| | | public void setVolume(Long volume) |
| | | { |
| | | this.volume = volume; |
| | | } |
| | | |
| | | public Long getVolume() |
| | | { |
| | | return volume; |
| | | } |
| | | 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 setSpeakvariable(String speakvariable) |
| | | { |
| | | this.speakvariable = speakvariable; |
| | | } |
| | | |
| | | public String getSpeakvariable() |
| | | { |
| | | return speakvariable; |
| | | } |
| | | public void setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("scenemodid", getScenemodid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("scenescrid", getScenescrid()) |
| | | .append("speaktype", getSpeaktype()) |
| | | .append("speakbody", getSpeakbody()) |
| | | .append("voicetype", getVoicetype()) |
| | | .append("speakfilepath", getSpeakfilepath()) |
| | | .append("manufactor", getManufactor()) |
| | | .append("soundtype", getSoundtype()) |
| | | .append("speechnum", getSpeechnum()) |
| | | .append("pitch", getPitch()) |
| | | .append("volume", getVolume()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("speakvariable", getSpeakvariable()) |
| | | .append("sceneid", getSceneid()) |
| | | .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; |
| | | |
| | | /** |
| | | * AIæå¡åºæ¯ç®¡çå类对象 ivr_scenecategory |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class IvrScenecategory extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long scenecatid; |
| | | |
| | | /** åç±»åç§° */ |
| | | @Excel(name = " åç±»åç§° ") |
| | | private String categoryname; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | @Excel(name = " ä¸ä¼ æ è®° ") |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ä¸ä¼ æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setScenecatid(Long scenecatid) |
| | | { |
| | | this.scenecatid = scenecatid; |
| | | } |
| | | |
| | | public Long getScenecatid() |
| | | { |
| | | return scenecatid; |
| | | } |
| | | public void setCategoryname(String categoryname) |
| | | { |
| | | this.categoryname = categoryname; |
| | | } |
| | | |
| | | public String getCategoryname() |
| | | { |
| | | return categoryname; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("scenecatid", getScenecatid()) |
| | | .append("categoryname", getCategoryname()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * çä¿¡åæ°å¯¹è±¡ sms_param |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class SmsParam extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private Long paramid; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String paramname; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String paramval; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String descirbe; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long usestatus; |
| | | |
| | | /** $column.columnComment */ |
| | | private String delFlag; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isupload; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date uploadTime; |
| | | |
| | | public void setParamid(Long paramid) |
| | | { |
| | | this.paramid = paramid; |
| | | } |
| | | |
| | | public Long getParamid() |
| | | { |
| | | return paramid; |
| | | } |
| | | public void setParamname(String paramname) |
| | | { |
| | | this.paramname = paramname; |
| | | } |
| | | |
| | | public String getParamname() |
| | | { |
| | | return paramname; |
| | | } |
| | | public void setParamval(String paramval) |
| | | { |
| | | this.paramval = paramval; |
| | | } |
| | | |
| | | public String getParamval() |
| | | { |
| | | return paramval; |
| | | } |
| | | public void setDescirbe(String descirbe) |
| | | { |
| | | this.descirbe = descirbe; |
| | | } |
| | | |
| | | public String getDescirbe() |
| | | { |
| | | return descirbe; |
| | | } |
| | | public void setUsestatus(Long usestatus) |
| | | { |
| | | this.usestatus = usestatus; |
| | | } |
| | | |
| | | public Long getUsestatus() |
| | | { |
| | | return usestatus; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("paramid", getParamid()) |
| | | .append("paramname", getParamname()) |
| | | .append("paramval", getParamval()) |
| | | .append("descirbe", getDescirbe()) |
| | | .append("usestatus", getUsestatus()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * çä¿¡è®°å½å¯¹è±¡ sms_records |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class SmsRecords extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private Long recordid; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String userid; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String username; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String phone; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String msgno; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String msg; |
| | | |
| | | /** */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date inserttime; |
| | | |
| | | /** */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date sendtime; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private Long sendfailedcount; |
| | | |
| | | /** */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date resulttime; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String resultmsg; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private Long sendstate; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private Long inserttype; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private Long insertsystem; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String insertmodule; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String moduleid; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private String msgidentify; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long accountid; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String orgid; |
| | | |
| | | /** */ |
| | | private String delFlag; |
| | | |
| | | /** */ |
| | | @Excel(name = "") |
| | | private Long isupload; |
| | | |
| | | /** */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date uploadTime; |
| | | |
| | | public void setRecordid(Long recordid) |
| | | { |
| | | this.recordid = recordid; |
| | | } |
| | | |
| | | public Long getRecordid() |
| | | { |
| | | return recordid; |
| | | } |
| | | public void setUserid(String userid) |
| | | { |
| | | this.userid = userid; |
| | | } |
| | | |
| | | public String getUserid() |
| | | { |
| | | return userid; |
| | | } |
| | | public void setUsername(String username) |
| | | { |
| | | this.username = username; |
| | | } |
| | | |
| | | public String getUsername() |
| | | { |
| | | return username; |
| | | } |
| | | public void setPhone(String phone) |
| | | { |
| | | this.phone = phone; |
| | | } |
| | | |
| | | public String getPhone() |
| | | { |
| | | return phone; |
| | | } |
| | | public void setMsgno(String msgno) |
| | | { |
| | | this.msgno = msgno; |
| | | } |
| | | |
| | | public String getMsgno() |
| | | { |
| | | return msgno; |
| | | } |
| | | public void setMsg(String msg) |
| | | { |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public String getMsg() |
| | | { |
| | | return msg; |
| | | } |
| | | public void setInserttime(Date inserttime) |
| | | { |
| | | this.inserttime = inserttime; |
| | | } |
| | | |
| | | public Date getInserttime() |
| | | { |
| | | return inserttime; |
| | | } |
| | | public void setSendtime(Date sendtime) |
| | | { |
| | | this.sendtime = sendtime; |
| | | } |
| | | |
| | | public Date getSendtime() |
| | | { |
| | | return sendtime; |
| | | } |
| | | public void setSendfailedcount(Long sendfailedcount) |
| | | { |
| | | this.sendfailedcount = sendfailedcount; |
| | | } |
| | | |
| | | public Long getSendfailedcount() |
| | | { |
| | | return sendfailedcount; |
| | | } |
| | | public void setResulttime(Date resulttime) |
| | | { |
| | | this.resulttime = resulttime; |
| | | } |
| | | |
| | | public Date getResulttime() |
| | | { |
| | | return resulttime; |
| | | } |
| | | public void setResultmsg(String resultmsg) |
| | | { |
| | | this.resultmsg = resultmsg; |
| | | } |
| | | |
| | | public String getResultmsg() |
| | | { |
| | | return resultmsg; |
| | | } |
| | | public void setSendstate(Long sendstate) |
| | | { |
| | | this.sendstate = sendstate; |
| | | } |
| | | |
| | | public Long getSendstate() |
| | | { |
| | | return sendstate; |
| | | } |
| | | public void setInserttype(Long inserttype) |
| | | { |
| | | this.inserttype = inserttype; |
| | | } |
| | | |
| | | public Long getInserttype() |
| | | { |
| | | return inserttype; |
| | | } |
| | | public void setInsertsystem(Long insertsystem) |
| | | { |
| | | this.insertsystem = insertsystem; |
| | | } |
| | | |
| | | public Long getInsertsystem() |
| | | { |
| | | return insertsystem; |
| | | } |
| | | public void setInsertmodule(String insertmodule) |
| | | { |
| | | this.insertmodule = insertmodule; |
| | | } |
| | | |
| | | public String getInsertmodule() |
| | | { |
| | | return insertmodule; |
| | | } |
| | | public void setModuleid(String moduleid) |
| | | { |
| | | this.moduleid = moduleid; |
| | | } |
| | | |
| | | public String getModuleid() |
| | | { |
| | | return moduleid; |
| | | } |
| | | public void setMsgidentify(String msgidentify) |
| | | { |
| | | this.msgidentify = msgidentify; |
| | | } |
| | | |
| | | public String getMsgidentify() |
| | | { |
| | | return msgidentify; |
| | | } |
| | | public void setAccountid(Long accountid) |
| | | { |
| | | this.accountid = accountid; |
| | | } |
| | | |
| | | public Long getAccountid() |
| | | { |
| | | return accountid; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("recordid", getRecordid()) |
| | | .append("userid", getUserid()) |
| | | .append("username", getUsername()) |
| | | .append("phone", getPhone()) |
| | | .append("msgno", getMsgno()) |
| | | .append("msg", getMsg()) |
| | | .append("inserttime", getInserttime()) |
| | | .append("sendtime", getSendtime()) |
| | | .append("sendfailedcount", getSendfailedcount()) |
| | | .append("resulttime", getResulttime()) |
| | | .append("resultmsg", getResultmsg()) |
| | | .append("sendstate", getSendstate()) |
| | | .append("inserttype", getInserttype()) |
| | | .append("insertsystem", getInsertsystem()) |
| | | .append("insertmodule", getInsertmodule()) |
| | | .append("moduleid", getModuleid()) |
| | | .append("msgidentify", getMsgidentify()) |
| | | .append("accountid", getAccountid()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * ç信模æ¿å¯¹è±¡ sms_templet |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public class SmsTemplet extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | private Long templetid; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templetno; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templetname; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private String templetcontent; |
| | | |
| | | /** $column.columnComment */ |
| | | private String delFlag; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Long isupload; |
| | | |
| | | /** $column.columnComment */ |
| | | @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") |
| | | private Date uploadTime; |
| | | |
| | | public void setTempletid(Long templetid) |
| | | { |
| | | this.templetid = templetid; |
| | | } |
| | | |
| | | public Long getTempletid() |
| | | { |
| | | return templetid; |
| | | } |
| | | public void setTempletno(String templetno) |
| | | { |
| | | this.templetno = templetno; |
| | | } |
| | | |
| | | public String getTempletno() |
| | | { |
| | | return templetno; |
| | | } |
| | | public void setTempletname(String templetname) |
| | | { |
| | | this.templetname = templetname; |
| | | } |
| | | |
| | | public String getTempletname() |
| | | { |
| | | return templetname; |
| | | } |
| | | public void setTempletcontent(String templetcontent) |
| | | { |
| | | this.templetcontent = templetcontent; |
| | | } |
| | | |
| | | public String getTempletcontent() |
| | | { |
| | | return templetcontent; |
| | | } |
| | | 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; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("templetid", getTempletid()) |
| | | .append("templetno", getTempletno()) |
| | | .append("templetname", getTempletname()) |
| | | .append("templetcontent", getTempletcontent()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .toString(); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.BaseSmsaccount; |
| | | |
| | | /** |
| | | * çä¿¡è´¦å·Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface BaseSmsaccountMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢çä¿¡è´¦å· |
| | | * |
| | | * @param smsacountid çä¿¡è´¦å·ä¸»é® |
| | | * @return çä¿¡è´¦å· |
| | | */ |
| | | public BaseSmsaccount selectBaseSmsaccountBySmsacountid(Long smsacountid); |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è´¦å·å表 |
| | | * |
| | | * @param baseSmsaccount çä¿¡è´¦å· |
| | | * @return çä¿¡è´¦å·éå |
| | | */ |
| | | public List<BaseSmsaccount> selectBaseSmsaccountList(BaseSmsaccount baseSmsaccount); |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡è´¦å· |
| | | * |
| | | * @param baseSmsaccount çä¿¡è´¦å· |
| | | * @return ç»æ |
| | | */ |
| | | public int insertBaseSmsaccount(BaseSmsaccount baseSmsaccount); |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡è´¦å· |
| | | * |
| | | * @param baseSmsaccount çä¿¡è´¦å· |
| | | * @return ç»æ |
| | | */ |
| | | public int updateBaseSmsaccount(BaseSmsaccount baseSmsaccount); |
| | | |
| | | /** |
| | | * å é¤çä¿¡è´¦å· |
| | | * |
| | | * @param smsacountid çä¿¡è´¦å·ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteBaseSmsaccountBySmsacountid(Long smsacountid); |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡è´¦å· |
| | | * |
| | | * @param smsacountids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteBaseSmsaccountBySmsacountids(Long[] smsacountids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibIntent; |
| | | |
| | | /** |
| | | * AIæå¾åºMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrLibIntentMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIæå¾åº |
| | | * |
| | | * @param intentid AIæå¾åºä¸»é® |
| | | * @return AIæå¾åº |
| | | */ |
| | | public IvrLibIntent selectIvrLibIntentByIntentid(Long intentid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºå表 |
| | | * |
| | | * @param ivrLibIntent AIæå¾åº |
| | | * @return AIæå¾åºéå |
| | | */ |
| | | public List<IvrLibIntent> selectIvrLibIntentList(IvrLibIntent ivrLibIntent); |
| | | |
| | | /** |
| | | * æ°å¢AIæå¾åº |
| | | * |
| | | * @param ivrLibIntent AIæå¾åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibIntent(IvrLibIntent ivrLibIntent); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¾åº |
| | | * |
| | | * @param ivrLibIntent AIæå¾åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibIntent(IvrLibIntent ivrLibIntent); |
| | | |
| | | /** |
| | | * å é¤AIæå¾åº |
| | | * |
| | | * @param intentid AIæå¾åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibIntentByIntentid(Long intentid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIæå¾åº |
| | | * |
| | | * @param intentids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibIntentByIntentids(Long[] intentids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibIntentcategory; |
| | | |
| | | /** |
| | | * AIæå¾åºåç±»Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrLibIntentcategoryMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºåç±» |
| | | * |
| | | * @param intertcatid AIæå¾åºåç±»ä¸»é® |
| | | * @return AIæå¾åºåç±» |
| | | */ |
| | | public IvrLibIntentcategory selectIvrLibIntentcategoryByIntertcatid(Long intertcatid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºåç±»å表 |
| | | * |
| | | * @param ivrLibIntentcategory AIæå¾åºåç±» |
| | | * @return AIæå¾åºåç±»éå |
| | | */ |
| | | public List<IvrLibIntentcategory> selectIvrLibIntentcategoryList(IvrLibIntentcategory ivrLibIntentcategory); |
| | | |
| | | /** |
| | | * æ°å¢AIæå¾åºåç±» |
| | | * |
| | | * @param ivrLibIntentcategory AIæå¾åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibIntentcategory(IvrLibIntentcategory ivrLibIntentcategory); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¾åºåç±» |
| | | * |
| | | * @param ivrLibIntentcategory AIæå¾åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibIntentcategory(IvrLibIntentcategory ivrLibIntentcategory); |
| | | |
| | | /** |
| | | * å é¤AIæå¾åºåç±» |
| | | * |
| | | * @param intertcatid AIæå¾åºåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibIntentcategoryByIntertcatid(Long intertcatid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIæå¾åºåç±» |
| | | * |
| | | * @param intertcatids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibIntentcategoryByIntertcatids(Long[] intertcatids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibScript; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrLibScriptMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åº |
| | | * |
| | | * @param scriptid AIè¯æ¯åºä¸»é® |
| | | * @return AIè¯æ¯åº |
| | | */ |
| | | public IvrLibScript selectIvrLibScriptByScriptid(Long scriptid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibScript AIè¯æ¯åº |
| | | * @return AIè¯æ¯åºéå |
| | | */ |
| | | public List<IvrLibScript> selectIvrLibScriptList(IvrLibScript ivrLibScript); |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯åº |
| | | * |
| | | * @param ivrLibScript AIè¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibScript(IvrLibScript ivrLibScript); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯åº |
| | | * |
| | | * @param ivrLibScript AIè¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibScript(IvrLibScript ivrLibScript); |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯åº |
| | | * |
| | | * @param scriptid AIè¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptByScriptid(Long scriptid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIè¯æ¯åº |
| | | * |
| | | * @param scriptids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptByScriptids(Long[] scriptids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibScriptcategory; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºåç±»Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrLibScriptcategoryMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºåç±» |
| | | * |
| | | * @param categoryid AIè¯æ¯åºåç±»ä¸»é® |
| | | * @return AIè¯æ¯åºåç±» |
| | | */ |
| | | public IvrLibScriptcategory selectIvrLibScriptcategoryByCategoryid(Long categoryid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºåç±»å表 |
| | | * |
| | | * @param ivrLibScriptcategory AIè¯æ¯åºåç±» |
| | | * @return AIè¯æ¯åºåç±»éå |
| | | */ |
| | | public List<IvrLibScriptcategory> selectIvrLibScriptcategoryList(IvrLibScriptcategory ivrLibScriptcategory); |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯åºåç±» |
| | | * |
| | | * @param ivrLibScriptcategory AIè¯æ¯åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibScriptcategory(IvrLibScriptcategory ivrLibScriptcategory); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯åºåç±» |
| | | * |
| | | * @param ivrLibScriptcategory AIè¯æ¯åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibScriptcategory(IvrLibScriptcategory ivrLibScriptcategory); |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯åºåç±» |
| | | * |
| | | * @param categoryid AIè¯æ¯åºåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptcategoryByCategoryid(Long categoryid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIè¯æ¯åºåç±» |
| | | * |
| | | * @param categoryids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptcategoryByCategoryids(Long[] categoryids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibScriptmodel; |
| | | |
| | | /** |
| | | * AIè¯æ¯æ¨¡åMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrLibScriptmodelMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param modelid AIè¯æ¯æ¨¡åä¸»é® |
| | | * @return AIè¯æ¯æ¨¡å |
| | | */ |
| | | public IvrLibScriptmodel selectIvrLibScriptmodelByModelid(Long modelid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯æ¨¡åå表 |
| | | * |
| | | * @param ivrLibScriptmodel AIè¯æ¯æ¨¡å |
| | | * @return AIè¯æ¯æ¨¡åéå |
| | | */ |
| | | public List<IvrLibScriptmodel> selectIvrLibScriptmodelList(IvrLibScriptmodel ivrLibScriptmodel); |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrLibScriptmodel AIè¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibScriptmodel(IvrLibScriptmodel ivrLibScriptmodel); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrLibScriptmodel AIè¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibScriptmodel(IvrLibScriptmodel ivrLibScriptmodel); |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param modelid AIè¯æ¯æ¨¡åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptmodelByModelid(Long modelid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param modelids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptmodelByModelids(Long[] modelids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneExecuteconfig; |
| | | |
| | | /** |
| | | * AIå¤å¼æ§è¡é
ç½®Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneExecuteconfigMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param scenecfgid AIå¤å¼æ§è¡é
ç½®ä¸»é® |
| | | * @return AIå¤å¼æ§è¡é
ç½® |
| | | */ |
| | | public IvrSceneExecuteconfig selectIvrSceneExecuteconfigByScenecfgid(Long scenecfgid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æ§è¡é
ç½®å表 |
| | | * |
| | | * @param ivrSceneExecuteconfig AIå¤å¼æ§è¡é
ç½® |
| | | * @return AIå¤å¼æ§è¡é
ç½®éå |
| | | */ |
| | | public List<IvrSceneExecuteconfig> selectIvrSceneExecuteconfigList(IvrSceneExecuteconfig ivrSceneExecuteconfig); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param ivrSceneExecuteconfig AIå¤å¼æ§è¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneExecuteconfig(IvrSceneExecuteconfig ivrSceneExecuteconfig); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param ivrSceneExecuteconfig AIå¤å¼æ§è¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneExecuteconfig(IvrSceneExecuteconfig ivrSceneExecuteconfig); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param scenecfgid AIå¤å¼æ§è¡é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneExecuteconfigByScenecfgid(Long scenecfgid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param scenecfgids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneExecuteconfigByScenecfgids(Long[] scenecfgids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneFlow; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneFlowMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨ |
| | | * |
| | | * @param flowid AIå¤å¼æµç¨ä¸»é® |
| | | * @return AIå¤å¼æµç¨ |
| | | */ |
| | | public IvrSceneFlow selectIvrSceneFlowByFlowid(Long flowid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨å表 |
| | | * |
| | | * @param ivrSceneFlow AIå¤å¼æµç¨ |
| | | * @return AIå¤å¼æµç¨éå |
| | | */ |
| | | public List<IvrSceneFlow> selectIvrSceneFlowList(IvrSceneFlow ivrSceneFlow); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨ |
| | | * |
| | | * @param ivrSceneFlow AIå¤å¼æµç¨ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneFlow(IvrSceneFlow ivrSceneFlow); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨ |
| | | * |
| | | * @param ivrSceneFlow AIå¤å¼æµç¨ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneFlow(IvrSceneFlow ivrSceneFlow); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨ |
| | | * |
| | | * @param flowid AIå¤å¼æµç¨ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlowByFlowid(Long flowid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æµç¨ |
| | | * |
| | | * @param flowids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlowByFlowids(Long[] flowids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneFlownode; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneFlownodeMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param flownodeid AIå¤å¼æµç¨èç¹ä¸»é® |
| | | * @return AIå¤å¼æµç¨èç¹ |
| | | */ |
| | | public IvrSceneFlownode selectIvrSceneFlownodeByFlownodeid(Long flownodeid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹å表 |
| | | * |
| | | * @param ivrSceneFlownode AIå¤å¼æµç¨èç¹ |
| | | * @return AIå¤å¼æµç¨èç¹éå |
| | | */ |
| | | public List<IvrSceneFlownode> selectIvrSceneFlownodeList(IvrSceneFlownode ivrSceneFlownode); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param ivrSceneFlownode AIå¤å¼æµç¨èç¹ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneFlownode(IvrSceneFlownode ivrSceneFlownode); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param ivrSceneFlownode AIå¤å¼æµç¨èç¹ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneFlownode(IvrSceneFlownode ivrSceneFlownode); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param flownodeid AIå¤å¼æµç¨èç¹ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlownodeByFlownodeid(Long flownodeid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param flownodeids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlownodeByFlownodeids(Long[] flownodeids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneFlownodebranch; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹åæ¯Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneFlownodebranchMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param branchid AIå¤å¼æµç¨èç¹åæ¯ä¸»é® |
| | | * @return AIå¤å¼æµç¨èç¹åæ¯ |
| | | */ |
| | | public IvrSceneFlownodebranch selectIvrSceneFlownodebranchByBranchid(Long branchid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹åæ¯å表 |
| | | * |
| | | * @param ivrSceneFlownodebranch AIå¤å¼æµç¨èç¹åæ¯ |
| | | * @return AIå¤å¼æµç¨èç¹åæ¯éå |
| | | */ |
| | | public List<IvrSceneFlownodebranch> selectIvrSceneFlownodebranchList(IvrSceneFlownodebranch ivrSceneFlownodebranch); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param ivrSceneFlownodebranch AIå¤å¼æµç¨èç¹åæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneFlownodebranch(IvrSceneFlownodebranch ivrSceneFlownodebranch); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param ivrSceneFlownodebranch AIå¤å¼æµç¨èç¹åæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneFlownodebranch(IvrSceneFlownodebranch ivrSceneFlownodebranch); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param branchid AIå¤å¼æµç¨èç¹åæ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlownodebranchByBranchid(Long branchid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param branchids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlownodebranchByBranchids(Long[] branchids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneGlobalconfig; |
| | | |
| | | /** |
| | | * AIå¤å¼å
¨å±é
ç½®Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneGlobalconfigMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param gblconfigid AIå¤å¼å
¨å±é
ç½®ä¸»é® |
| | | * @return AIå¤å¼å
¨å±é
ç½® |
| | | */ |
| | | public IvrSceneGlobalconfig selectIvrSceneGlobalconfigByGblconfigid(Long gblconfigid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼å
¨å±é
ç½®å表 |
| | | * |
| | | * @param ivrSceneGlobalconfig AIå¤å¼å
¨å±é
ç½® |
| | | * @return AIå¤å¼å
¨å±é
ç½®éå |
| | | */ |
| | | public List<IvrSceneGlobalconfig> selectIvrSceneGlobalconfigList(IvrSceneGlobalconfig ivrSceneGlobalconfig); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param ivrSceneGlobalconfig AIå¤å¼å
¨å±é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneGlobalconfig(IvrSceneGlobalconfig ivrSceneGlobalconfig); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param ivrSceneGlobalconfig AIå¤å¼å
¨å±é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneGlobalconfig(IvrSceneGlobalconfig ivrSceneGlobalconfig); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param gblconfigid AIå¤å¼å
¨å±é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneGlobalconfigByGblconfigid(Long gblconfigid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param gblconfigids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneGlobalconfigByGblconfigids(Long[] gblconfigids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneIntent; |
| | | |
| | | /** |
| | | * AIå¤å¼æå¾Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneIntentMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æå¾ |
| | | * |
| | | * @param sceneintentid AIå¤å¼æå¾ä¸»é® |
| | | * @return AIå¤å¼æå¾ |
| | | */ |
| | | public IvrSceneIntent selectIvrSceneIntentBySceneintentid(Long sceneintentid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æå¾å表 |
| | | * |
| | | * @param ivrSceneIntent AIå¤å¼æå¾ |
| | | * @return AIå¤å¼æå¾éå |
| | | */ |
| | | public List<IvrSceneIntent> selectIvrSceneIntentList(IvrSceneIntent ivrSceneIntent); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æå¾ |
| | | * |
| | | * @param ivrSceneIntent AIå¤å¼æå¾ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneIntent(IvrSceneIntent ivrSceneIntent); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æå¾ |
| | | * |
| | | * @param ivrSceneIntent AIå¤å¼æå¾ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneIntent(IvrSceneIntent ivrSceneIntent); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æå¾ |
| | | * |
| | | * @param sceneintentid AIå¤å¼æå¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneIntentBySceneintentid(Long sceneintentid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æå¾ |
| | | * |
| | | * @param sceneintentids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneIntentBySceneintentids(Long[] sceneintentids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrScene; |
| | | |
| | | /** |
| | | * AIå¤å¼åºæ¯ç®¡çMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param sceneid AIå¤å¼åºæ¯ç®¡çä¸»é® |
| | | * @return AIå¤å¼åºæ¯ç®¡ç |
| | | */ |
| | | public IvrScene selectIvrSceneBySceneid(Long sceneid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼åºæ¯ç®¡çå表 |
| | | * |
| | | * @param ivrScene AIå¤å¼åºæ¯ç®¡ç |
| | | * @return AIå¤å¼åºæ¯ç®¡çéå |
| | | */ |
| | | public List<IvrScene> selectIvrSceneList(IvrScene ivrScene); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param ivrScene AIå¤å¼åºæ¯ç®¡ç |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrScene(IvrScene ivrScene); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param ivrScene AIå¤å¼åºæ¯ç®¡ç |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrScene(IvrScene ivrScene); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param sceneid AIå¤å¼åºæ¯ç®¡çä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneBySceneid(Long sceneid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param sceneids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneBySceneids(Long[] sceneids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneRecall; |
| | | |
| | | /** |
| | | * AIå¤å¼éæ¨é
ç½®Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneRecallMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param recallid AIå¤å¼éæ¨é
ç½®ä¸»é® |
| | | * @return AIå¤å¼éæ¨é
ç½® |
| | | */ |
| | | public IvrSceneRecall selectIvrSceneRecallByRecallid(Long recallid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼éæ¨é
ç½®å表 |
| | | * |
| | | * @param ivrSceneRecall AIå¤å¼éæ¨é
ç½® |
| | | * @return AIå¤å¼éæ¨é
ç½®éå |
| | | */ |
| | | public List<IvrSceneRecall> selectIvrSceneRecallList(IvrSceneRecall ivrSceneRecall); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param ivrSceneRecall AIå¤å¼éæ¨é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneRecall(IvrSceneRecall ivrSceneRecall); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param ivrSceneRecall AIå¤å¼éæ¨é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneRecall(IvrSceneRecall ivrSceneRecall); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param recallid AIå¤å¼éæ¨é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneRecallByRecallid(Long recallid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param recallids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneRecallByRecallids(Long[] recallids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneScript; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneScriptMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param scenescrid AIå¤å¼è¯æ¯ä¸»é® |
| | | * @return AIå¤å¼è¯æ¯ |
| | | */ |
| | | public IvrSceneScript selectIvrSceneScriptByScenescrid(Long scenescrid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯å表 |
| | | * |
| | | * @param ivrSceneScript AIå¤å¼è¯æ¯ |
| | | * @return AIå¤å¼è¯æ¯éå |
| | | */ |
| | | public List<IvrSceneScript> selectIvrSceneScriptList(IvrSceneScript ivrSceneScript); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param ivrSceneScript AIå¤å¼è¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneScript(IvrSceneScript ivrSceneScript); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param ivrSceneScript AIå¤å¼è¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneScript(IvrSceneScript ivrSceneScript); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param scenescrid AIå¤å¼è¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneScriptByScenescrid(Long scenescrid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param scenescrids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneScriptByScenescrids(Long[] scenescrids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneScriptmodel; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯æ¨¡åMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrSceneScriptmodelMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param scenemodid AIå¤å¼è¯æ¯æ¨¡åä¸»é® |
| | | * @return AIå¤å¼è¯æ¯æ¨¡å |
| | | */ |
| | | public IvrSceneScriptmodel selectIvrSceneScriptmodelByScenemodid(Long scenemodid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯æ¨¡åå表 |
| | | * |
| | | * @param ivrSceneScriptmodel AIå¤å¼è¯æ¯æ¨¡å |
| | | * @return AIå¤å¼è¯æ¯æ¨¡åéå |
| | | */ |
| | | public List<IvrSceneScriptmodel> selectIvrSceneScriptmodelList(IvrSceneScriptmodel ivrSceneScriptmodel); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrSceneScriptmodel AIå¤å¼è¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneScriptmodel(IvrSceneScriptmodel ivrSceneScriptmodel); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrSceneScriptmodel AIå¤å¼è¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneScriptmodel(IvrSceneScriptmodel ivrSceneScriptmodel); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param scenemodid AIå¤å¼è¯æ¯æ¨¡åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneScriptmodelByScenemodid(Long scenemodid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param scenemodids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneScriptmodelByScenemodids(Long[] scenemodids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrScenecategory; |
| | | |
| | | /** |
| | | * AIæå¡åºæ¯ç®¡çåç±»Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IvrScenecategoryMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param scenecatid AIæå¡åºæ¯ç®¡çåç±»ä¸»é® |
| | | * @return AIæå¡åºæ¯ç®¡çåç±» |
| | | */ |
| | | public IvrScenecategory selectIvrScenecategoryByScenecatid(Long scenecatid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¡åºæ¯ç®¡çåç±»å表 |
| | | * |
| | | * @param ivrScenecategory AIæå¡åºæ¯ç®¡çåç±» |
| | | * @return AIæå¡åºæ¯ç®¡çåç±»éå |
| | | */ |
| | | public List<IvrScenecategory> selectIvrScenecategoryList(IvrScenecategory ivrScenecategory); |
| | | |
| | | /** |
| | | * æ°å¢AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param ivrScenecategory AIæå¡åºæ¯ç®¡çåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrScenecategory(IvrScenecategory ivrScenecategory); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param ivrScenecategory AIæå¡åºæ¯ç®¡çåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrScenecategory(IvrScenecategory ivrScenecategory); |
| | | |
| | | /** |
| | | * å é¤AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param scenecatid AIæå¡åºæ¯ç®¡çåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrScenecategoryByScenecatid(Long scenecatid); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param scenecatids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrScenecategoryByScenecatids(Long[] scenecatids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SmsParam; |
| | | |
| | | /** |
| | | * çä¿¡åæ°Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface SmsParamMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢çä¿¡åæ° |
| | | * |
| | | * @param paramid çä¿¡åæ°ä¸»é® |
| | | * @return çä¿¡åæ° |
| | | */ |
| | | public SmsParam selectSmsParamByParamid(Long paramid); |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡åæ°å表 |
| | | * |
| | | * @param smsParam çä¿¡åæ° |
| | | * @return çä¿¡åæ°éå |
| | | */ |
| | | public List<SmsParam> selectSmsParamList(SmsParam smsParam); |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡åæ° |
| | | * |
| | | * @param smsParam çä¿¡åæ° |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSmsParam(SmsParam smsParam); |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡åæ° |
| | | * |
| | | * @param smsParam çä¿¡åæ° |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSmsParam(SmsParam smsParam); |
| | | |
| | | /** |
| | | * å é¤çä¿¡åæ° |
| | | * |
| | | * @param paramid çä¿¡åæ°ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsParamByParamid(Long paramid); |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡åæ° |
| | | * |
| | | * @param paramids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsParamByParamids(Long[] paramids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SmsRecords; |
| | | |
| | | /** |
| | | * çä¿¡è®°å½Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface SmsRecordsMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢çä¿¡è®°å½ |
| | | * |
| | | * @param recordid çä¿¡è®°å½ä¸»é® |
| | | * @return çä¿¡è®°å½ |
| | | */ |
| | | public SmsRecords selectSmsRecordsByRecordid(Long recordid); |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è®°å½å表 |
| | | * |
| | | * @param smsRecords çä¿¡è®°å½ |
| | | * @return çä¿¡è®°å½éå |
| | | */ |
| | | public List<SmsRecords> selectSmsRecordsList(SmsRecords smsRecords); |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡è®°å½ |
| | | * |
| | | * @param smsRecords çä¿¡è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSmsRecords(SmsRecords smsRecords); |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡è®°å½ |
| | | * |
| | | * @param smsRecords çä¿¡è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSmsRecords(SmsRecords smsRecords); |
| | | |
| | | /** |
| | | * å é¤çä¿¡è®°å½ |
| | | * |
| | | * @param recordid çä¿¡è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsRecordsByRecordid(Long recordid); |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡è®°å½ |
| | | * |
| | | * @param recordids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsRecordsByRecordids(Long[] recordids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SmsTemplet; |
| | | |
| | | /** |
| | | * ç信模æ¿Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface SmsTempletMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param templetid ç信模æ¿ä¸»é® |
| | | * @return çä¿¡æ¨¡æ¿ |
| | | */ |
| | | public SmsTemplet selectSmsTempletByTempletid(Long templetid); |
| | | |
| | | /** |
| | | * æ¥è¯¢ç信模æ¿å表 |
| | | * |
| | | * @param smsTemplet çä¿¡æ¨¡æ¿ |
| | | * @return ç信模æ¿éå |
| | | */ |
| | | public List<SmsTemplet> selectSmsTempletList(SmsTemplet smsTemplet); |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param smsTemplet çä¿¡æ¨¡æ¿ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSmsTemplet(SmsTemplet smsTemplet); |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param smsTemplet çä¿¡æ¨¡æ¿ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSmsTemplet(SmsTemplet smsTemplet); |
| | | |
| | | /** |
| | | * å é¤çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param templetid ç信模æ¿ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsTempletByTempletid(Long templetid); |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param templetids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsTempletByTempletids(Long[] templetids); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.BaseSmsaccount; |
| | | |
| | | /** |
| | | * çä¿¡è´¦å·Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IBaseSmsaccountService |
| | | { |
| | | /** |
| | | * æ¥è¯¢çä¿¡è´¦å· |
| | | * |
| | | * @param smsacountid çä¿¡è´¦å·ä¸»é® |
| | | * @return çä¿¡è´¦å· |
| | | */ |
| | | public BaseSmsaccount selectBaseSmsaccountBySmsacountid(Long smsacountid); |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è´¦å·å表 |
| | | * |
| | | * @param baseSmsaccount çä¿¡è´¦å· |
| | | * @return çä¿¡è´¦å·éå |
| | | */ |
| | | public List<BaseSmsaccount> selectBaseSmsaccountList(BaseSmsaccount baseSmsaccount); |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡è´¦å· |
| | | * |
| | | * @param baseSmsaccount çä¿¡è´¦å· |
| | | * @return ç»æ |
| | | */ |
| | | public int insertBaseSmsaccount(BaseSmsaccount baseSmsaccount); |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡è´¦å· |
| | | * |
| | | * @param baseSmsaccount çä¿¡è´¦å· |
| | | * @return ç»æ |
| | | */ |
| | | public int updateBaseSmsaccount(BaseSmsaccount baseSmsaccount); |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡è´¦å· |
| | | * |
| | | * @param smsacountids éè¦å é¤ççä¿¡è´¦å·ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteBaseSmsaccountBySmsacountids(Long[] smsacountids); |
| | | |
| | | /** |
| | | * å é¤çä¿¡è´¦å·ä¿¡æ¯ |
| | | * |
| | | * @param smsacountid çä¿¡è´¦å·ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteBaseSmsaccountBySmsacountid(Long smsacountid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibIntent; |
| | | |
| | | /** |
| | | * AIæå¾åºServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrLibIntentService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIæå¾åº |
| | | * |
| | | * @param intentid AIæå¾åºä¸»é® |
| | | * @return AIæå¾åº |
| | | */ |
| | | public IvrLibIntent selectIvrLibIntentByIntentid(Long intentid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºå表 |
| | | * |
| | | * @param ivrLibIntent AIæå¾åº |
| | | * @return AIæå¾åºéå |
| | | */ |
| | | public List<IvrLibIntent> selectIvrLibIntentList(IvrLibIntent ivrLibIntent); |
| | | |
| | | /** |
| | | * æ°å¢AIæå¾åº |
| | | * |
| | | * @param ivrLibIntent AIæå¾åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibIntent(IvrLibIntent ivrLibIntent); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¾åº |
| | | * |
| | | * @param ivrLibIntent AIæå¾åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibIntent(IvrLibIntent ivrLibIntent); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIæå¾åº |
| | | * |
| | | * @param intentids éè¦å é¤çAIæå¾åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibIntentByIntentids(Long[] intentids); |
| | | |
| | | /** |
| | | * å é¤AIæå¾åºä¿¡æ¯ |
| | | * |
| | | * @param intentid AIæå¾åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibIntentByIntentid(Long intentid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibIntentcategory; |
| | | |
| | | /** |
| | | * AIæå¾åºåç±»Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrLibIntentcategoryService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºåç±» |
| | | * |
| | | * @param intertcatid AIæå¾åºåç±»ä¸»é® |
| | | * @return AIæå¾åºåç±» |
| | | */ |
| | | public IvrLibIntentcategory selectIvrLibIntentcategoryByIntertcatid(Long intertcatid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºåç±»å表 |
| | | * |
| | | * @param ivrLibIntentcategory AIæå¾åºåç±» |
| | | * @return AIæå¾åºåç±»éå |
| | | */ |
| | | public List<IvrLibIntentcategory> selectIvrLibIntentcategoryList(IvrLibIntentcategory ivrLibIntentcategory); |
| | | |
| | | /** |
| | | * æ°å¢AIæå¾åºåç±» |
| | | * |
| | | * @param ivrLibIntentcategory AIæå¾åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibIntentcategory(IvrLibIntentcategory ivrLibIntentcategory); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¾åºåç±» |
| | | * |
| | | * @param ivrLibIntentcategory AIæå¾åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibIntentcategory(IvrLibIntentcategory ivrLibIntentcategory); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIæå¾åºåç±» |
| | | * |
| | | * @param intertcatids éè¦å é¤çAIæå¾åºå类主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibIntentcategoryByIntertcatids(Long[] intertcatids); |
| | | |
| | | /** |
| | | * å é¤AIæå¾åºåç±»ä¿¡æ¯ |
| | | * |
| | | * @param intertcatid AIæå¾åºåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibIntentcategoryByIntertcatid(Long intertcatid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibScript; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrLibScriptService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åº |
| | | * |
| | | * @param scriptid AIè¯æ¯åºä¸»é® |
| | | * @return AIè¯æ¯åº |
| | | */ |
| | | public IvrLibScript selectIvrLibScriptByScriptid(Long scriptid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibScript AIè¯æ¯åº |
| | | * @return AIè¯æ¯åºéå |
| | | */ |
| | | public List<IvrLibScript> selectIvrLibScriptList(IvrLibScript ivrLibScript); |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯åº |
| | | * |
| | | * @param ivrLibScript AIè¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibScript(IvrLibScript ivrLibScript); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯åº |
| | | * |
| | | * @param ivrLibScript AIè¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibScript(IvrLibScript ivrLibScript); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIè¯æ¯åº |
| | | * |
| | | * @param scriptids éè¦å é¤çAIè¯æ¯åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptByScriptids(Long[] scriptids); |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯åºä¿¡æ¯ |
| | | * |
| | | * @param scriptid AIè¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptByScriptid(Long scriptid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibScriptcategory; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºåç±»Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrLibScriptcategoryService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºåç±» |
| | | * |
| | | * @param categoryid AIè¯æ¯åºåç±»ä¸»é® |
| | | * @return AIè¯æ¯åºåç±» |
| | | */ |
| | | public IvrLibScriptcategory selectIvrLibScriptcategoryByCategoryid(Long categoryid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºåç±»å表 |
| | | * |
| | | * @param ivrLibScriptcategory AIè¯æ¯åºåç±» |
| | | * @return AIè¯æ¯åºåç±»éå |
| | | */ |
| | | public List<IvrLibScriptcategory> selectIvrLibScriptcategoryList(IvrLibScriptcategory ivrLibScriptcategory); |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯åºåç±» |
| | | * |
| | | * @param ivrLibScriptcategory AIè¯æ¯åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibScriptcategory(IvrLibScriptcategory ivrLibScriptcategory); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯åºåç±» |
| | | * |
| | | * @param ivrLibScriptcategory AIè¯æ¯åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibScriptcategory(IvrLibScriptcategory ivrLibScriptcategory); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIè¯æ¯åºåç±» |
| | | * |
| | | * @param categoryids éè¦å é¤çAIè¯æ¯åºå类主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptcategoryByCategoryids(Long[] categoryids); |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯åºåç±»ä¿¡æ¯ |
| | | * |
| | | * @param categoryid AIè¯æ¯åºåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptcategoryByCategoryid(Long categoryid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrLibScriptmodel; |
| | | |
| | | /** |
| | | * AIè¯æ¯æ¨¡åServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrLibScriptmodelService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param modelid AIè¯æ¯æ¨¡åä¸»é® |
| | | * @return AIè¯æ¯æ¨¡å |
| | | */ |
| | | public IvrLibScriptmodel selectIvrLibScriptmodelByModelid(Long modelid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯æ¨¡åå表 |
| | | * |
| | | * @param ivrLibScriptmodel AIè¯æ¯æ¨¡å |
| | | * @return AIè¯æ¯æ¨¡åéå |
| | | */ |
| | | public List<IvrLibScriptmodel> selectIvrLibScriptmodelList(IvrLibScriptmodel ivrLibScriptmodel); |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrLibScriptmodel AIè¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrLibScriptmodel(IvrLibScriptmodel ivrLibScriptmodel); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrLibScriptmodel AIè¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrLibScriptmodel(IvrLibScriptmodel ivrLibScriptmodel); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param modelids éè¦å é¤çAIè¯æ¯æ¨¡å主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptmodelByModelids(Long[] modelids); |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯æ¨¡åä¿¡æ¯ |
| | | * |
| | | * @param modelid AIè¯æ¯æ¨¡åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrLibScriptmodelByModelid(Long modelid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneExecuteconfig; |
| | | |
| | | /** |
| | | * AIå¤å¼æ§è¡é
ç½®Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneExecuteconfigService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param scenecfgid AIå¤å¼æ§è¡é
ç½®ä¸»é® |
| | | * @return AIå¤å¼æ§è¡é
ç½® |
| | | */ |
| | | public IvrSceneExecuteconfig selectIvrSceneExecuteconfigByScenecfgid(Long scenecfgid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æ§è¡é
ç½®å表 |
| | | * |
| | | * @param ivrSceneExecuteconfig AIå¤å¼æ§è¡é
ç½® |
| | | * @return AIå¤å¼æ§è¡é
ç½®éå |
| | | */ |
| | | public List<IvrSceneExecuteconfig> selectIvrSceneExecuteconfigList(IvrSceneExecuteconfig ivrSceneExecuteconfig); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param ivrSceneExecuteconfig AIå¤å¼æ§è¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneExecuteconfig(IvrSceneExecuteconfig ivrSceneExecuteconfig); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param ivrSceneExecuteconfig AIå¤å¼æ§è¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneExecuteconfig(IvrSceneExecuteconfig ivrSceneExecuteconfig); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param scenecfgids éè¦å é¤çAIå¤å¼æ§è¡é
置主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneExecuteconfigByScenecfgids(Long[] scenecfgids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æ§è¡é
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param scenecfgid AIå¤å¼æ§è¡é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneExecuteconfigByScenecfgid(Long scenecfgid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneFlow; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneFlowService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨ |
| | | * |
| | | * @param flowid AIå¤å¼æµç¨ä¸»é® |
| | | * @return AIå¤å¼æµç¨ |
| | | */ |
| | | public IvrSceneFlow selectIvrSceneFlowByFlowid(Long flowid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨å表 |
| | | * |
| | | * @param ivrSceneFlow AIå¤å¼æµç¨ |
| | | * @return AIå¤å¼æµç¨éå |
| | | */ |
| | | public List<IvrSceneFlow> selectIvrSceneFlowList(IvrSceneFlow ivrSceneFlow); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨ |
| | | * |
| | | * @param ivrSceneFlow AIå¤å¼æµç¨ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneFlow(IvrSceneFlow ivrSceneFlow); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨ |
| | | * |
| | | * @param ivrSceneFlow AIå¤å¼æµç¨ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneFlow(IvrSceneFlow ivrSceneFlow); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æµç¨ |
| | | * |
| | | * @param flowids éè¦å é¤çAIå¤å¼æµç¨ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlowByFlowids(Long[] flowids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨ä¿¡æ¯ |
| | | * |
| | | * @param flowid AIå¤å¼æµç¨ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlowByFlowid(Long flowid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneFlownode; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneFlownodeService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param flownodeid AIå¤å¼æµç¨èç¹ä¸»é® |
| | | * @return AIå¤å¼æµç¨èç¹ |
| | | */ |
| | | public IvrSceneFlownode selectIvrSceneFlownodeByFlownodeid(Long flownodeid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹å表 |
| | | * |
| | | * @param ivrSceneFlownode AIå¤å¼æµç¨èç¹ |
| | | * @return AIå¤å¼æµç¨èç¹éå |
| | | */ |
| | | public List<IvrSceneFlownode> selectIvrSceneFlownodeList(IvrSceneFlownode ivrSceneFlownode); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param ivrSceneFlownode AIå¤å¼æµç¨èç¹ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneFlownode(IvrSceneFlownode ivrSceneFlownode); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param ivrSceneFlownode AIå¤å¼æµç¨èç¹ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneFlownode(IvrSceneFlownode ivrSceneFlownode); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param flownodeids éè¦å é¤çAIå¤å¼æµç¨èç¹ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlownodeByFlownodeids(Long[] flownodeids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨èç¹ä¿¡æ¯ |
| | | * |
| | | * @param flownodeid AIå¤å¼æµç¨èç¹ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlownodeByFlownodeid(Long flownodeid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneFlownodebranch; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹åæ¯Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneFlownodebranchService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param branchid AIå¤å¼æµç¨èç¹åæ¯ä¸»é® |
| | | * @return AIå¤å¼æµç¨èç¹åæ¯ |
| | | */ |
| | | public IvrSceneFlownodebranch selectIvrSceneFlownodebranchByBranchid(Long branchid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹åæ¯å表 |
| | | * |
| | | * @param ivrSceneFlownodebranch AIå¤å¼æµç¨èç¹åæ¯ |
| | | * @return AIå¤å¼æµç¨èç¹åæ¯éå |
| | | */ |
| | | public List<IvrSceneFlownodebranch> selectIvrSceneFlownodebranchList(IvrSceneFlownodebranch ivrSceneFlownodebranch); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param ivrSceneFlownodebranch AIå¤å¼æµç¨èç¹åæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneFlownodebranch(IvrSceneFlownodebranch ivrSceneFlownodebranch); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param ivrSceneFlownodebranch AIå¤å¼æµç¨èç¹åæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneFlownodebranch(IvrSceneFlownodebranch ivrSceneFlownodebranch); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param branchids éè¦å é¤çAIå¤å¼æµç¨èç¹åæ¯ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlownodebranchByBranchids(Long[] branchids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨èç¹åæ¯ä¿¡æ¯ |
| | | * |
| | | * @param branchid AIå¤å¼æµç¨èç¹åæ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneFlownodebranchByBranchid(Long branchid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneGlobalconfig; |
| | | |
| | | /** |
| | | * AIå¤å¼å
¨å±é
ç½®Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneGlobalconfigService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param gblconfigid AIå¤å¼å
¨å±é
ç½®ä¸»é® |
| | | * @return AIå¤å¼å
¨å±é
ç½® |
| | | */ |
| | | public IvrSceneGlobalconfig selectIvrSceneGlobalconfigByGblconfigid(Long gblconfigid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼å
¨å±é
ç½®å表 |
| | | * |
| | | * @param ivrSceneGlobalconfig AIå¤å¼å
¨å±é
ç½® |
| | | * @return AIå¤å¼å
¨å±é
ç½®éå |
| | | */ |
| | | public List<IvrSceneGlobalconfig> selectIvrSceneGlobalconfigList(IvrSceneGlobalconfig ivrSceneGlobalconfig); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param ivrSceneGlobalconfig AIå¤å¼å
¨å±é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneGlobalconfig(IvrSceneGlobalconfig ivrSceneGlobalconfig); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param ivrSceneGlobalconfig AIå¤å¼å
¨å±é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneGlobalconfig(IvrSceneGlobalconfig ivrSceneGlobalconfig); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param gblconfigids éè¦å é¤çAIå¤å¼å
¨å±é
置主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneGlobalconfigByGblconfigids(Long[] gblconfigids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼å
¨å±é
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param gblconfigid AIå¤å¼å
¨å±é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneGlobalconfigByGblconfigid(Long gblconfigid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneIntent; |
| | | |
| | | /** |
| | | * AIå¤å¼æå¾Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneIntentService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æå¾ |
| | | * |
| | | * @param sceneintentid AIå¤å¼æå¾ä¸»é® |
| | | * @return AIå¤å¼æå¾ |
| | | */ |
| | | public IvrSceneIntent selectIvrSceneIntentBySceneintentid(Long sceneintentid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æå¾å表 |
| | | * |
| | | * @param ivrSceneIntent AIå¤å¼æå¾ |
| | | * @return AIå¤å¼æå¾éå |
| | | */ |
| | | public List<IvrSceneIntent> selectIvrSceneIntentList(IvrSceneIntent ivrSceneIntent); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æå¾ |
| | | * |
| | | * @param ivrSceneIntent AIå¤å¼æå¾ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneIntent(IvrSceneIntent ivrSceneIntent); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æå¾ |
| | | * |
| | | * @param ivrSceneIntent AIå¤å¼æå¾ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneIntent(IvrSceneIntent ivrSceneIntent); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æå¾ |
| | | * |
| | | * @param sceneintentids éè¦å é¤çAIå¤å¼æå¾ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneIntentBySceneintentids(Long[] sceneintentids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æå¾ä¿¡æ¯ |
| | | * |
| | | * @param sceneintentid AIå¤å¼æå¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneIntentBySceneintentid(Long sceneintentid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneRecall; |
| | | |
| | | /** |
| | | * AIå¤å¼éæ¨é
ç½®Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneRecallService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param recallid AIå¤å¼éæ¨é
ç½®ä¸»é® |
| | | * @return AIå¤å¼éæ¨é
ç½® |
| | | */ |
| | | public IvrSceneRecall selectIvrSceneRecallByRecallid(Long recallid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼éæ¨é
ç½®å表 |
| | | * |
| | | * @param ivrSceneRecall AIå¤å¼éæ¨é
ç½® |
| | | * @return AIå¤å¼éæ¨é
ç½®éå |
| | | */ |
| | | public List<IvrSceneRecall> selectIvrSceneRecallList(IvrSceneRecall ivrSceneRecall); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param ivrSceneRecall AIå¤å¼éæ¨é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneRecall(IvrSceneRecall ivrSceneRecall); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param ivrSceneRecall AIå¤å¼éæ¨é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneRecall(IvrSceneRecall ivrSceneRecall); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param recallids éè¦å é¤çAIå¤å¼éæ¨é
置主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneRecallByRecallids(Long[] recallids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼éæ¨é
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param recallid AIå¤å¼éæ¨é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneRecallByRecallid(Long recallid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneScript; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneScriptService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param scenescrid AIå¤å¼è¯æ¯ä¸»é® |
| | | * @return AIå¤å¼è¯æ¯ |
| | | */ |
| | | public IvrSceneScript selectIvrSceneScriptByScenescrid(Long scenescrid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯å表 |
| | | * |
| | | * @param ivrSceneScript AIå¤å¼è¯æ¯ |
| | | * @return AIå¤å¼è¯æ¯éå |
| | | */ |
| | | public List<IvrSceneScript> selectIvrSceneScriptList(IvrSceneScript ivrSceneScript); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param ivrSceneScript AIå¤å¼è¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneScript(IvrSceneScript ivrSceneScript); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param ivrSceneScript AIå¤å¼è¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneScript(IvrSceneScript ivrSceneScript); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param scenescrids éè¦å é¤çAIå¤å¼è¯æ¯ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneScriptByScenescrids(Long[] scenescrids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼è¯æ¯ä¿¡æ¯ |
| | | * |
| | | * @param scenescrid AIå¤å¼è¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneScriptByScenescrid(Long scenescrid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrSceneScriptmodel; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯æ¨¡åServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneScriptmodelService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param scenemodid AIå¤å¼è¯æ¯æ¨¡åä¸»é® |
| | | * @return AIå¤å¼è¯æ¯æ¨¡å |
| | | */ |
| | | public IvrSceneScriptmodel selectIvrSceneScriptmodelByScenemodid(Long scenemodid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯æ¨¡åå表 |
| | | * |
| | | * @param ivrSceneScriptmodel AIå¤å¼è¯æ¯æ¨¡å |
| | | * @return AIå¤å¼è¯æ¯æ¨¡åéå |
| | | */ |
| | | public List<IvrSceneScriptmodel> selectIvrSceneScriptmodelList(IvrSceneScriptmodel ivrSceneScriptmodel); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrSceneScriptmodel AIå¤å¼è¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrSceneScriptmodel(IvrSceneScriptmodel ivrSceneScriptmodel); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrSceneScriptmodel AIå¤å¼è¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrSceneScriptmodel(IvrSceneScriptmodel ivrSceneScriptmodel); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param scenemodids éè¦å é¤çAIå¤å¼è¯æ¯æ¨¡å主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneScriptmodelByScenemodids(Long[] scenemodids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼è¯æ¯æ¨¡åä¿¡æ¯ |
| | | * |
| | | * @param scenemodid AIå¤å¼è¯æ¯æ¨¡åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneScriptmodelByScenemodid(Long scenemodid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrScene; |
| | | |
| | | /** |
| | | * AIå¤å¼åºæ¯ç®¡çServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrSceneService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param sceneid AIå¤å¼åºæ¯ç®¡çä¸»é® |
| | | * @return AIå¤å¼åºæ¯ç®¡ç |
| | | */ |
| | | public IvrScene selectIvrSceneBySceneid(Long sceneid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼åºæ¯ç®¡çå表 |
| | | * |
| | | * @param ivrScene AIå¤å¼åºæ¯ç®¡ç |
| | | * @return AIå¤å¼åºæ¯ç®¡çéå |
| | | */ |
| | | public List<IvrScene> selectIvrSceneList(IvrScene ivrScene); |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param ivrScene AIå¤å¼åºæ¯ç®¡ç |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrScene(IvrScene ivrScene); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param ivrScene AIå¤å¼åºæ¯ç®¡ç |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrScene(IvrScene ivrScene); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param sceneids éè¦å é¤çAIå¤å¼åºæ¯ç®¡ç主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneBySceneids(Long[] sceneids); |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼åºæ¯ç®¡çä¿¡æ¯ |
| | | * |
| | | * @param sceneid AIå¤å¼åºæ¯ç®¡çä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrSceneBySceneid(Long sceneid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.IvrScenecategory; |
| | | |
| | | /** |
| | | * AIæå¡åºæ¯ç®¡çåç±»Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface IIvrScenecategoryService |
| | | { |
| | | /** |
| | | * æ¥è¯¢AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param scenecatid AIæå¡åºæ¯ç®¡çåç±»ä¸»é® |
| | | * @return AIæå¡åºæ¯ç®¡çåç±» |
| | | */ |
| | | public IvrScenecategory selectIvrScenecategoryByScenecatid(Long scenecatid); |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¡åºæ¯ç®¡çåç±»å表 |
| | | * |
| | | * @param ivrScenecategory AIæå¡åºæ¯ç®¡çåç±» |
| | | * @return AIæå¡åºæ¯ç®¡çåç±»éå |
| | | */ |
| | | public List<IvrScenecategory> selectIvrScenecategoryList(IvrScenecategory ivrScenecategory); |
| | | |
| | | /** |
| | | * æ°å¢AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param ivrScenecategory AIæå¡åºæ¯ç®¡çåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertIvrScenecategory(IvrScenecategory ivrScenecategory); |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param ivrScenecategory AIæå¡åºæ¯ç®¡çåç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateIvrScenecategory(IvrScenecategory ivrScenecategory); |
| | | |
| | | /** |
| | | * æ¹éå é¤AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param scenecatids éè¦å é¤çAIæå¡åºæ¯ç®¡çå类主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrScenecategoryByScenecatids(Long[] scenecatids); |
| | | |
| | | /** |
| | | * å é¤AIæå¡åºæ¯ç®¡çåç±»ä¿¡æ¯ |
| | | * |
| | | * @param scenecatid AIæå¡åºæ¯ç®¡çåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteIvrScenecategoryByScenecatid(Long scenecatid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SmsParam; |
| | | |
| | | /** |
| | | * çä¿¡åæ°Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface ISmsParamService |
| | | { |
| | | /** |
| | | * æ¥è¯¢çä¿¡åæ° |
| | | * |
| | | * @param paramid çä¿¡åæ°ä¸»é® |
| | | * @return çä¿¡åæ° |
| | | */ |
| | | public SmsParam selectSmsParamByParamid(Long paramid); |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡åæ°å表 |
| | | * |
| | | * @param smsParam çä¿¡åæ° |
| | | * @return çä¿¡åæ°éå |
| | | */ |
| | | public List<SmsParam> selectSmsParamList(SmsParam smsParam); |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡åæ° |
| | | * |
| | | * @param smsParam çä¿¡åæ° |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSmsParam(SmsParam smsParam); |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡åæ° |
| | | * |
| | | * @param smsParam çä¿¡åæ° |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSmsParam(SmsParam smsParam); |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡åæ° |
| | | * |
| | | * @param paramids éè¦å é¤ççä¿¡åæ°ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsParamByParamids(Long[] paramids); |
| | | |
| | | /** |
| | | * å é¤çä¿¡åæ°ä¿¡æ¯ |
| | | * |
| | | * @param paramid çä¿¡åæ°ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsParamByParamid(Long paramid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SmsRecords; |
| | | |
| | | /** |
| | | * çä¿¡è®°å½Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface ISmsRecordsService |
| | | { |
| | | /** |
| | | * æ¥è¯¢çä¿¡è®°å½ |
| | | * |
| | | * @param recordid çä¿¡è®°å½ä¸»é® |
| | | * @return çä¿¡è®°å½ |
| | | */ |
| | | public SmsRecords selectSmsRecordsByRecordid(Long recordid); |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è®°å½å表 |
| | | * |
| | | * @param smsRecords çä¿¡è®°å½ |
| | | * @return çä¿¡è®°å½éå |
| | | */ |
| | | public List<SmsRecords> selectSmsRecordsList(SmsRecords smsRecords); |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡è®°å½ |
| | | * |
| | | * @param smsRecords çä¿¡è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSmsRecords(SmsRecords smsRecords); |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡è®°å½ |
| | | * |
| | | * @param smsRecords çä¿¡è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSmsRecords(SmsRecords smsRecords); |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡è®°å½ |
| | | * |
| | | * @param recordids éè¦å é¤ççä¿¡è®°å½ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsRecordsByRecordids(Long[] recordids); |
| | | |
| | | /** |
| | | * å é¤çä¿¡è®°å½ä¿¡æ¯ |
| | | * |
| | | * @param recordid çä¿¡è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsRecordsByRecordid(Long recordid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SmsTemplet; |
| | | |
| | | /** |
| | | * ç信模æ¿Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | public interface ISmsTempletService |
| | | { |
| | | /** |
| | | * æ¥è¯¢çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param templetid ç信模æ¿ä¸»é® |
| | | * @return çä¿¡æ¨¡æ¿ |
| | | */ |
| | | public SmsTemplet selectSmsTempletByTempletid(Long templetid); |
| | | |
| | | /** |
| | | * æ¥è¯¢ç信模æ¿å表 |
| | | * |
| | | * @param smsTemplet çä¿¡æ¨¡æ¿ |
| | | * @return ç信模æ¿éå |
| | | */ |
| | | public List<SmsTemplet> selectSmsTempletList(SmsTemplet smsTemplet); |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param smsTemplet çä¿¡æ¨¡æ¿ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSmsTemplet(SmsTemplet smsTemplet); |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param smsTemplet çä¿¡æ¨¡æ¿ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSmsTemplet(SmsTemplet smsTemplet); |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param templetids éè¦å é¤çç信模æ¿ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsTempletByTempletids(Long[] templetids); |
| | | |
| | | /** |
| | | * å é¤ç信模æ¿ä¿¡æ¯ |
| | | * |
| | | * @param templetid ç信模æ¿ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSmsTempletByTempletid(Long templetid); |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.BaseSmsaccountMapper; |
| | | import com.smartor.domain.BaseSmsaccount; |
| | | import com.smartor.service.IBaseSmsaccountService; |
| | | |
| | | /** |
| | | * çä¿¡è´¦å·Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class BaseSmsaccountServiceImpl implements IBaseSmsaccountService |
| | | { |
| | | @Autowired |
| | | private BaseSmsaccountMapper baseSmsaccountMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è´¦å· |
| | | * |
| | | * @param smsacountid çä¿¡è´¦å·ä¸»é® |
| | | * @return çä¿¡è´¦å· |
| | | */ |
| | | @Override |
| | | public BaseSmsaccount selectBaseSmsaccountBySmsacountid(Long smsacountid) |
| | | { |
| | | return baseSmsaccountMapper.selectBaseSmsaccountBySmsacountid(smsacountid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è´¦å·å表 |
| | | * |
| | | * @param baseSmsaccount çä¿¡è´¦å· |
| | | * @return çä¿¡è´¦å· |
| | | */ |
| | | @Override |
| | | public List<BaseSmsaccount> selectBaseSmsaccountList(BaseSmsaccount baseSmsaccount) |
| | | { |
| | | return baseSmsaccountMapper.selectBaseSmsaccountList(baseSmsaccount); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡è´¦å· |
| | | * |
| | | * @param baseSmsaccount çä¿¡è´¦å· |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertBaseSmsaccount(BaseSmsaccount baseSmsaccount) |
| | | { |
| | | baseSmsaccount.setCreateTime(DateUtils.getNowDate()); |
| | | return baseSmsaccountMapper.insertBaseSmsaccount(baseSmsaccount); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡è´¦å· |
| | | * |
| | | * @param baseSmsaccount çä¿¡è´¦å· |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateBaseSmsaccount(BaseSmsaccount baseSmsaccount) |
| | | { |
| | | baseSmsaccount.setUpdateTime(DateUtils.getNowDate()); |
| | | return baseSmsaccountMapper.updateBaseSmsaccount(baseSmsaccount); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡è´¦å· |
| | | * |
| | | * @param smsacountids éè¦å é¤ççä¿¡è´¦å·ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteBaseSmsaccountBySmsacountids(Long[] smsacountids) |
| | | { |
| | | return baseSmsaccountMapper.deleteBaseSmsaccountBySmsacountids(smsacountids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤çä¿¡è´¦å·ä¿¡æ¯ |
| | | * |
| | | * @param smsacountid çä¿¡è´¦å·ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteBaseSmsaccountBySmsacountid(Long smsacountid) |
| | | { |
| | | return baseSmsaccountMapper.deleteBaseSmsaccountBySmsacountid(smsacountid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibIntentMapper; |
| | | import com.smartor.domain.IvrLibIntent; |
| | | import com.smartor.service.IIvrLibIntentService; |
| | | |
| | | /** |
| | | * AIæå¾åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrLibIntentServiceImpl implements IIvrLibIntentService |
| | | { |
| | | @Autowired |
| | | private IvrLibIntentMapper ivrLibIntentMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åº |
| | | * |
| | | * @param intentid AIæå¾åºä¸»é® |
| | | * @return AIæå¾åº |
| | | */ |
| | | @Override |
| | | public IvrLibIntent selectIvrLibIntentByIntentid(Long intentid) |
| | | { |
| | | return ivrLibIntentMapper.selectIvrLibIntentByIntentid(intentid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºå表 |
| | | * |
| | | * @param ivrLibIntent AIæå¾åº |
| | | * @return AIæå¾åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibIntent> selectIvrLibIntentList(IvrLibIntent ivrLibIntent) |
| | | { |
| | | return ivrLibIntentMapper.selectIvrLibIntentList(ivrLibIntent); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIæå¾åº |
| | | * |
| | | * @param ivrLibIntent AIæå¾åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibIntent(IvrLibIntent ivrLibIntent) |
| | | { |
| | | ivrLibIntent.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibIntentMapper.insertIvrLibIntent(ivrLibIntent); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¾åº |
| | | * |
| | | * @param ivrLibIntent AIæå¾åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibIntent(IvrLibIntent ivrLibIntent) |
| | | { |
| | | ivrLibIntent.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibIntentMapper.updateIvrLibIntent(ivrLibIntent); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIæå¾åº |
| | | * |
| | | * @param intentids éè¦å é¤çAIæå¾åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibIntentByIntentids(Long[] intentids) |
| | | { |
| | | return ivrLibIntentMapper.deleteIvrLibIntentByIntentids(intentids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIæå¾åºä¿¡æ¯ |
| | | * |
| | | * @param intentid AIæå¾åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibIntentByIntentid(Long intentid) |
| | | { |
| | | return ivrLibIntentMapper.deleteIvrLibIntentByIntentid(intentid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibIntentcategoryMapper; |
| | | import com.smartor.domain.IvrLibIntentcategory; |
| | | import com.smartor.service.IIvrLibIntentcategoryService; |
| | | |
| | | /** |
| | | * AIæå¾åºåç±»Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrLibIntentcategoryServiceImpl implements IIvrLibIntentcategoryService |
| | | { |
| | | @Autowired |
| | | private IvrLibIntentcategoryMapper ivrLibIntentcategoryMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºåç±» |
| | | * |
| | | * @param intertcatid AIæå¾åºåç±»ä¸»é® |
| | | * @return AIæå¾åºåç±» |
| | | */ |
| | | @Override |
| | | public IvrLibIntentcategory selectIvrLibIntentcategoryByIntertcatid(Long intertcatid) |
| | | { |
| | | return ivrLibIntentcategoryMapper.selectIvrLibIntentcategoryByIntertcatid(intertcatid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¾åºåç±»å表 |
| | | * |
| | | * @param ivrLibIntentcategory AIæå¾åºåç±» |
| | | * @return AIæå¾åºåç±» |
| | | */ |
| | | @Override |
| | | public List<IvrLibIntentcategory> selectIvrLibIntentcategoryList(IvrLibIntentcategory ivrLibIntentcategory) |
| | | { |
| | | return ivrLibIntentcategoryMapper.selectIvrLibIntentcategoryList(ivrLibIntentcategory); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIæå¾åºåç±» |
| | | * |
| | | * @param ivrLibIntentcategory AIæå¾åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibIntentcategory(IvrLibIntentcategory ivrLibIntentcategory) |
| | | { |
| | | ivrLibIntentcategory.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibIntentcategoryMapper.insertIvrLibIntentcategory(ivrLibIntentcategory); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¾åºåç±» |
| | | * |
| | | * @param ivrLibIntentcategory AIæå¾åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibIntentcategory(IvrLibIntentcategory ivrLibIntentcategory) |
| | | { |
| | | ivrLibIntentcategory.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibIntentcategoryMapper.updateIvrLibIntentcategory(ivrLibIntentcategory); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIæå¾åºåç±» |
| | | * |
| | | * @param intertcatids éè¦å é¤çAIæå¾åºåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibIntentcategoryByIntertcatids(Long[] intertcatids) |
| | | { |
| | | return ivrLibIntentcategoryMapper.deleteIvrLibIntentcategoryByIntertcatids(intertcatids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIæå¾åºåç±»ä¿¡æ¯ |
| | | * |
| | | * @param intertcatid AIæå¾åºåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibIntentcategoryByIntertcatid(Long intertcatid) |
| | | { |
| | | return ivrLibIntentcategoryMapper.deleteIvrLibIntentcategoryByIntertcatid(intertcatid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibScriptMapper; |
| | | import com.smartor.domain.IvrLibScript; |
| | | import com.smartor.service.IIvrLibScriptService; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrLibScriptServiceImpl implements IIvrLibScriptService |
| | | { |
| | | @Autowired |
| | | private IvrLibScriptMapper ivrLibScriptMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åº |
| | | * |
| | | * @param scriptid AIè¯æ¯åºä¸»é® |
| | | * @return AIè¯æ¯åº |
| | | */ |
| | | @Override |
| | | public IvrLibScript selectIvrLibScriptByScriptid(Long scriptid) |
| | | { |
| | | return ivrLibScriptMapper.selectIvrLibScriptByScriptid(scriptid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºå表 |
| | | * |
| | | * @param ivrLibScript AIè¯æ¯åº |
| | | * @return AIè¯æ¯åº |
| | | */ |
| | | @Override |
| | | public List<IvrLibScript> selectIvrLibScriptList(IvrLibScript ivrLibScript) |
| | | { |
| | | return ivrLibScriptMapper.selectIvrLibScriptList(ivrLibScript); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯åº |
| | | * |
| | | * @param ivrLibScript AIè¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibScript(IvrLibScript ivrLibScript) |
| | | { |
| | | ivrLibScript.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibScriptMapper.insertIvrLibScript(ivrLibScript); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯åº |
| | | * |
| | | * @param ivrLibScript AIè¯æ¯åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibScript(IvrLibScript ivrLibScript) |
| | | { |
| | | ivrLibScript.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibScriptMapper.updateIvrLibScript(ivrLibScript); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIè¯æ¯åº |
| | | * |
| | | * @param scriptids éè¦å é¤çAIè¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibScriptByScriptids(Long[] scriptids) |
| | | { |
| | | return ivrLibScriptMapper.deleteIvrLibScriptByScriptids(scriptids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯åºä¿¡æ¯ |
| | | * |
| | | * @param scriptid AIè¯æ¯åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibScriptByScriptid(Long scriptid) |
| | | { |
| | | return ivrLibScriptMapper.deleteIvrLibScriptByScriptid(scriptid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibScriptcategoryMapper; |
| | | import com.smartor.domain.IvrLibScriptcategory; |
| | | import com.smartor.service.IIvrLibScriptcategoryService; |
| | | |
| | | /** |
| | | * AIè¯æ¯åºåç±»Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrLibScriptcategoryServiceImpl implements IIvrLibScriptcategoryService |
| | | { |
| | | @Autowired |
| | | private IvrLibScriptcategoryMapper ivrLibScriptcategoryMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºåç±» |
| | | * |
| | | * @param categoryid AIè¯æ¯åºåç±»ä¸»é® |
| | | * @return AIè¯æ¯åºåç±» |
| | | */ |
| | | @Override |
| | | public IvrLibScriptcategory selectIvrLibScriptcategoryByCategoryid(Long categoryid) |
| | | { |
| | | return ivrLibScriptcategoryMapper.selectIvrLibScriptcategoryByCategoryid(categoryid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯åºåç±»å表 |
| | | * |
| | | * @param ivrLibScriptcategory AIè¯æ¯åºåç±» |
| | | * @return AIè¯æ¯åºåç±» |
| | | */ |
| | | @Override |
| | | public List<IvrLibScriptcategory> selectIvrLibScriptcategoryList(IvrLibScriptcategory ivrLibScriptcategory) |
| | | { |
| | | return ivrLibScriptcategoryMapper.selectIvrLibScriptcategoryList(ivrLibScriptcategory); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯åºåç±» |
| | | * |
| | | * @param ivrLibScriptcategory AIè¯æ¯åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibScriptcategory(IvrLibScriptcategory ivrLibScriptcategory) |
| | | { |
| | | ivrLibScriptcategory.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibScriptcategoryMapper.insertIvrLibScriptcategory(ivrLibScriptcategory); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯åºåç±» |
| | | * |
| | | * @param ivrLibScriptcategory AIè¯æ¯åºåç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibScriptcategory(IvrLibScriptcategory ivrLibScriptcategory) |
| | | { |
| | | ivrLibScriptcategory.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibScriptcategoryMapper.updateIvrLibScriptcategory(ivrLibScriptcategory); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIè¯æ¯åºåç±» |
| | | * |
| | | * @param categoryids éè¦å é¤çAIè¯æ¯åºåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibScriptcategoryByCategoryids(Long[] categoryids) |
| | | { |
| | | return ivrLibScriptcategoryMapper.deleteIvrLibScriptcategoryByCategoryids(categoryids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯åºåç±»ä¿¡æ¯ |
| | | * |
| | | * @param categoryid AIè¯æ¯åºåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibScriptcategoryByCategoryid(Long categoryid) |
| | | { |
| | | return ivrLibScriptcategoryMapper.deleteIvrLibScriptcategoryByCategoryid(categoryid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrLibScriptmodelMapper; |
| | | import com.smartor.domain.IvrLibScriptmodel; |
| | | import com.smartor.service.IIvrLibScriptmodelService; |
| | | |
| | | /** |
| | | * AIè¯æ¯æ¨¡åServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrLibScriptmodelServiceImpl implements IIvrLibScriptmodelService |
| | | { |
| | | @Autowired |
| | | private IvrLibScriptmodelMapper ivrLibScriptmodelMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param modelid AIè¯æ¯æ¨¡åä¸»é® |
| | | * @return AIè¯æ¯æ¨¡å |
| | | */ |
| | | @Override |
| | | public IvrLibScriptmodel selectIvrLibScriptmodelByModelid(Long modelid) |
| | | { |
| | | return ivrLibScriptmodelMapper.selectIvrLibScriptmodelByModelid(modelid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIè¯æ¯æ¨¡åå表 |
| | | * |
| | | * @param ivrLibScriptmodel AIè¯æ¯æ¨¡å |
| | | * @return AIè¯æ¯æ¨¡å |
| | | */ |
| | | @Override |
| | | public List<IvrLibScriptmodel> selectIvrLibScriptmodelList(IvrLibScriptmodel ivrLibScriptmodel) |
| | | { |
| | | return ivrLibScriptmodelMapper.selectIvrLibScriptmodelList(ivrLibScriptmodel); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrLibScriptmodel AIè¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrLibScriptmodel(IvrLibScriptmodel ivrLibScriptmodel) |
| | | { |
| | | ivrLibScriptmodel.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrLibScriptmodelMapper.insertIvrLibScriptmodel(ivrLibScriptmodel); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrLibScriptmodel AIè¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrLibScriptmodel(IvrLibScriptmodel ivrLibScriptmodel) |
| | | { |
| | | ivrLibScriptmodel.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrLibScriptmodelMapper.updateIvrLibScriptmodel(ivrLibScriptmodel); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIè¯æ¯æ¨¡å |
| | | * |
| | | * @param modelids éè¦å é¤çAIè¯æ¯æ¨¡åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibScriptmodelByModelids(Long[] modelids) |
| | | { |
| | | return ivrLibScriptmodelMapper.deleteIvrLibScriptmodelByModelids(modelids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIè¯æ¯æ¨¡åä¿¡æ¯ |
| | | * |
| | | * @param modelid AIè¯æ¯æ¨¡åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrLibScriptmodelByModelid(Long modelid) |
| | | { |
| | | return ivrLibScriptmodelMapper.deleteIvrLibScriptmodelByModelid(modelid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneExecuteconfigMapper; |
| | | import com.smartor.domain.IvrSceneExecuteconfig; |
| | | import com.smartor.service.IIvrSceneExecuteconfigService; |
| | | |
| | | /** |
| | | * AIå¤å¼æ§è¡é
ç½®Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneExecuteconfigServiceImpl implements IIvrSceneExecuteconfigService |
| | | { |
| | | @Autowired |
| | | private IvrSceneExecuteconfigMapper ivrSceneExecuteconfigMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param scenecfgid AIå¤å¼æ§è¡é
ç½®ä¸»é® |
| | | * @return AIå¤å¼æ§è¡é
ç½® |
| | | */ |
| | | @Override |
| | | public IvrSceneExecuteconfig selectIvrSceneExecuteconfigByScenecfgid(Long scenecfgid) |
| | | { |
| | | return ivrSceneExecuteconfigMapper.selectIvrSceneExecuteconfigByScenecfgid(scenecfgid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æ§è¡é
ç½®å表 |
| | | * |
| | | * @param ivrSceneExecuteconfig AIå¤å¼æ§è¡é
ç½® |
| | | * @return AIå¤å¼æ§è¡é
ç½® |
| | | */ |
| | | @Override |
| | | public List<IvrSceneExecuteconfig> selectIvrSceneExecuteconfigList(IvrSceneExecuteconfig ivrSceneExecuteconfig) |
| | | { |
| | | return ivrSceneExecuteconfigMapper.selectIvrSceneExecuteconfigList(ivrSceneExecuteconfig); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param ivrSceneExecuteconfig AIå¤å¼æ§è¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrSceneExecuteconfig(IvrSceneExecuteconfig ivrSceneExecuteconfig) |
| | | { |
| | | ivrSceneExecuteconfig.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneExecuteconfigMapper.insertIvrSceneExecuteconfig(ivrSceneExecuteconfig); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param ivrSceneExecuteconfig AIå¤å¼æ§è¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrSceneExecuteconfig(IvrSceneExecuteconfig ivrSceneExecuteconfig) |
| | | { |
| | | ivrSceneExecuteconfig.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneExecuteconfigMapper.updateIvrSceneExecuteconfig(ivrSceneExecuteconfig); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æ§è¡é
ç½® |
| | | * |
| | | * @param scenecfgids éè¦å é¤çAIå¤å¼æ§è¡é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneExecuteconfigByScenecfgids(Long[] scenecfgids) |
| | | { |
| | | return ivrSceneExecuteconfigMapper.deleteIvrSceneExecuteconfigByScenecfgids(scenecfgids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æ§è¡é
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param scenecfgid AIå¤å¼æ§è¡é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneExecuteconfigByScenecfgid(Long scenecfgid) |
| | | { |
| | | return ivrSceneExecuteconfigMapper.deleteIvrSceneExecuteconfigByScenecfgid(scenecfgid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneFlowMapper; |
| | | import com.smartor.domain.IvrSceneFlow; |
| | | import com.smartor.service.IIvrSceneFlowService; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneFlowServiceImpl implements IIvrSceneFlowService |
| | | { |
| | | @Autowired |
| | | private IvrSceneFlowMapper ivrSceneFlowMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨ |
| | | * |
| | | * @param flowid AIå¤å¼æµç¨ä¸»é® |
| | | * @return AIå¤å¼æµç¨ |
| | | */ |
| | | @Override |
| | | public IvrSceneFlow selectIvrSceneFlowByFlowid(Long flowid) |
| | | { |
| | | return ivrSceneFlowMapper.selectIvrSceneFlowByFlowid(flowid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨å表 |
| | | * |
| | | * @param ivrSceneFlow AIå¤å¼æµç¨ |
| | | * @return AIå¤å¼æµç¨ |
| | | */ |
| | | @Override |
| | | public List<IvrSceneFlow> selectIvrSceneFlowList(IvrSceneFlow ivrSceneFlow) |
| | | { |
| | | return ivrSceneFlowMapper.selectIvrSceneFlowList(ivrSceneFlow); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨ |
| | | * |
| | | * @param ivrSceneFlow AIå¤å¼æµç¨ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrSceneFlow(IvrSceneFlow ivrSceneFlow) |
| | | { |
| | | ivrSceneFlow.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneFlowMapper.insertIvrSceneFlow(ivrSceneFlow); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨ |
| | | * |
| | | * @param ivrSceneFlow AIå¤å¼æµç¨ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrSceneFlow(IvrSceneFlow ivrSceneFlow) |
| | | { |
| | | ivrSceneFlow.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneFlowMapper.updateIvrSceneFlow(ivrSceneFlow); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æµç¨ |
| | | * |
| | | * @param flowids éè¦å é¤çAIå¤å¼æµç¨ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneFlowByFlowids(Long[] flowids) |
| | | { |
| | | return ivrSceneFlowMapper.deleteIvrSceneFlowByFlowids(flowids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨ä¿¡æ¯ |
| | | * |
| | | * @param flowid AIå¤å¼æµç¨ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneFlowByFlowid(Long flowid) |
| | | { |
| | | return ivrSceneFlowMapper.deleteIvrSceneFlowByFlowid(flowid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneFlownodeMapper; |
| | | import com.smartor.domain.IvrSceneFlownode; |
| | | import com.smartor.service.IIvrSceneFlownodeService; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneFlownodeServiceImpl implements IIvrSceneFlownodeService |
| | | { |
| | | @Autowired |
| | | private IvrSceneFlownodeMapper ivrSceneFlownodeMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param flownodeid AIå¤å¼æµç¨èç¹ä¸»é® |
| | | * @return AIå¤å¼æµç¨èç¹ |
| | | */ |
| | | @Override |
| | | public IvrSceneFlownode selectIvrSceneFlownodeByFlownodeid(Long flownodeid) |
| | | { |
| | | return ivrSceneFlownodeMapper.selectIvrSceneFlownodeByFlownodeid(flownodeid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹å表 |
| | | * |
| | | * @param ivrSceneFlownode AIå¤å¼æµç¨èç¹ |
| | | * @return AIå¤å¼æµç¨èç¹ |
| | | */ |
| | | @Override |
| | | public List<IvrSceneFlownode> selectIvrSceneFlownodeList(IvrSceneFlownode ivrSceneFlownode) |
| | | { |
| | | return ivrSceneFlownodeMapper.selectIvrSceneFlownodeList(ivrSceneFlownode); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param ivrSceneFlownode AIå¤å¼æµç¨èç¹ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrSceneFlownode(IvrSceneFlownode ivrSceneFlownode) |
| | | { |
| | | ivrSceneFlownode.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneFlownodeMapper.insertIvrSceneFlownode(ivrSceneFlownode); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param ivrSceneFlownode AIå¤å¼æµç¨èç¹ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrSceneFlownode(IvrSceneFlownode ivrSceneFlownode) |
| | | { |
| | | ivrSceneFlownode.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneFlownodeMapper.updateIvrSceneFlownode(ivrSceneFlownode); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æµç¨èç¹ |
| | | * |
| | | * @param flownodeids éè¦å é¤çAIå¤å¼æµç¨èç¹ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneFlownodeByFlownodeids(Long[] flownodeids) |
| | | { |
| | | return ivrSceneFlownodeMapper.deleteIvrSceneFlownodeByFlownodeids(flownodeids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨èç¹ä¿¡æ¯ |
| | | * |
| | | * @param flownodeid AIå¤å¼æµç¨èç¹ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneFlownodeByFlownodeid(Long flownodeid) |
| | | { |
| | | return ivrSceneFlownodeMapper.deleteIvrSceneFlownodeByFlownodeid(flownodeid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneFlownodebranchMapper; |
| | | import com.smartor.domain.IvrSceneFlownodebranch; |
| | | import com.smartor.service.IIvrSceneFlownodebranchService; |
| | | |
| | | /** |
| | | * AIå¤å¼æµç¨èç¹åæ¯Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneFlownodebranchServiceImpl implements IIvrSceneFlownodebranchService |
| | | { |
| | | @Autowired |
| | | private IvrSceneFlownodebranchMapper ivrSceneFlownodebranchMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param branchid AIå¤å¼æµç¨èç¹åæ¯ä¸»é® |
| | | * @return AIå¤å¼æµç¨èç¹åæ¯ |
| | | */ |
| | | @Override |
| | | public IvrSceneFlownodebranch selectIvrSceneFlownodebranchByBranchid(Long branchid) |
| | | { |
| | | return ivrSceneFlownodebranchMapper.selectIvrSceneFlownodebranchByBranchid(branchid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æµç¨èç¹åæ¯å表 |
| | | * |
| | | * @param ivrSceneFlownodebranch AIå¤å¼æµç¨èç¹åæ¯ |
| | | * @return AIå¤å¼æµç¨èç¹åæ¯ |
| | | */ |
| | | @Override |
| | | public List<IvrSceneFlownodebranch> selectIvrSceneFlownodebranchList(IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | | { |
| | | return ivrSceneFlownodebranchMapper.selectIvrSceneFlownodebranchList(ivrSceneFlownodebranch); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param ivrSceneFlownodebranch AIå¤å¼æµç¨èç¹åæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrSceneFlownodebranch(IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | | { |
| | | ivrSceneFlownodebranch.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneFlownodebranchMapper.insertIvrSceneFlownodebranch(ivrSceneFlownodebranch); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param ivrSceneFlownodebranch AIå¤å¼æµç¨èç¹åæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrSceneFlownodebranch(IvrSceneFlownodebranch ivrSceneFlownodebranch) |
| | | { |
| | | ivrSceneFlownodebranch.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneFlownodebranchMapper.updateIvrSceneFlownodebranch(ivrSceneFlownodebranch); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æµç¨èç¹åæ¯ |
| | | * |
| | | * @param branchids éè¦å é¤çAIå¤å¼æµç¨èç¹åæ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneFlownodebranchByBranchids(Long[] branchids) |
| | | { |
| | | return ivrSceneFlownodebranchMapper.deleteIvrSceneFlownodebranchByBranchids(branchids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æµç¨èç¹åæ¯ä¿¡æ¯ |
| | | * |
| | | * @param branchid AIå¤å¼æµç¨èç¹åæ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneFlownodebranchByBranchid(Long branchid) |
| | | { |
| | | return ivrSceneFlownodebranchMapper.deleteIvrSceneFlownodebranchByBranchid(branchid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneGlobalconfigMapper; |
| | | import com.smartor.domain.IvrSceneGlobalconfig; |
| | | import com.smartor.service.IIvrSceneGlobalconfigService; |
| | | |
| | | /** |
| | | * AIå¤å¼å
¨å±é
ç½®Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneGlobalconfigServiceImpl implements IIvrSceneGlobalconfigService |
| | | { |
| | | @Autowired |
| | | private IvrSceneGlobalconfigMapper ivrSceneGlobalconfigMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param gblconfigid AIå¤å¼å
¨å±é
ç½®ä¸»é® |
| | | * @return AIå¤å¼å
¨å±é
ç½® |
| | | */ |
| | | @Override |
| | | public IvrSceneGlobalconfig selectIvrSceneGlobalconfigByGblconfigid(Long gblconfigid) |
| | | { |
| | | return ivrSceneGlobalconfigMapper.selectIvrSceneGlobalconfigByGblconfigid(gblconfigid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼å
¨å±é
ç½®å表 |
| | | * |
| | | * @param ivrSceneGlobalconfig AIå¤å¼å
¨å±é
ç½® |
| | | * @return AIå¤å¼å
¨å±é
ç½® |
| | | */ |
| | | @Override |
| | | public List<IvrSceneGlobalconfig> selectIvrSceneGlobalconfigList(IvrSceneGlobalconfig ivrSceneGlobalconfig) |
| | | { |
| | | return ivrSceneGlobalconfigMapper.selectIvrSceneGlobalconfigList(ivrSceneGlobalconfig); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param ivrSceneGlobalconfig AIå¤å¼å
¨å±é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrSceneGlobalconfig(IvrSceneGlobalconfig ivrSceneGlobalconfig) |
| | | { |
| | | ivrSceneGlobalconfig.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneGlobalconfigMapper.insertIvrSceneGlobalconfig(ivrSceneGlobalconfig); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param ivrSceneGlobalconfig AIå¤å¼å
¨å±é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrSceneGlobalconfig(IvrSceneGlobalconfig ivrSceneGlobalconfig) |
| | | { |
| | | ivrSceneGlobalconfig.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneGlobalconfigMapper.updateIvrSceneGlobalconfig(ivrSceneGlobalconfig); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼å
¨å±é
ç½® |
| | | * |
| | | * @param gblconfigids éè¦å é¤çAIå¤å¼å
¨å±é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneGlobalconfigByGblconfigids(Long[] gblconfigids) |
| | | { |
| | | return ivrSceneGlobalconfigMapper.deleteIvrSceneGlobalconfigByGblconfigids(gblconfigids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼å
¨å±é
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param gblconfigid AIå¤å¼å
¨å±é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneGlobalconfigByGblconfigid(Long gblconfigid) |
| | | { |
| | | return ivrSceneGlobalconfigMapper.deleteIvrSceneGlobalconfigByGblconfigid(gblconfigid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneIntentMapper; |
| | | import com.smartor.domain.IvrSceneIntent; |
| | | import com.smartor.service.IIvrSceneIntentService; |
| | | |
| | | /** |
| | | * AIå¤å¼æå¾Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneIntentServiceImpl implements IIvrSceneIntentService |
| | | { |
| | | @Autowired |
| | | private IvrSceneIntentMapper ivrSceneIntentMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æå¾ |
| | | * |
| | | * @param sceneintentid AIå¤å¼æå¾ä¸»é® |
| | | * @return AIå¤å¼æå¾ |
| | | */ |
| | | @Override |
| | | public IvrSceneIntent selectIvrSceneIntentBySceneintentid(Long sceneintentid) |
| | | { |
| | | return ivrSceneIntentMapper.selectIvrSceneIntentBySceneintentid(sceneintentid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼æå¾å表 |
| | | * |
| | | * @param ivrSceneIntent AIå¤å¼æå¾ |
| | | * @return AIå¤å¼æå¾ |
| | | */ |
| | | @Override |
| | | public List<IvrSceneIntent> selectIvrSceneIntentList(IvrSceneIntent ivrSceneIntent) |
| | | { |
| | | return ivrSceneIntentMapper.selectIvrSceneIntentList(ivrSceneIntent); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼æå¾ |
| | | * |
| | | * @param ivrSceneIntent AIå¤å¼æå¾ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrSceneIntent(IvrSceneIntent ivrSceneIntent) |
| | | { |
| | | ivrSceneIntent.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneIntentMapper.insertIvrSceneIntent(ivrSceneIntent); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼æå¾ |
| | | * |
| | | * @param ivrSceneIntent AIå¤å¼æå¾ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrSceneIntent(IvrSceneIntent ivrSceneIntent) |
| | | { |
| | | ivrSceneIntent.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneIntentMapper.updateIvrSceneIntent(ivrSceneIntent); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼æå¾ |
| | | * |
| | | * @param sceneintentids éè¦å é¤çAIå¤å¼æå¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneIntentBySceneintentids(Long[] sceneintentids) |
| | | { |
| | | return ivrSceneIntentMapper.deleteIvrSceneIntentBySceneintentids(sceneintentids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼æå¾ä¿¡æ¯ |
| | | * |
| | | * @param sceneintentid AIå¤å¼æå¾ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneIntentBySceneintentid(Long sceneintentid) |
| | | { |
| | | return ivrSceneIntentMapper.deleteIvrSceneIntentBySceneintentid(sceneintentid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneRecallMapper; |
| | | import com.smartor.domain.IvrSceneRecall; |
| | | import com.smartor.service.IIvrSceneRecallService; |
| | | |
| | | /** |
| | | * AIå¤å¼éæ¨é
ç½®Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneRecallServiceImpl implements IIvrSceneRecallService |
| | | { |
| | | @Autowired |
| | | private IvrSceneRecallMapper ivrSceneRecallMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param recallid AIå¤å¼éæ¨é
ç½®ä¸»é® |
| | | * @return AIå¤å¼éæ¨é
ç½® |
| | | */ |
| | | @Override |
| | | public IvrSceneRecall selectIvrSceneRecallByRecallid(Long recallid) |
| | | { |
| | | return ivrSceneRecallMapper.selectIvrSceneRecallByRecallid(recallid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼éæ¨é
ç½®å表 |
| | | * |
| | | * @param ivrSceneRecall AIå¤å¼éæ¨é
ç½® |
| | | * @return AIå¤å¼éæ¨é
ç½® |
| | | */ |
| | | @Override |
| | | public List<IvrSceneRecall> selectIvrSceneRecallList(IvrSceneRecall ivrSceneRecall) |
| | | { |
| | | return ivrSceneRecallMapper.selectIvrSceneRecallList(ivrSceneRecall); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param ivrSceneRecall AIå¤å¼éæ¨é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrSceneRecall(IvrSceneRecall ivrSceneRecall) |
| | | { |
| | | ivrSceneRecall.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneRecallMapper.insertIvrSceneRecall(ivrSceneRecall); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param ivrSceneRecall AIå¤å¼éæ¨é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrSceneRecall(IvrSceneRecall ivrSceneRecall) |
| | | { |
| | | ivrSceneRecall.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneRecallMapper.updateIvrSceneRecall(ivrSceneRecall); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼éæ¨é
ç½® |
| | | * |
| | | * @param recallids éè¦å é¤çAIå¤å¼éæ¨é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneRecallByRecallids(Long[] recallids) |
| | | { |
| | | return ivrSceneRecallMapper.deleteIvrSceneRecallByRecallids(recallids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼éæ¨é
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param recallid AIå¤å¼éæ¨é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneRecallByRecallid(Long recallid) |
| | | { |
| | | return ivrSceneRecallMapper.deleteIvrSceneRecallByRecallid(recallid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneScriptMapper; |
| | | import com.smartor.domain.IvrSceneScript; |
| | | import com.smartor.service.IIvrSceneScriptService; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneScriptServiceImpl implements IIvrSceneScriptService |
| | | { |
| | | @Autowired |
| | | private IvrSceneScriptMapper ivrSceneScriptMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param scenescrid AIå¤å¼è¯æ¯ä¸»é® |
| | | * @return AIå¤å¼è¯æ¯ |
| | | */ |
| | | @Override |
| | | public IvrSceneScript selectIvrSceneScriptByScenescrid(Long scenescrid) |
| | | { |
| | | return ivrSceneScriptMapper.selectIvrSceneScriptByScenescrid(scenescrid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯å表 |
| | | * |
| | | * @param ivrSceneScript AIå¤å¼è¯æ¯ |
| | | * @return AIå¤å¼è¯æ¯ |
| | | */ |
| | | @Override |
| | | public List<IvrSceneScript> selectIvrSceneScriptList(IvrSceneScript ivrSceneScript) |
| | | { |
| | | return ivrSceneScriptMapper.selectIvrSceneScriptList(ivrSceneScript); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param ivrSceneScript AIå¤å¼è¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrSceneScript(IvrSceneScript ivrSceneScript) |
| | | { |
| | | ivrSceneScript.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneScriptMapper.insertIvrSceneScript(ivrSceneScript); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param ivrSceneScript AIå¤å¼è¯æ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrSceneScript(IvrSceneScript ivrSceneScript) |
| | | { |
| | | ivrSceneScript.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneScriptMapper.updateIvrSceneScript(ivrSceneScript); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼è¯æ¯ |
| | | * |
| | | * @param scenescrids éè¦å é¤çAIå¤å¼è¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneScriptByScenescrids(Long[] scenescrids) |
| | | { |
| | | return ivrSceneScriptMapper.deleteIvrSceneScriptByScenescrids(scenescrids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼è¯æ¯ä¿¡æ¯ |
| | | * |
| | | * @param scenescrid AIå¤å¼è¯æ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneScriptByScenescrid(Long scenescrid) |
| | | { |
| | | return ivrSceneScriptMapper.deleteIvrSceneScriptByScenescrid(scenescrid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneScriptmodelMapper; |
| | | import com.smartor.domain.IvrSceneScriptmodel; |
| | | import com.smartor.service.IIvrSceneScriptmodelService; |
| | | |
| | | /** |
| | | * AIå¤å¼è¯æ¯æ¨¡åServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneScriptmodelServiceImpl implements IIvrSceneScriptmodelService |
| | | { |
| | | @Autowired |
| | | private IvrSceneScriptmodelMapper ivrSceneScriptmodelMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param scenemodid AIå¤å¼è¯æ¯æ¨¡åä¸»é® |
| | | * @return AIå¤å¼è¯æ¯æ¨¡å |
| | | */ |
| | | @Override |
| | | public IvrSceneScriptmodel selectIvrSceneScriptmodelByScenemodid(Long scenemodid) |
| | | { |
| | | return ivrSceneScriptmodelMapper.selectIvrSceneScriptmodelByScenemodid(scenemodid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼è¯æ¯æ¨¡åå表 |
| | | * |
| | | * @param ivrSceneScriptmodel AIå¤å¼è¯æ¯æ¨¡å |
| | | * @return AIå¤å¼è¯æ¯æ¨¡å |
| | | */ |
| | | @Override |
| | | public List<IvrSceneScriptmodel> selectIvrSceneScriptmodelList(IvrSceneScriptmodel ivrSceneScriptmodel) |
| | | { |
| | | return ivrSceneScriptmodelMapper.selectIvrSceneScriptmodelList(ivrSceneScriptmodel); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrSceneScriptmodel AIå¤å¼è¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrSceneScriptmodel(IvrSceneScriptmodel ivrSceneScriptmodel) |
| | | { |
| | | ivrSceneScriptmodel.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneScriptmodelMapper.insertIvrSceneScriptmodel(ivrSceneScriptmodel); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param ivrSceneScriptmodel AIå¤å¼è¯æ¯æ¨¡å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrSceneScriptmodel(IvrSceneScriptmodel ivrSceneScriptmodel) |
| | | { |
| | | ivrSceneScriptmodel.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneScriptmodelMapper.updateIvrSceneScriptmodel(ivrSceneScriptmodel); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼è¯æ¯æ¨¡å |
| | | * |
| | | * @param scenemodids éè¦å é¤çAIå¤å¼è¯æ¯æ¨¡åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneScriptmodelByScenemodids(Long[] scenemodids) |
| | | { |
| | | return ivrSceneScriptmodelMapper.deleteIvrSceneScriptmodelByScenemodids(scenemodids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼è¯æ¯æ¨¡åä¿¡æ¯ |
| | | * |
| | | * @param scenemodid AIå¤å¼è¯æ¯æ¨¡åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneScriptmodelByScenemodid(Long scenemodid) |
| | | { |
| | | return ivrSceneScriptmodelMapper.deleteIvrSceneScriptmodelByScenemodid(scenemodid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrSceneMapper; |
| | | import com.smartor.domain.IvrScene; |
| | | import com.smartor.service.IIvrSceneService; |
| | | |
| | | /** |
| | | * AIå¤å¼åºæ¯ç®¡çServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrSceneServiceImpl implements IIvrSceneService |
| | | { |
| | | @Autowired |
| | | private IvrSceneMapper ivrSceneMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param sceneid AIå¤å¼åºæ¯ç®¡çä¸»é® |
| | | * @return AIå¤å¼åºæ¯ç®¡ç |
| | | */ |
| | | @Override |
| | | public IvrScene selectIvrSceneBySceneid(Long sceneid) |
| | | { |
| | | return ivrSceneMapper.selectIvrSceneBySceneid(sceneid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIå¤å¼åºæ¯ç®¡çå表 |
| | | * |
| | | * @param ivrScene AIå¤å¼åºæ¯ç®¡ç |
| | | * @return AIå¤å¼åºæ¯ç®¡ç |
| | | */ |
| | | @Override |
| | | public List<IvrScene> selectIvrSceneList(IvrScene ivrScene) |
| | | { |
| | | return ivrSceneMapper.selectIvrSceneList(ivrScene); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param ivrScene AIå¤å¼åºæ¯ç®¡ç |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrScene(IvrScene ivrScene) |
| | | { |
| | | ivrScene.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrSceneMapper.insertIvrScene(ivrScene); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param ivrScene AIå¤å¼åºæ¯ç®¡ç |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrScene(IvrScene ivrScene) |
| | | { |
| | | ivrScene.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrSceneMapper.updateIvrScene(ivrScene); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIå¤å¼åºæ¯ç®¡ç |
| | | * |
| | | * @param sceneids éè¦å é¤çAIå¤å¼åºæ¯ç®¡çä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneBySceneids(Long[] sceneids) |
| | | { |
| | | return ivrSceneMapper.deleteIvrSceneBySceneids(sceneids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIå¤å¼åºæ¯ç®¡çä¿¡æ¯ |
| | | * |
| | | * @param sceneid AIå¤å¼åºæ¯ç®¡çä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrSceneBySceneid(Long sceneid) |
| | | { |
| | | return ivrSceneMapper.deleteIvrSceneBySceneid(sceneid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.IvrScenecategoryMapper; |
| | | import com.smartor.domain.IvrScenecategory; |
| | | import com.smartor.service.IIvrScenecategoryService; |
| | | |
| | | /** |
| | | * AIæå¡åºæ¯ç®¡çåç±»Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class IvrScenecategoryServiceImpl implements IIvrScenecategoryService |
| | | { |
| | | @Autowired |
| | | private IvrScenecategoryMapper ivrScenecategoryMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param scenecatid AIæå¡åºæ¯ç®¡çåç±»ä¸»é® |
| | | * @return AIæå¡åºæ¯ç®¡çåç±» |
| | | */ |
| | | @Override |
| | | public IvrScenecategory selectIvrScenecategoryByScenecatid(Long scenecatid) |
| | | { |
| | | return ivrScenecategoryMapper.selectIvrScenecategoryByScenecatid(scenecatid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢AIæå¡åºæ¯ç®¡çåç±»å表 |
| | | * |
| | | * @param ivrScenecategory AIæå¡åºæ¯ç®¡çåç±» |
| | | * @return AIæå¡åºæ¯ç®¡çåç±» |
| | | */ |
| | | @Override |
| | | public List<IvrScenecategory> selectIvrScenecategoryList(IvrScenecategory ivrScenecategory) |
| | | { |
| | | return ivrScenecategoryMapper.selectIvrScenecategoryList(ivrScenecategory); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param ivrScenecategory AIæå¡åºæ¯ç®¡çåç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertIvrScenecategory(IvrScenecategory ivrScenecategory) |
| | | { |
| | | ivrScenecategory.setCreateTime(DateUtils.getNowDate()); |
| | | return ivrScenecategoryMapper.insertIvrScenecategory(ivrScenecategory); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param ivrScenecategory AIæå¡åºæ¯ç®¡çåç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateIvrScenecategory(IvrScenecategory ivrScenecategory) |
| | | { |
| | | ivrScenecategory.setUpdateTime(DateUtils.getNowDate()); |
| | | return ivrScenecategoryMapper.updateIvrScenecategory(ivrScenecategory); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤AIæå¡åºæ¯ç®¡çåç±» |
| | | * |
| | | * @param scenecatids éè¦å é¤çAIæå¡åºæ¯ç®¡çåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrScenecategoryByScenecatids(Long[] scenecatids) |
| | | { |
| | | return ivrScenecategoryMapper.deleteIvrScenecategoryByScenecatids(scenecatids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤AIæå¡åºæ¯ç®¡çåç±»ä¿¡æ¯ |
| | | * |
| | | * @param scenecatid AIæå¡åºæ¯ç®¡çåç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteIvrScenecategoryByScenecatid(Long scenecatid) |
| | | { |
| | | return ivrScenecategoryMapper.deleteIvrScenecategoryByScenecatid(scenecatid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SmsParamMapper; |
| | | import com.smartor.domain.SmsParam; |
| | | import com.smartor.service.ISmsParamService; |
| | | |
| | | /** |
| | | * çä¿¡åæ°Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class SmsParamServiceImpl implements ISmsParamService |
| | | { |
| | | @Autowired |
| | | private SmsParamMapper smsParamMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡åæ° |
| | | * |
| | | * @param paramid çä¿¡åæ°ä¸»é® |
| | | * @return çä¿¡åæ° |
| | | */ |
| | | @Override |
| | | public SmsParam selectSmsParamByParamid(Long paramid) |
| | | { |
| | | return smsParamMapper.selectSmsParamByParamid(paramid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡åæ°å表 |
| | | * |
| | | * @param smsParam çä¿¡åæ° |
| | | * @return çä¿¡åæ° |
| | | */ |
| | | @Override |
| | | public List<SmsParam> selectSmsParamList(SmsParam smsParam) |
| | | { |
| | | return smsParamMapper.selectSmsParamList(smsParam); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡åæ° |
| | | * |
| | | * @param smsParam çä¿¡åæ° |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSmsParam(SmsParam smsParam) |
| | | { |
| | | smsParam.setCreateTime(DateUtils.getNowDate()); |
| | | return smsParamMapper.insertSmsParam(smsParam); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡åæ° |
| | | * |
| | | * @param smsParam çä¿¡åæ° |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSmsParam(SmsParam smsParam) |
| | | { |
| | | smsParam.setUpdateTime(DateUtils.getNowDate()); |
| | | return smsParamMapper.updateSmsParam(smsParam); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡åæ° |
| | | * |
| | | * @param paramids éè¦å é¤ççä¿¡åæ°ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSmsParamByParamids(Long[] paramids) |
| | | { |
| | | return smsParamMapper.deleteSmsParamByParamids(paramids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤çä¿¡åæ°ä¿¡æ¯ |
| | | * |
| | | * @param paramid çä¿¡åæ°ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSmsParamByParamid(Long paramid) |
| | | { |
| | | return smsParamMapper.deleteSmsParamByParamid(paramid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SmsRecordsMapper; |
| | | import com.smartor.domain.SmsRecords; |
| | | import com.smartor.service.ISmsRecordsService; |
| | | |
| | | /** |
| | | * çä¿¡è®°å½Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class SmsRecordsServiceImpl implements ISmsRecordsService |
| | | { |
| | | @Autowired |
| | | private SmsRecordsMapper smsRecordsMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è®°å½ |
| | | * |
| | | * @param recordid çä¿¡è®°å½ä¸»é® |
| | | * @return çä¿¡è®°å½ |
| | | */ |
| | | @Override |
| | | public SmsRecords selectSmsRecordsByRecordid(Long recordid) |
| | | { |
| | | return smsRecordsMapper.selectSmsRecordsByRecordid(recordid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡è®°å½å表 |
| | | * |
| | | * @param smsRecords çä¿¡è®°å½ |
| | | * @return çä¿¡è®°å½ |
| | | */ |
| | | @Override |
| | | public List<SmsRecords> selectSmsRecordsList(SmsRecords smsRecords) |
| | | { |
| | | return smsRecordsMapper.selectSmsRecordsList(smsRecords); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡è®°å½ |
| | | * |
| | | * @param smsRecords çä¿¡è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSmsRecords(SmsRecords smsRecords) |
| | | { |
| | | smsRecords.setCreateTime(DateUtils.getNowDate()); |
| | | return smsRecordsMapper.insertSmsRecords(smsRecords); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡è®°å½ |
| | | * |
| | | * @param smsRecords çä¿¡è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSmsRecords(SmsRecords smsRecords) |
| | | { |
| | | smsRecords.setUpdateTime(DateUtils.getNowDate()); |
| | | return smsRecordsMapper.updateSmsRecords(smsRecords); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡è®°å½ |
| | | * |
| | | * @param recordids éè¦å é¤ççä¿¡è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSmsRecordsByRecordids(Long[] recordids) |
| | | { |
| | | return smsRecordsMapper.deleteSmsRecordsByRecordids(recordids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤çä¿¡è®°å½ä¿¡æ¯ |
| | | * |
| | | * @param recordid çä¿¡è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSmsRecordsByRecordid(Long recordid) |
| | | { |
| | | return smsRecordsMapper.deleteSmsRecordsByRecordid(recordid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SmsTempletMapper; |
| | | import com.smartor.domain.SmsTemplet; |
| | | import com.smartor.service.ISmsTempletService; |
| | | |
| | | /** |
| | | * ç信模æ¿Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-06 |
| | | */ |
| | | @Service |
| | | public class SmsTempletServiceImpl implements ISmsTempletService |
| | | { |
| | | @Autowired |
| | | private SmsTempletMapper smsTempletMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param templetid ç信模æ¿ä¸»é® |
| | | * @return çä¿¡æ¨¡æ¿ |
| | | */ |
| | | @Override |
| | | public SmsTemplet selectSmsTempletByTempletid(Long templetid) |
| | | { |
| | | return smsTempletMapper.selectSmsTempletByTempletid(templetid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢ç信模æ¿å表 |
| | | * |
| | | * @param smsTemplet çä¿¡æ¨¡æ¿ |
| | | * @return çä¿¡æ¨¡æ¿ |
| | | */ |
| | | @Override |
| | | public List<SmsTemplet> selectSmsTempletList(SmsTemplet smsTemplet) |
| | | { |
| | | return smsTempletMapper.selectSmsTempletList(smsTemplet); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param smsTemplet çä¿¡æ¨¡æ¿ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSmsTemplet(SmsTemplet smsTemplet) |
| | | { |
| | | smsTemplet.setCreateTime(DateUtils.getNowDate()); |
| | | return smsTempletMapper.insertSmsTemplet(smsTemplet); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param smsTemplet çä¿¡æ¨¡æ¿ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSmsTemplet(SmsTemplet smsTemplet) |
| | | { |
| | | smsTemplet.setUpdateTime(DateUtils.getNowDate()); |
| | | return smsTempletMapper.updateSmsTemplet(smsTemplet); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤çä¿¡æ¨¡æ¿ |
| | | * |
| | | * @param templetids éè¦å é¤çç信模æ¿ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSmsTempletByTempletids(Long[] templetids) |
| | | { |
| | | return smsTempletMapper.deleteSmsTempletByTempletids(templetids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ç信模æ¿ä¿¡æ¯ |
| | | * |
| | | * @param templetid ç信模æ¿ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSmsTempletByTempletid(Long templetid) |
| | | { |
| | | return smsTempletMapper.deleteSmsTempletByTempletid(templetid); |
| | | } |
| | | } |
| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <?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.BaseSmsaccountMapper"> |
| | | |
| | | <resultMap type="BaseSmsaccount" id="BaseSmsaccountResult"> |
| | | <result property="smsacountid" column="smsacountid" /> |
| | | <result property="smsname" column="smsname" /> |
| | | <result property="account" column="account" /> |
| | | <result property="password" column="password" /> |
| | | <result property="remark" column="remark" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="isenable" column="isenable" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectBaseSmsaccountVo"> |
| | | select smsacountid, smsname, account, password, remark, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, isenable from base_smsaccount |
| | | </sql> |
| | | |
| | | <select id="selectBaseSmsaccountList" parameterType="BaseSmsaccount" resultMap="BaseSmsaccountResult"> |
| | | <include refid="selectBaseSmsaccountVo"/> |
| | | <where> |
| | | <if test="smsname != null and smsname != ''"> and smsname like concat('%', #{smsname}, '%')</if> |
| | | <if test="account != null and account != ''"> and account = #{account}</if> |
| | | <if test="password != null and password != ''"> and password = #{password}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="isenable != null "> and isenable = #{isenable}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectBaseSmsaccountBySmsacountid" parameterType="Long" resultMap="BaseSmsaccountResult"> |
| | | <include refid="selectBaseSmsaccountVo"/> |
| | | where smsacountid = #{smsacountid} |
| | | </select> |
| | | |
| | | <insert id="insertBaseSmsaccount" parameterType="BaseSmsaccount" useGeneratedKeys="true" keyProperty="smsacountid"> |
| | | insert into base_smsaccount |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="smsname != null">smsname,</if> |
| | | <if test="account != null">account,</if> |
| | | <if test="password != null">password,</if> |
| | | <if test="remark != null">remark,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="isenable != null">isenable,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="smsname != null">#{smsname},</if> |
| | | <if test="account != null">#{account},</if> |
| | | <if test="password != null">#{password},</if> |
| | | <if test="remark != null">#{remark},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="isenable != null">#{isenable},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateBaseSmsaccount" parameterType="BaseSmsaccount"> |
| | | update base_smsaccount |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="smsname != null">smsname = #{smsname},</if> |
| | | <if test="account != null">account = #{account},</if> |
| | | <if test="password != null">password = #{password},</if> |
| | | <if test="remark != null">remark = #{remark},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="isenable != null">isenable = #{isenable},</if> |
| | | </trim> |
| | | where smsacountid = #{smsacountid} |
| | | </update> |
| | | |
| | | <delete id="deleteBaseSmsaccountBySmsacountid" parameterType="Long"> |
| | | delete from base_smsaccount where smsacountid = #{smsacountid} |
| | | </delete> |
| | | |
| | | <delete id="deleteBaseSmsaccountBySmsacountids" parameterType="String"> |
| | | delete from base_smsaccount where smsacountid in |
| | | <foreach item="smsacountid" collection="array" open="(" separator="," close=")"> |
| | | #{smsacountid} |
| | | </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.IvrLibIntentMapper"> |
| | | |
| | | <resultMap type="IvrLibIntent" id="IvrLibIntentResult"> |
| | | <result property="intentid" column="intentid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="intentionname" column="intentionname" /> |
| | | <result property="categoryid" column="categoryid" /> |
| | | <result property="categoryname" column="categoryname" /> |
| | | <result property="intentionword" column="intentionword" /> |
| | | <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" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibIntentVo"> |
| | | select intentid, orgid, intentionname, categoryid, categoryname, intentionword, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from ivr_lib_intent |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibIntentList" parameterType="IvrLibIntent" resultMap="IvrLibIntentResult"> |
| | | <include refid="selectIvrLibIntentVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="intentionname != null and intentionname != ''"> and intentionname like concat('%', #{intentionname}, '%')</if> |
| | | <if test="categoryid != null "> and categoryid = #{categoryid}</if> |
| | | <if test="categoryname != null and categoryname != ''"> and categoryname like concat('%', #{categoryname}, '%')</if> |
| | | <if test="intentionword != null and intentionword != ''"> and intentionword = #{intentionword}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibIntentByIntentid" parameterType="Long" resultMap="IvrLibIntentResult"> |
| | | <include refid="selectIvrLibIntentVo"/> |
| | | where intentid = #{intentid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibIntent" parameterType="IvrLibIntent" useGeneratedKeys="true" keyProperty="intentid"> |
| | | insert into ivr_lib_intent |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="intentionname != null">intentionname,</if> |
| | | <if test="categoryid != null">categoryid,</if> |
| | | <if test="categoryname != null">categoryname,</if> |
| | | <if test="intentionword != null">intentionword,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="intentionname != null">#{intentionname},</if> |
| | | <if test="categoryid != null">#{categoryid},</if> |
| | | <if test="categoryname != null">#{categoryname},</if> |
| | | <if test="intentionword != null">#{intentionword},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibIntent" parameterType="IvrLibIntent"> |
| | | update ivr_lib_intent |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="intentionname != null">intentionname = #{intentionname},</if> |
| | | <if test="categoryid != null">categoryid = #{categoryid},</if> |
| | | <if test="categoryname != null">categoryname = #{categoryname},</if> |
| | | <if test="intentionword != null">intentionword = #{intentionword},</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> |
| | | </trim> |
| | | where intentid = #{intentid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibIntentByIntentid" parameterType="Long"> |
| | | delete from ivr_lib_intent where intentid = #{intentid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibIntentByIntentids" parameterType="String"> |
| | | delete from ivr_lib_intent where intentid in |
| | | <foreach item="intentid" collection="array" open="(" separator="," close=")"> |
| | | #{intentid} |
| | | </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.IvrLibIntentcategoryMapper"> |
| | | |
| | | <resultMap type="IvrLibIntentcategory" id="IvrLibIntentcategoryResult"> |
| | | <result property="intertcatid" column="intertcatid" /> |
| | | <result property="categoryname" column="categoryname" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibIntentcategoryVo"> |
| | | select intertcatid, categoryname, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from ivr_lib_intentcategory |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibIntentcategoryList" parameterType="IvrLibIntentcategory" resultMap="IvrLibIntentcategoryResult"> |
| | | <include refid="selectIvrLibIntentcategoryVo"/> |
| | | <where> |
| | | <if test="categoryname != null and categoryname != ''"> and categoryname like concat('%', #{categoryname}, '%')</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibIntentcategoryByIntertcatid" parameterType="Long" resultMap="IvrLibIntentcategoryResult"> |
| | | <include refid="selectIvrLibIntentcategoryVo"/> |
| | | where intertcatid = #{intertcatid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibIntentcategory" parameterType="IvrLibIntentcategory" useGeneratedKeys="true" keyProperty="intertcatid"> |
| | | insert into ivr_lib_intentcategory |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="categoryname != null">categoryname,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="categoryname != null">#{categoryname},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibIntentcategory" parameterType="IvrLibIntentcategory"> |
| | | update ivr_lib_intentcategory |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="categoryname != null">categoryname = #{categoryname},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | </trim> |
| | | where intertcatid = #{intertcatid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibIntentcategoryByIntertcatid" parameterType="Long"> |
| | | delete from ivr_lib_intentcategory where intertcatid = #{intertcatid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibIntentcategoryByIntertcatids" parameterType="String"> |
| | | delete from ivr_lib_intentcategory where intertcatid in |
| | | <foreach item="intertcatid" collection="array" open="(" separator="," close=")"> |
| | | #{intertcatid} |
| | | </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.IvrLibScriptMapper"> |
| | | |
| | | <resultMap type="IvrLibScript" id="IvrLibScriptResult"> |
| | | <result property="scriptid" column="scriptid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="categoryid" column="categoryid" /> |
| | | <result property="categoryname" column="categoryname" /> |
| | | <result property="speakbody" column="speakbody" /> |
| | | <result property="speakfilepath" column="speakfilepath" /> |
| | | <result property="isall" column="isall" /> |
| | | <result property="speakname" column="speakname" /> |
| | | <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" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibScriptVo"> |
| | | select scriptid, orgid, categoryid, categoryname, speakbody, speakfilepath, isall, speakname, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from ivr_lib_script |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibScriptList" parameterType="IvrLibScript" resultMap="IvrLibScriptResult"> |
| | | <include refid="selectIvrLibScriptVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="categoryid != null "> and categoryid = #{categoryid}</if> |
| | | <if test="categoryname != null and categoryname != ''"> and categoryname like concat('%', #{categoryname}, '%')</if> |
| | | <if test="speakbody != null and speakbody != ''"> and speakbody = #{speakbody}</if> |
| | | <if test="speakfilepath != null and speakfilepath != ''"> and speakfilepath = #{speakfilepath}</if> |
| | | <if test="isall != null "> and isall = #{isall}</if> |
| | | <if test="speakname != null and speakname != ''"> and speakname like concat('%', #{speakname}, '%')</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibScriptByScriptid" parameterType="Long" resultMap="IvrLibScriptResult"> |
| | | <include refid="selectIvrLibScriptVo"/> |
| | | where scriptid = #{scriptid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibScript" parameterType="IvrLibScript" useGeneratedKeys="true" keyProperty="scriptid"> |
| | | insert into ivr_lib_script |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="categoryid != null">categoryid,</if> |
| | | <if test="categoryname != null">categoryname,</if> |
| | | <if test="speakbody != null">speakbody,</if> |
| | | <if test="speakfilepath != null">speakfilepath,</if> |
| | | <if test="isall != null">isall,</if> |
| | | <if test="speakname != null">speakname,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="categoryid != null">#{categoryid},</if> |
| | | <if test="categoryname != null">#{categoryname},</if> |
| | | <if test="speakbody != null">#{speakbody},</if> |
| | | <if test="speakfilepath != null">#{speakfilepath},</if> |
| | | <if test="isall != null">#{isall},</if> |
| | | <if test="speakname != null">#{speakname},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibScript" parameterType="IvrLibScript"> |
| | | update ivr_lib_script |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="categoryid != null">categoryid = #{categoryid},</if> |
| | | <if test="categoryname != null">categoryname = #{categoryname},</if> |
| | | <if test="speakbody != null">speakbody = #{speakbody},</if> |
| | | <if test="speakfilepath != null">speakfilepath = #{speakfilepath},</if> |
| | | <if test="isall != null">isall = #{isall},</if> |
| | | <if test="speakname != null">speakname = #{speakname},</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> |
| | | </trim> |
| | | where scriptid = #{scriptid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibScriptByScriptid" parameterType="Long"> |
| | | delete from ivr_lib_script where scriptid = #{scriptid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibScriptByScriptids" parameterType="String"> |
| | | delete from ivr_lib_script where scriptid in |
| | | <foreach item="scriptid" collection="array" open="(" separator="," close=")"> |
| | | #{scriptid} |
| | | </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.IvrLibScriptcategoryMapper"> |
| | | |
| | | <resultMap type="IvrLibScriptcategory" id="IvrLibScriptcategoryResult"> |
| | | <result property="categoryid" column="categoryid" /> |
| | | <result property="categoryname" column="categoryname" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibScriptcategoryVo"> |
| | | select categoryid, categoryname, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from ivr_lib_scriptcategory |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibScriptcategoryList" parameterType="IvrLibScriptcategory" resultMap="IvrLibScriptcategoryResult"> |
| | | <include refid="selectIvrLibScriptcategoryVo"/> |
| | | <where> |
| | | <if test="categoryname != null and categoryname != ''"> and categoryname like concat('%', #{categoryname}, '%')</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibScriptcategoryByCategoryid" parameterType="Long" resultMap="IvrLibScriptcategoryResult"> |
| | | <include refid="selectIvrLibScriptcategoryVo"/> |
| | | where categoryid = #{categoryid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibScriptcategory" parameterType="IvrLibScriptcategory" useGeneratedKeys="true" keyProperty="categoryid"> |
| | | insert into ivr_lib_scriptcategory |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="categoryname != null">categoryname,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="categoryname != null">#{categoryname},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibScriptcategory" parameterType="IvrLibScriptcategory"> |
| | | update ivr_lib_scriptcategory |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="categoryname != null">categoryname = #{categoryname},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | </trim> |
| | | where categoryid = #{categoryid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibScriptcategoryByCategoryid" parameterType="Long"> |
| | | delete from ivr_lib_scriptcategory where categoryid = #{categoryid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibScriptcategoryByCategoryids" parameterType="String"> |
| | | delete from ivr_lib_scriptcategory where categoryid in |
| | | <foreach item="categoryid" collection="array" open="(" separator="," close=")"> |
| | | #{categoryid} |
| | | </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.IvrLibScriptmodelMapper"> |
| | | |
| | | <resultMap type="IvrLibScriptmodel" id="IvrLibScriptmodelResult"> |
| | | <result property="modelid" column="modelid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="scriptid" column="scriptid" /> |
| | | <result property="speaktype" column="speaktype" /> |
| | | <result property="speakbody" column="speakbody" /> |
| | | <result property="voicetype" column="voicetype" /> |
| | | <result property="speakfilepath" column="speakfilepath" /> |
| | | <result property="manufactor" column="manufactor" /> |
| | | <result property="soundtype" column="soundtype" /> |
| | | <result property="speechnum" column="speechnum" /> |
| | | <result property="pitch" column="pitch" /> |
| | | <result property="volume" column="volume" /> |
| | | <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="speakvariable" column="speakvariable" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrLibScriptmodelVo"> |
| | | select modelid, orgid, scriptid, speaktype, speakbody, voicetype, speakfilepath, manufactor, soundtype, speechnum, pitch, volume, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, speakvariable from ivr_lib_scriptmodel |
| | | </sql> |
| | | |
| | | <select id="selectIvrLibScriptmodelList" parameterType="IvrLibScriptmodel" resultMap="IvrLibScriptmodelResult"> |
| | | <include refid="selectIvrLibScriptmodelVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="scriptid != null "> and scriptid = #{scriptid}</if> |
| | | <if test="speaktype != null "> and speaktype = #{speaktype}</if> |
| | | <if test="speakbody != null and speakbody != ''"> and speakbody = #{speakbody}</if> |
| | | <if test="voicetype != null "> and voicetype = #{voicetype}</if> |
| | | <if test="speakfilepath != null and speakfilepath != ''"> and speakfilepath = #{speakfilepath}</if> |
| | | <if test="manufactor != null and manufactor != ''"> and manufactor = #{manufactor}</if> |
| | | <if test="soundtype != null and soundtype != ''"> and soundtype = #{soundtype}</if> |
| | | <if test="speechnum != null "> and speechnum = #{speechnum}</if> |
| | | <if test="pitch != null "> and pitch = #{pitch}</if> |
| | | <if test="volume != null "> and volume = #{volume}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="speakvariable != null and speakvariable != ''"> and speakvariable = #{speakvariable}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrLibScriptmodelByModelid" parameterType="Long" resultMap="IvrLibScriptmodelResult"> |
| | | <include refid="selectIvrLibScriptmodelVo"/> |
| | | where modelid = #{modelid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrLibScriptmodel" parameterType="IvrLibScriptmodel" useGeneratedKeys="true" keyProperty="modelid"> |
| | | insert into ivr_lib_scriptmodel |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="scriptid != null">scriptid,</if> |
| | | <if test="speaktype != null">speaktype,</if> |
| | | <if test="speakbody != null">speakbody,</if> |
| | | <if test="voicetype != null">voicetype,</if> |
| | | <if test="speakfilepath != null">speakfilepath,</if> |
| | | <if test="manufactor != null">manufactor,</if> |
| | | <if test="soundtype != null">soundtype,</if> |
| | | <if test="speechnum != null">speechnum,</if> |
| | | <if test="pitch != null">pitch,</if> |
| | | <if test="volume != null">volume,</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="speakvariable != null">speakvariable,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="scriptid != null">#{scriptid},</if> |
| | | <if test="speaktype != null">#{speaktype},</if> |
| | | <if test="speakbody != null">#{speakbody},</if> |
| | | <if test="voicetype != null">#{voicetype},</if> |
| | | <if test="speakfilepath != null">#{speakfilepath},</if> |
| | | <if test="manufactor != null">#{manufactor},</if> |
| | | <if test="soundtype != null">#{soundtype},</if> |
| | | <if test="speechnum != null">#{speechnum},</if> |
| | | <if test="pitch != null">#{pitch},</if> |
| | | <if test="volume != null">#{volume},</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="speakvariable != null">#{speakvariable},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrLibScriptmodel" parameterType="IvrLibScriptmodel"> |
| | | update ivr_lib_scriptmodel |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="scriptid != null">scriptid = #{scriptid},</if> |
| | | <if test="speaktype != null">speaktype = #{speaktype},</if> |
| | | <if test="speakbody != null">speakbody = #{speakbody},</if> |
| | | <if test="voicetype != null">voicetype = #{voicetype},</if> |
| | | <if test="speakfilepath != null">speakfilepath = #{speakfilepath},</if> |
| | | <if test="manufactor != null">manufactor = #{manufactor},</if> |
| | | <if test="soundtype != null">soundtype = #{soundtype},</if> |
| | | <if test="speechnum != null">speechnum = #{speechnum},</if> |
| | | <if test="pitch != null">pitch = #{pitch},</if> |
| | | <if test="volume != null">volume = #{volume},</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="speakvariable != null">speakvariable = #{speakvariable},</if> |
| | | </trim> |
| | | where modelid = #{modelid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrLibScriptmodelByModelid" parameterType="Long"> |
| | | delete from ivr_lib_scriptmodel where modelid = #{modelid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrLibScriptmodelByModelids" parameterType="String"> |
| | | delete from ivr_lib_scriptmodel where modelid in |
| | | <foreach item="modelid" collection="array" open="(" separator="," close=")"> |
| | | #{modelid} |
| | | </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.IvrSceneExecuteconfigMapper"> |
| | | |
| | | <resultMap type="IvrSceneExecuteconfig" id="IvrSceneExecuteconfigResult"> |
| | | <result property="scenecfgid" column="scenecfgid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="sourcetype" column="sourcetype" /> |
| | | <result property="globalid" column="globalid" /> |
| | | <result property="flownodebranchid" column="flownodebranchid" /> |
| | | <result property="executetype" column="executetype" /> |
| | | <result property="executeconditions" column="executeconditions" /> |
| | | <result property="executeresult" column="executeresult" /> |
| | | <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="sceneid" column="sceneid" /> |
| | | <result property="executeconditionscode" column="executeconditionscode" /> |
| | | <result property="executeresultcode" column="executeresultcode" /> |
| | | <result property="flownodeid" column="flownodeid" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneExecuteconfigVo"> |
| | | select scenecfgid, orgid, sourcetype, globalid, flownodebranchid, executetype, executeconditions, executeresult, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, sceneid, executeconditionscode, executeresultcode, flownodeid from ivr_scene_executeconfig |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneExecuteconfigList" parameterType="IvrSceneExecuteconfig" resultMap="IvrSceneExecuteconfigResult"> |
| | | <include refid="selectIvrSceneExecuteconfigVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="sourcetype != null "> and sourcetype = #{sourcetype}</if> |
| | | <if test="globalid != null "> and globalid = #{globalid}</if> |
| | | <if test="flownodebranchid != null "> and flownodebranchid = #{flownodebranchid}</if> |
| | | <if test="executetype != null "> and executetype = #{executetype}</if> |
| | | <if test="executeconditions != null and executeconditions != ''"> and executeconditions = #{executeconditions}</if> |
| | | <if test="executeresult != null and executeresult != ''"> and executeresult = #{executeresult}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="executeconditionscode != null and executeconditionscode != ''"> and executeconditionscode = #{executeconditionscode}</if> |
| | | <if test="executeresultcode != null and executeresultcode != ''"> and executeresultcode = #{executeresultcode}</if> |
| | | <if test="flownodeid != null "> and flownodeid = #{flownodeid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneExecuteconfigByScenecfgid" parameterType="Long" resultMap="IvrSceneExecuteconfigResult"> |
| | | <include refid="selectIvrSceneExecuteconfigVo"/> |
| | | where scenecfgid = #{scenecfgid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrSceneExecuteconfig" parameterType="IvrSceneExecuteconfig" useGeneratedKeys="true" keyProperty="scenecfgid"> |
| | | insert into ivr_scene_executeconfig |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="sourcetype != null">sourcetype,</if> |
| | | <if test="globalid != null">globalid,</if> |
| | | <if test="flownodebranchid != null">flownodebranchid,</if> |
| | | <if test="executetype != null">executetype,</if> |
| | | <if test="executeconditions != null">executeconditions,</if> |
| | | <if test="executeresult != null">executeresult,</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="sceneid != null">sceneid,</if> |
| | | <if test="executeconditionscode != null">executeconditionscode,</if> |
| | | <if test="executeresultcode != null">executeresultcode,</if> |
| | | <if test="flownodeid != null">flownodeid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="sourcetype != null">#{sourcetype},</if> |
| | | <if test="globalid != null">#{globalid},</if> |
| | | <if test="flownodebranchid != null">#{flownodebranchid},</if> |
| | | <if test="executetype != null">#{executetype},</if> |
| | | <if test="executeconditions != null">#{executeconditions},</if> |
| | | <if test="executeresult != null">#{executeresult},</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="sceneid != null">#{sceneid},</if> |
| | | <if test="executeconditionscode != null">#{executeconditionscode},</if> |
| | | <if test="executeresultcode != null">#{executeresultcode},</if> |
| | | <if test="flownodeid != null">#{flownodeid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrSceneExecuteconfig" parameterType="IvrSceneExecuteconfig"> |
| | | update ivr_scene_executeconfig |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="sourcetype != null">sourcetype = #{sourcetype},</if> |
| | | <if test="globalid != null">globalid = #{globalid},</if> |
| | | <if test="flownodebranchid != null">flownodebranchid = #{flownodebranchid},</if> |
| | | <if test="executetype != null">executetype = #{executetype},</if> |
| | | <if test="executeconditions != null">executeconditions = #{executeconditions},</if> |
| | | <if test="executeresult != null">executeresult = #{executeresult},</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="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="executeconditionscode != null">executeconditionscode = #{executeconditionscode},</if> |
| | | <if test="executeresultcode != null">executeresultcode = #{executeresultcode},</if> |
| | | <if test="flownodeid != null">flownodeid = #{flownodeid},</if> |
| | | </trim> |
| | | where scenecfgid = #{scenecfgid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneExecuteconfigByScenecfgid" parameterType="Long"> |
| | | delete from ivr_scene_executeconfig where scenecfgid = #{scenecfgid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneExecuteconfigByScenecfgids" parameterType="String"> |
| | | delete from ivr_scene_executeconfig where scenecfgid in |
| | | <foreach item="scenecfgid" collection="array" open="(" separator="," close=")"> |
| | | #{scenecfgid} |
| | | </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.IvrSceneFlowMapper"> |
| | | |
| | | <resultMap type="IvrSceneFlow" id="IvrSceneFlowResult"> |
| | | <result property="flowid" column="flowid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="flowname" column="flowname" /> |
| | | <result property="relevantqsid" column="relevantqsid" /> |
| | | <result property="relevanttopicid" column="relevanttopicid" /> |
| | | <result property="relevanttopiccode" column="relevanttopiccode" /> |
| | | <result property="ischeck" column="ischeck" /> |
| | | <result property="flowdata" column="flowdata" /> |
| | | <result property="sort" column="sort" /> |
| | | <result property="startnode" column="startnode" /> |
| | | <result property="oldid" column="oldid" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneFlowVo"> |
| | | select flowid, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, sceneid, flowname, relevantqsid, relevanttopicid, relevanttopiccode, ischeck, flowdata, sort, startnode, oldid from ivr_scene_flow |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneFlowList" parameterType="IvrSceneFlow" resultMap="IvrSceneFlowResult"> |
| | | <include refid="selectIvrSceneFlowVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="flowname != null and flowname != ''"> and flowname like concat('%', #{flowname}, '%')</if> |
| | | <if test="relevantqsid != null "> and relevantqsid = #{relevantqsid}</if> |
| | | <if test="relevanttopicid != null and relevanttopicid != ''"> and relevanttopicid = #{relevanttopicid}</if> |
| | | <if test="relevanttopiccode != null and relevanttopiccode != ''"> and relevanttopiccode = #{relevanttopiccode}</if> |
| | | <if test="ischeck != null "> and ischeck = #{ischeck}</if> |
| | | <if test="flowdata != null and flowdata != ''"> and flowdata = #{flowdata}</if> |
| | | <if test="sort != null "> and sort = #{sort}</if> |
| | | <if test="startnode != null "> and startnode = #{startnode}</if> |
| | | <if test="oldid != null "> and oldid = #{oldid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneFlowByFlowid" parameterType="Long" resultMap="IvrSceneFlowResult"> |
| | | <include refid="selectIvrSceneFlowVo"/> |
| | | where flowid = #{flowid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrSceneFlow" parameterType="IvrSceneFlow" useGeneratedKeys="true" keyProperty="flowid"> |
| | | insert into ivr_scene_flow |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | <if test="flowname != null">flowname,</if> |
| | | <if test="relevantqsid != null">relevantqsid,</if> |
| | | <if test="relevanttopicid != null">relevanttopicid,</if> |
| | | <if test="relevanttopiccode != null">relevanttopiccode,</if> |
| | | <if test="ischeck != null">ischeck,</if> |
| | | <if test="flowdata != null">flowdata,</if> |
| | | <if test="sort != null">sort,</if> |
| | | <if test="startnode != null">startnode,</if> |
| | | <if test="oldid != null">oldid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | <if test="flowname != null">#{flowname},</if> |
| | | <if test="relevantqsid != null">#{relevantqsid},</if> |
| | | <if test="relevanttopicid != null">#{relevanttopicid},</if> |
| | | <if test="relevanttopiccode != null">#{relevanttopiccode},</if> |
| | | <if test="ischeck != null">#{ischeck},</if> |
| | | <if test="flowdata != null">#{flowdata},</if> |
| | | <if test="sort != null">#{sort},</if> |
| | | <if test="startnode != null">#{startnode},</if> |
| | | <if test="oldid != null">#{oldid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrSceneFlow" parameterType="IvrSceneFlow"> |
| | | update ivr_scene_flow |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="flowname != null">flowname = #{flowname},</if> |
| | | <if test="relevantqsid != null">relevantqsid = #{relevantqsid},</if> |
| | | <if test="relevanttopicid != null">relevanttopicid = #{relevanttopicid},</if> |
| | | <if test="relevanttopiccode != null">relevanttopiccode = #{relevanttopiccode},</if> |
| | | <if test="ischeck != null">ischeck = #{ischeck},</if> |
| | | <if test="flowdata != null">flowdata = #{flowdata},</if> |
| | | <if test="sort != null">sort = #{sort},</if> |
| | | <if test="startnode != null">startnode = #{startnode},</if> |
| | | <if test="oldid != null">oldid = #{oldid},</if> |
| | | </trim> |
| | | where flowid = #{flowid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneFlowByFlowid" parameterType="Long"> |
| | | delete from ivr_scene_flow where flowid = #{flowid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneFlowByFlowids" parameterType="String"> |
| | | delete from ivr_scene_flow where flowid in |
| | | <foreach item="flowid" collection="array" open="(" separator="," close=")"> |
| | | #{flowid} |
| | | </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.IvrSceneFlownodeMapper"> |
| | | |
| | | <resultMap type="IvrSceneFlownode" id="IvrSceneFlownodeResult"> |
| | | <result property="flownodeid" column="flownodeid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="flowid" column="flowid" /> |
| | | <result property="nodetype" column="nodetype" /> |
| | | <result property="nodename" column="nodename" /> |
| | | <result property="maxsentencesilence" column="maxsentencesilence" /> |
| | | <result property="waittime" column="waittime" /> |
| | | <result property="corpustype" column="corpustype" /> |
| | | <result property="corpuswaittime" column="corpuswaittime" /> |
| | | <result property="maxrepetition" column="maxrepetition" /> |
| | | <result property="jumptype" column="jumptype" /> |
| | | <result property="jumpto" column="jumpto" /> |
| | | <result property="flowcode" column="flowcode" /> |
| | | <result property="targetid" column="targetid" /> |
| | | <result property="oldid" column="oldid" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneFlownodeVo"> |
| | | select flownodeid, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, sceneid, flowid, nodetype, nodename, maxsentencesilence, waittime, corpustype, corpuswaittime, maxrepetition, jumptype, jumpto, flowcode, targetid, oldid from ivr_scene_flownode |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneFlownodeList" parameterType="IvrSceneFlownode" resultMap="IvrSceneFlownodeResult"> |
| | | <include refid="selectIvrSceneFlownodeVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="flowid != null "> and flowid = #{flowid}</if> |
| | | <if test="nodetype != null "> and nodetype = #{nodetype}</if> |
| | | <if test="nodename != null and nodename != ''"> and nodename like concat('%', #{nodename}, '%')</if> |
| | | <if test="maxsentencesilence != null "> and maxsentencesilence = #{maxsentencesilence}</if> |
| | | <if test="waittime != null and waittime != ''"> and waittime = #{waittime}</if> |
| | | <if test="corpustype != null "> and corpustype = #{corpustype}</if> |
| | | <if test="corpuswaittime != null and corpuswaittime != ''"> and corpuswaittime = #{corpuswaittime}</if> |
| | | <if test="maxrepetition != null "> and maxrepetition = #{maxrepetition}</if> |
| | | <if test="jumptype != null "> and jumptype = #{jumptype}</if> |
| | | <if test="jumpto != null and jumpto != ''"> and jumpto = #{jumpto}</if> |
| | | <if test="flowcode != null and flowcode != ''"> and flowcode = #{flowcode}</if> |
| | | <if test="targetid != null "> and targetid = #{targetid}</if> |
| | | <if test="oldid != null "> and oldid = #{oldid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneFlownodeByFlownodeid" parameterType="Long" resultMap="IvrSceneFlownodeResult"> |
| | | <include refid="selectIvrSceneFlownodeVo"/> |
| | | where flownodeid = #{flownodeid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrSceneFlownode" parameterType="IvrSceneFlownode" useGeneratedKeys="true" keyProperty="flownodeid"> |
| | | insert into ivr_scene_flownode |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | <if test="flowid != null">flowid,</if> |
| | | <if test="nodetype != null">nodetype,</if> |
| | | <if test="nodename != null">nodename,</if> |
| | | <if test="maxsentencesilence != null">maxsentencesilence,</if> |
| | | <if test="waittime != null">waittime,</if> |
| | | <if test="corpustype != null">corpustype,</if> |
| | | <if test="corpuswaittime != null">corpuswaittime,</if> |
| | | <if test="maxrepetition != null">maxrepetition,</if> |
| | | <if test="jumptype != null">jumptype,</if> |
| | | <if test="jumpto != null">jumpto,</if> |
| | | <if test="flowcode != null">flowcode,</if> |
| | | <if test="targetid != null">targetid,</if> |
| | | <if test="oldid != null">oldid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | <if test="flowid != null">#{flowid},</if> |
| | | <if test="nodetype != null">#{nodetype},</if> |
| | | <if test="nodename != null">#{nodename},</if> |
| | | <if test="maxsentencesilence != null">#{maxsentencesilence},</if> |
| | | <if test="waittime != null">#{waittime},</if> |
| | | <if test="corpustype != null">#{corpustype},</if> |
| | | <if test="corpuswaittime != null">#{corpuswaittime},</if> |
| | | <if test="maxrepetition != null">#{maxrepetition},</if> |
| | | <if test="jumptype != null">#{jumptype},</if> |
| | | <if test="jumpto != null">#{jumpto},</if> |
| | | <if test="flowcode != null">#{flowcode},</if> |
| | | <if test="targetid != null">#{targetid},</if> |
| | | <if test="oldid != null">#{oldid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrSceneFlownode" parameterType="IvrSceneFlownode"> |
| | | update ivr_scene_flownode |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="flowid != null">flowid = #{flowid},</if> |
| | | <if test="nodetype != null">nodetype = #{nodetype},</if> |
| | | <if test="nodename != null">nodename = #{nodename},</if> |
| | | <if test="maxsentencesilence != null">maxsentencesilence = #{maxsentencesilence},</if> |
| | | <if test="waittime != null">waittime = #{waittime},</if> |
| | | <if test="corpustype != null">corpustype = #{corpustype},</if> |
| | | <if test="corpuswaittime != null">corpuswaittime = #{corpuswaittime},</if> |
| | | <if test="maxrepetition != null">maxrepetition = #{maxrepetition},</if> |
| | | <if test="jumptype != null">jumptype = #{jumptype},</if> |
| | | <if test="jumpto != null">jumpto = #{jumpto},</if> |
| | | <if test="flowcode != null">flowcode = #{flowcode},</if> |
| | | <if test="targetid != null">targetid = #{targetid},</if> |
| | | <if test="oldid != null">oldid = #{oldid},</if> |
| | | </trim> |
| | | where flownodeid = #{flownodeid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneFlownodeByFlownodeid" parameterType="Long"> |
| | | delete from ivr_scene_flownode where flownodeid = #{flownodeid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneFlownodeByFlownodeids" parameterType="String"> |
| | | delete from ivr_scene_flownode where flownodeid in |
| | | <foreach item="flownodeid" collection="array" open="(" separator="," close=")"> |
| | | #{flownodeid} |
| | | </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.IvrSceneFlownodebranchMapper"> |
| | | |
| | | <resultMap type="IvrSceneFlownodebranch" id="IvrSceneFlownodebranchResult"> |
| | | <result property="branchid" column="branchid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="flowid" column="flowid" /> |
| | | <result property="flownodeid" column="flownodeid" /> |
| | | <result property="branchname" column="branchname" /> |
| | | <result property="isenable" column="isenable" /> |
| | | <result property="sort" column="sort" /> |
| | | <result property="nodetype" column="nodetype" /> |
| | | <result property="targetid" column="targetid" /> |
| | | <result property="oldid" column="oldid" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneFlownodebranchVo"> |
| | | select branchid, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, sceneid, flowid, flownodeid, branchname, isenable, sort, nodetype, targetid, oldid from ivr_scene_flownodebranch |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneFlownodebranchList" parameterType="IvrSceneFlownodebranch" resultMap="IvrSceneFlownodebranchResult"> |
| | | <include refid="selectIvrSceneFlownodebranchVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="flowid != null "> and flowid = #{flowid}</if> |
| | | <if test="flownodeid != null "> and flownodeid = #{flownodeid}</if> |
| | | <if test="branchname != null and branchname != ''"> and branchname like concat('%', #{branchname}, '%')</if> |
| | | <if test="isenable != null "> and isenable = #{isenable}</if> |
| | | <if test="sort != null "> and sort = #{sort}</if> |
| | | <if test="nodetype != null "> and nodetype = #{nodetype}</if> |
| | | <if test="targetid != null "> and targetid = #{targetid}</if> |
| | | <if test="oldid != null "> and oldid = #{oldid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneFlownodebranchByBranchid" parameterType="Long" resultMap="IvrSceneFlownodebranchResult"> |
| | | <include refid="selectIvrSceneFlownodebranchVo"/> |
| | | where branchid = #{branchid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrSceneFlownodebranch" parameterType="IvrSceneFlownodebranch" useGeneratedKeys="true" keyProperty="branchid"> |
| | | insert into ivr_scene_flownodebranch |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | <if test="flowid != null">flowid,</if> |
| | | <if test="flownodeid != null">flownodeid,</if> |
| | | <if test="branchname != null">branchname,</if> |
| | | <if test="isenable != null">isenable,</if> |
| | | <if test="sort != null">sort,</if> |
| | | <if test="nodetype != null">nodetype,</if> |
| | | <if test="targetid != null">targetid,</if> |
| | | <if test="oldid != null">oldid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | <if test="flowid != null">#{flowid},</if> |
| | | <if test="flownodeid != null">#{flownodeid},</if> |
| | | <if test="branchname != null">#{branchname},</if> |
| | | <if test="isenable != null">#{isenable},</if> |
| | | <if test="sort != null">#{sort},</if> |
| | | <if test="nodetype != null">#{nodetype},</if> |
| | | <if test="targetid != null">#{targetid},</if> |
| | | <if test="oldid != null">#{oldid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrSceneFlownodebranch" parameterType="IvrSceneFlownodebranch"> |
| | | update ivr_scene_flownodebranch |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="flowid != null">flowid = #{flowid},</if> |
| | | <if test="flownodeid != null">flownodeid = #{flownodeid},</if> |
| | | <if test="branchname != null">branchname = #{branchname},</if> |
| | | <if test="isenable != null">isenable = #{isenable},</if> |
| | | <if test="sort != null">sort = #{sort},</if> |
| | | <if test="nodetype != null">nodetype = #{nodetype},</if> |
| | | <if test="targetid != null">targetid = #{targetid},</if> |
| | | <if test="oldid != null">oldid = #{oldid},</if> |
| | | </trim> |
| | | where branchid = #{branchid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneFlownodebranchByBranchid" parameterType="Long"> |
| | | delete from ivr_scene_flownodebranch where branchid = #{branchid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneFlownodebranchByBranchids" parameterType="String"> |
| | | delete from ivr_scene_flownodebranch where branchid in |
| | | <foreach item="branchid" collection="array" open="(" separator="," close=")"> |
| | | #{branchid} |
| | | </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.IvrSceneGlobalconfigMapper"> |
| | | |
| | | <resultMap type="IvrSceneGlobalconfig" id="IvrSceneGlobalconfigResult"> |
| | | <result property="gblconfigid" column="gblconfigid" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="configname" column="configname" /> |
| | | <result property="description" column="description" /> |
| | | <result property="sort" column="sort" /> |
| | | <result property="executetype" column="executetype" /> |
| | | <result property="isenable" column="isenable" /> |
| | | <result property="jumpto" column="jumpto" /> |
| | | <result property="repeatcount" column="repeatcount" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneGlobalconfigVo"> |
| | | select gblconfigid, sceneid, configname, description, sort, executetype, isenable, jumpto, repeatcount, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from ivr_scene_globalconfig |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneGlobalconfigList" parameterType="IvrSceneGlobalconfig" resultMap="IvrSceneGlobalconfigResult"> |
| | | <include refid="selectIvrSceneGlobalconfigVo"/> |
| | | <where> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="configname != null and configname != ''"> and configname like concat('%', #{configname}, '%')</if> |
| | | <if test="description != null and description != ''"> and description = #{description}</if> |
| | | <if test="sort != null "> and sort = #{sort}</if> |
| | | <if test="executetype != null "> and executetype = #{executetype}</if> |
| | | <if test="isenable != null "> and isenable = #{isenable}</if> |
| | | <if test="jumpto != null "> and jumpto = #{jumpto}</if> |
| | | <if test="repeatcount != null "> and repeatcount = #{repeatcount}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneGlobalconfigByGblconfigid" parameterType="Long" resultMap="IvrSceneGlobalconfigResult"> |
| | | <include refid="selectIvrSceneGlobalconfigVo"/> |
| | | where gblconfigid = #{gblconfigid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrSceneGlobalconfig" parameterType="IvrSceneGlobalconfig" useGeneratedKeys="true" keyProperty="gblconfigid"> |
| | | insert into ivr_scene_globalconfig |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | <if test="configname != null">configname,</if> |
| | | <if test="description != null">description,</if> |
| | | <if test="sort != null">sort,</if> |
| | | <if test="executetype != null">executetype,</if> |
| | | <if test="isenable != null">isenable,</if> |
| | | <if test="jumpto != null">jumpto,</if> |
| | | <if test="repeatcount != null">repeatcount,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | <if test="configname != null">#{configname},</if> |
| | | <if test="description != null">#{description},</if> |
| | | <if test="sort != null">#{sort},</if> |
| | | <if test="executetype != null">#{executetype},</if> |
| | | <if test="isenable != null">#{isenable},</if> |
| | | <if test="jumpto != null">#{jumpto},</if> |
| | | <if test="repeatcount != null">#{repeatcount},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrSceneGlobalconfig" parameterType="IvrSceneGlobalconfig"> |
| | | update ivr_scene_globalconfig |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="configname != null">configname = #{configname},</if> |
| | | <if test="description != null">description = #{description},</if> |
| | | <if test="sort != null">sort = #{sort},</if> |
| | | <if test="executetype != null">executetype = #{executetype},</if> |
| | | <if test="isenable != null">isenable = #{isenable},</if> |
| | | <if test="jumpto != null">jumpto = #{jumpto},</if> |
| | | <if test="repeatcount != null">repeatcount = #{repeatcount},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | </trim> |
| | | where gblconfigid = #{gblconfigid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneGlobalconfigByGblconfigid" parameterType="Long"> |
| | | delete from ivr_scene_globalconfig where gblconfigid = #{gblconfigid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneGlobalconfigByGblconfigids" parameterType="String"> |
| | | delete from ivr_scene_globalconfig where gblconfigid in |
| | | <foreach item="gblconfigid" collection="array" open="(" separator="," close=")"> |
| | | #{gblconfigid} |
| | | </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.IvrSceneIntentMapper"> |
| | | |
| | | <resultMap type="IvrSceneIntent" id="IvrSceneIntentResult"> |
| | | <result property="sceneintentid" column="sceneintentid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="sourcetype" column="sourcetype" /> |
| | | <result property="gbiconfigid" column="gbiconfigid" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="flowid" column="flowid" /> |
| | | <result property="flownodeid" column="flownodeid" /> |
| | | <result property="flownodebranchid" column="flownodebranchid" /> |
| | | <result property="templateid" column="templateid" /> |
| | | <result property="intentionname" column="intentionname" /> |
| | | <result property="intentionword" column="intentionword" /> |
| | | <result property="conditionstype" column="conditionstype" /> |
| | | <result property="verifyrule" column="verifyrule" /> |
| | | <result property="orand" column="orand" /> |
| | | <result property="parentresultconditionsid" column="parentresultconditionsid" /> |
| | | <result property="groupnumber" column="groupnumber" /> |
| | | <result property="grouporand" column="grouporand" /> |
| | | <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" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneIntentVo"> |
| | | select sceneintentid, orgid, sourcetype, gbiconfigid, sceneid, flowid, flownodeid, flownodebranchid, templateid, intentionname, intentionword, conditionstype, verifyrule, orand, parentresultconditionsid, groupnumber, grouporand, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from ivr_scene_intent |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneIntentList" parameterType="IvrSceneIntent" resultMap="IvrSceneIntentResult"> |
| | | <include refid="selectIvrSceneIntentVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="sourcetype != null "> and sourcetype = #{sourcetype}</if> |
| | | <if test="gbiconfigid != null "> and gbiconfigid = #{gbiconfigid}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="flowid != null "> and flowid = #{flowid}</if> |
| | | <if test="flownodeid != null "> and flownodeid = #{flownodeid}</if> |
| | | <if test="flownodebranchid != null "> and flownodebranchid = #{flownodebranchid}</if> |
| | | <if test="templateid != null "> and templateid = #{templateid}</if> |
| | | <if test="intentionname != null and intentionname != ''"> and intentionname like concat('%', #{intentionname}, '%')</if> |
| | | <if test="intentionword != null and intentionword != ''"> and intentionword = #{intentionword}</if> |
| | | <if test="conditionstype != null "> and conditionstype = #{conditionstype}</if> |
| | | <if test="verifyrule != null and verifyrule != ''"> and verifyrule = #{verifyrule}</if> |
| | | <if test="orand != null "> and orand = #{orand}</if> |
| | | <if test="parentresultconditionsid != null and parentresultconditionsid != ''"> and parentresultconditionsid = #{parentresultconditionsid}</if> |
| | | <if test="groupnumber != null "> and groupnumber = #{groupnumber}</if> |
| | | <if test="grouporand != null "> and grouporand = #{grouporand}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneIntentBySceneintentid" parameterType="Long" resultMap="IvrSceneIntentResult"> |
| | | <include refid="selectIvrSceneIntentVo"/> |
| | | where sceneintentid = #{sceneintentid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrSceneIntent" parameterType="IvrSceneIntent" useGeneratedKeys="true" keyProperty="sceneintentid"> |
| | | insert into ivr_scene_intent |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="sourcetype != null">sourcetype,</if> |
| | | <if test="gbiconfigid != null">gbiconfigid,</if> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | <if test="flowid != null">flowid,</if> |
| | | <if test="flownodeid != null">flownodeid,</if> |
| | | <if test="flownodebranchid != null">flownodebranchid,</if> |
| | | <if test="templateid != null">templateid,</if> |
| | | <if test="intentionname != null">intentionname,</if> |
| | | <if test="intentionword != null">intentionword,</if> |
| | | <if test="conditionstype != null">conditionstype,</if> |
| | | <if test="verifyrule != null">verifyrule,</if> |
| | | <if test="orand != null">orand,</if> |
| | | <if test="parentresultconditionsid != null">parentresultconditionsid,</if> |
| | | <if test="groupnumber != null">groupnumber,</if> |
| | | <if test="grouporand != null">grouporand,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="sourcetype != null">#{sourcetype},</if> |
| | | <if test="gbiconfigid != null">#{gbiconfigid},</if> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | <if test="flowid != null">#{flowid},</if> |
| | | <if test="flownodeid != null">#{flownodeid},</if> |
| | | <if test="flownodebranchid != null">#{flownodebranchid},</if> |
| | | <if test="templateid != null">#{templateid},</if> |
| | | <if test="intentionname != null">#{intentionname},</if> |
| | | <if test="intentionword != null">#{intentionword},</if> |
| | | <if test="conditionstype != null">#{conditionstype},</if> |
| | | <if test="verifyrule != null">#{verifyrule},</if> |
| | | <if test="orand != null">#{orand},</if> |
| | | <if test="parentresultconditionsid != null">#{parentresultconditionsid},</if> |
| | | <if test="groupnumber != null">#{groupnumber},</if> |
| | | <if test="grouporand != null">#{grouporand},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrSceneIntent" parameterType="IvrSceneIntent"> |
| | | update ivr_scene_intent |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="sourcetype != null">sourcetype = #{sourcetype},</if> |
| | | <if test="gbiconfigid != null">gbiconfigid = #{gbiconfigid},</if> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="flowid != null">flowid = #{flowid},</if> |
| | | <if test="flownodeid != null">flownodeid = #{flownodeid},</if> |
| | | <if test="flownodebranchid != null">flownodebranchid = #{flownodebranchid},</if> |
| | | <if test="templateid != null">templateid = #{templateid},</if> |
| | | <if test="intentionname != null">intentionname = #{intentionname},</if> |
| | | <if test="intentionword != null">intentionword = #{intentionword},</if> |
| | | <if test="conditionstype != null">conditionstype = #{conditionstype},</if> |
| | | <if test="verifyrule != null">verifyrule = #{verifyrule},</if> |
| | | <if test="orand != null">orand = #{orand},</if> |
| | | <if test="parentresultconditionsid != null">parentresultconditionsid = #{parentresultconditionsid},</if> |
| | | <if test="groupnumber != null">groupnumber = #{groupnumber},</if> |
| | | <if test="grouporand != null">grouporand = #{grouporand},</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> |
| | | </trim> |
| | | where sceneintentid = #{sceneintentid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneIntentBySceneintentid" parameterType="Long"> |
| | | delete from ivr_scene_intent where sceneintentid = #{sceneintentid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneIntentBySceneintentids" parameterType="String"> |
| | | delete from ivr_scene_intent where sceneintentid in |
| | | <foreach item="sceneintentid" collection="array" open="(" separator="," close=")"> |
| | | #{sceneintentid} |
| | | </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.IvrSceneMapper"> |
| | | |
| | | <resultMap type="IvrScene" id="IvrSceneResult"> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="categoryid" column="categoryid" /> |
| | | <result property="scenename" column="scenename" /> |
| | | <result property="version" column="version" /> |
| | | <result property="relationid" column="relationid" /> |
| | | <result property="seatsid" column="seatsid" /> |
| | | <result property="scenecode" column="scenecode" /> |
| | | <result property="versionenable" column="versionenable" /> |
| | | <result property="isenable" column="isenable" /> |
| | | <result property="isrelease" column="isrelease" /> |
| | | <result property="executecycle" column="executecycle" /> |
| | | <result property="isreview" column="isreview" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | <result property="releasenotes" column="releasenotes" /> |
| | | <result property="draftid" column="draftid" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneVo"> |
| | | select sceneid, categoryid, scenename, version, relationid, seatsid, scenecode, versionenable, isenable, isrelease, executecycle, isreview, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, releasenotes, draftid from ivr_scene |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneList" parameterType="IvrScene" resultMap="IvrSceneResult"> |
| | | <include refid="selectIvrSceneVo"/> |
| | | <where> |
| | | <if test="categoryid != null and categoryid != ''"> and categoryid = #{categoryid}</if> |
| | | <if test="scenename != null and scenename != ''"> and scenename like concat('%', #{scenename}, '%')</if> |
| | | <if test="version != null and version != ''"> and version = #{version}</if> |
| | | <if test="relationid != null "> and relationid = #{relationid}</if> |
| | | <if test="seatsid != null and seatsid != ''"> and seatsid = #{seatsid}</if> |
| | | <if test="scenecode != null and scenecode != ''"> and scenecode = #{scenecode}</if> |
| | | <if test="versionenable != null "> and versionenable = #{versionenable}</if> |
| | | <if test="isenable != null "> and isenable = #{isenable}</if> |
| | | <if test="isrelease != null and isrelease != ''"> and isrelease = #{isrelease}</if> |
| | | <if test="executecycle != null "> and executecycle = #{executecycle}</if> |
| | | <if test="isreview != null "> and isreview = #{isreview}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="releasenotes != null and releasenotes != ''"> and releasenotes = #{releasenotes}</if> |
| | | <if test="draftid != null "> and draftid = #{draftid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneBySceneid" parameterType="Long" resultMap="IvrSceneResult"> |
| | | <include refid="selectIvrSceneVo"/> |
| | | where sceneid = #{sceneid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrScene" parameterType="IvrScene" useGeneratedKeys="true" keyProperty="sceneid"> |
| | | insert into ivr_scene |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="categoryid != null">categoryid,</if> |
| | | <if test="scenename != null">scenename,</if> |
| | | <if test="version != null">version,</if> |
| | | <if test="relationid != null">relationid,</if> |
| | | <if test="seatsid != null">seatsid,</if> |
| | | <if test="scenecode != null">scenecode,</if> |
| | | <if test="versionenable != null">versionenable,</if> |
| | | <if test="isenable != null">isenable,</if> |
| | | <if test="isrelease != null">isrelease,</if> |
| | | <if test="executecycle != null">executecycle,</if> |
| | | <if test="isreview != null">isreview,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | <if test="releasenotes != null">releasenotes,</if> |
| | | <if test="draftid != null">draftid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="categoryid != null">#{categoryid},</if> |
| | | <if test="scenename != null">#{scenename},</if> |
| | | <if test="version != null">#{version},</if> |
| | | <if test="relationid != null">#{relationid},</if> |
| | | <if test="seatsid != null">#{seatsid},</if> |
| | | <if test="scenecode != null">#{scenecode},</if> |
| | | <if test="versionenable != null">#{versionenable},</if> |
| | | <if test="isenable != null">#{isenable},</if> |
| | | <if test="isrelease != null">#{isrelease},</if> |
| | | <if test="executecycle != null">#{executecycle},</if> |
| | | <if test="isreview != null">#{isreview},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | <if test="releasenotes != null">#{releasenotes},</if> |
| | | <if test="draftid != null">#{draftid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrScene" parameterType="IvrScene"> |
| | | update ivr_scene |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="categoryid != null">categoryid = #{categoryid},</if> |
| | | <if test="scenename != null">scenename = #{scenename},</if> |
| | | <if test="version != null">version = #{version},</if> |
| | | <if test="relationid != null">relationid = #{relationid},</if> |
| | | <if test="seatsid != null">seatsid = #{seatsid},</if> |
| | | <if test="scenecode != null">scenecode = #{scenecode},</if> |
| | | <if test="versionenable != null">versionenable = #{versionenable},</if> |
| | | <if test="isenable != null">isenable = #{isenable},</if> |
| | | <if test="isrelease != null">isrelease = #{isrelease},</if> |
| | | <if test="executecycle != null">executecycle = #{executecycle},</if> |
| | | <if test="isreview != null">isreview = #{isreview},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | <if test="releasenotes != null">releasenotes = #{releasenotes},</if> |
| | | <if test="draftid != null">draftid = #{draftid},</if> |
| | | </trim> |
| | | where sceneid = #{sceneid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneBySceneid" parameterType="Long"> |
| | | delete from ivr_scene where sceneid = #{sceneid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneBySceneids" parameterType="String"> |
| | | delete from ivr_scene where sceneid in |
| | | <foreach item="sceneid" collection="array" open="(" separator="," close=")"> |
| | | #{sceneid} |
| | | </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.IvrSceneRecallMapper"> |
| | | |
| | | <resultMap type="IvrSceneRecall" id="IvrSceneRecallResult"> |
| | | <result property="recallid" column="recallid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="recalltype" column="recalltype" /> |
| | | <result property="recallcount" column="recallcount" /> |
| | | <result property="recallinterval" column="recallinterval" /> |
| | | <result property="recallunit" column="recallunit" /> |
| | | <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" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneRecallVo"> |
| | | select recallid, orgid, sceneid, recalltype, recallcount, recallinterval, recallunit, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from ivr_scene_recall |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneRecallList" parameterType="IvrSceneRecall" resultMap="IvrSceneRecallResult"> |
| | | <include refid="selectIvrSceneRecallVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="recalltype != null and recalltype != ''"> and recalltype = #{recalltype}</if> |
| | | <if test="recallcount != null "> and recallcount = #{recallcount}</if> |
| | | <if test="recallinterval != null "> and recallinterval = #{recallinterval}</if> |
| | | <if test="recallunit != null "> and recallunit = #{recallunit}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneRecallByRecallid" parameterType="Long" resultMap="IvrSceneRecallResult"> |
| | | <include refid="selectIvrSceneRecallVo"/> |
| | | where recallid = #{recallid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrSceneRecall" parameterType="IvrSceneRecall" useGeneratedKeys="true" keyProperty="recallid"> |
| | | insert into ivr_scene_recall |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | <if test="recalltype != null">recalltype,</if> |
| | | <if test="recallcount != null">recallcount,</if> |
| | | <if test="recallinterval != null">recallinterval,</if> |
| | | <if test="recallunit != null">recallunit,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | <if test="recalltype != null">#{recalltype},</if> |
| | | <if test="recallcount != null">#{recallcount},</if> |
| | | <if test="recallinterval != null">#{recallinterval},</if> |
| | | <if test="recallunit != null">#{recallunit},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrSceneRecall" parameterType="IvrSceneRecall"> |
| | | update ivr_scene_recall |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="recalltype != null">recalltype = #{recalltype},</if> |
| | | <if test="recallcount != null">recallcount = #{recallcount},</if> |
| | | <if test="recallinterval != null">recallinterval = #{recallinterval},</if> |
| | | <if test="recallunit != null">recallunit = #{recallunit},</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> |
| | | </trim> |
| | | where recallid = #{recallid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneRecallByRecallid" parameterType="Long"> |
| | | delete from ivr_scene_recall where recallid = #{recallid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneRecallByRecallids" parameterType="String"> |
| | | delete from ivr_scene_recall where recallid in |
| | | <foreach item="recallid" collection="array" open="(" separator="," close=")"> |
| | | #{recallid} |
| | | </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.IvrSceneScriptMapper"> |
| | | |
| | | <resultMap type="IvrSceneScript" id="IvrSceneScriptResult"> |
| | | <result property="scenescrid" column="scenescrid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="sourcetype" column="sourcetype" /> |
| | | <result property="globalid" column="globalid" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="flowid" column="flowid" /> |
| | | <result property="flownodeid" column="flownodeid" /> |
| | | <result property="templateid" column="templateid" /> |
| | | <result property="speakbody" column="speakbody" /> |
| | | <result property="speakfilepath" column="speakfilepath" /> |
| | | <result property="speakname" column="speakname" /> |
| | | <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" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneScriptVo"> |
| | | select scenescrid, orgid, sourcetype, globalid, sceneid, flowid, flownodeid, templateid, speakbody, speakfilepath, speakname, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from ivr_scene_script |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneScriptList" parameterType="IvrSceneScript" resultMap="IvrSceneScriptResult"> |
| | | <include refid="selectIvrSceneScriptVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="sourcetype != null "> and sourcetype = #{sourcetype}</if> |
| | | <if test="globalid != null "> and globalid = #{globalid}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="flowid != null "> and flowid = #{flowid}</if> |
| | | <if test="flownodeid != null "> and flownodeid = #{flownodeid}</if> |
| | | <if test="templateid != null "> and templateid = #{templateid}</if> |
| | | <if test="speakbody != null and speakbody != ''"> and speakbody = #{speakbody}</if> |
| | | <if test="speakfilepath != null and speakfilepath != ''"> and speakfilepath = #{speakfilepath}</if> |
| | | <if test="speakname != null and speakname != ''"> and speakname like concat('%', #{speakname}, '%')</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneScriptByScenescrid" parameterType="Long" resultMap="IvrSceneScriptResult"> |
| | | <include refid="selectIvrSceneScriptVo"/> |
| | | where scenescrid = #{scenescrid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrSceneScript" parameterType="IvrSceneScript" useGeneratedKeys="true" keyProperty="scenescrid"> |
| | | insert into ivr_scene_script |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="sourcetype != null">sourcetype,</if> |
| | | <if test="globalid != null">globalid,</if> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | <if test="flowid != null">flowid,</if> |
| | | <if test="flownodeid != null">flownodeid,</if> |
| | | <if test="templateid != null">templateid,</if> |
| | | <if test="speakbody != null">speakbody,</if> |
| | | <if test="speakfilepath != null">speakfilepath,</if> |
| | | <if test="speakname != null">speakname,</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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="sourcetype != null">#{sourcetype},</if> |
| | | <if test="globalid != null">#{globalid},</if> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | <if test="flowid != null">#{flowid},</if> |
| | | <if test="flownodeid != null">#{flownodeid},</if> |
| | | <if test="templateid != null">#{templateid},</if> |
| | | <if test="speakbody != null">#{speakbody},</if> |
| | | <if test="speakfilepath != null">#{speakfilepath},</if> |
| | | <if test="speakname != null">#{speakname},</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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrSceneScript" parameterType="IvrSceneScript"> |
| | | update ivr_scene_script |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="sourcetype != null">sourcetype = #{sourcetype},</if> |
| | | <if test="globalid != null">globalid = #{globalid},</if> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="flowid != null">flowid = #{flowid},</if> |
| | | <if test="flownodeid != null">flownodeid = #{flownodeid},</if> |
| | | <if test="templateid != null">templateid = #{templateid},</if> |
| | | <if test="speakbody != null">speakbody = #{speakbody},</if> |
| | | <if test="speakfilepath != null">speakfilepath = #{speakfilepath},</if> |
| | | <if test="speakname != null">speakname = #{speakname},</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> |
| | | </trim> |
| | | where scenescrid = #{scenescrid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneScriptByScenescrid" parameterType="Long"> |
| | | delete from ivr_scene_script where scenescrid = #{scenescrid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneScriptByScenescrids" parameterType="String"> |
| | | delete from ivr_scene_script where scenescrid in |
| | | <foreach item="scenescrid" collection="array" open="(" separator="," close=")"> |
| | | #{scenescrid} |
| | | </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.IvrSceneScriptmodelMapper"> |
| | | |
| | | <resultMap type="IvrSceneScriptmodel" id="IvrSceneScriptmodelResult"> |
| | | <result property="scenemodid" column="scenemodid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="scenescrid" column="scenescrid" /> |
| | | <result property="speaktype" column="speaktype" /> |
| | | <result property="speakbody" column="speakbody" /> |
| | | <result property="voicetype" column="voicetype" /> |
| | | <result property="speakfilepath" column="speakfilepath" /> |
| | | <result property="manufactor" column="manufactor" /> |
| | | <result property="soundtype" column="soundtype" /> |
| | | <result property="speechnum" column="speechnum" /> |
| | | <result property="pitch" column="pitch" /> |
| | | <result property="volume" column="volume" /> |
| | | <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="speakvariable" column="speakvariable" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrSceneScriptmodelVo"> |
| | | select scenemodid, orgid, scenescrid, speaktype, speakbody, voicetype, speakfilepath, manufactor, soundtype, speechnum, pitch, volume, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, speakvariable, sceneid from ivr_scene_scriptmodel |
| | | </sql> |
| | | |
| | | <select id="selectIvrSceneScriptmodelList" parameterType="IvrSceneScriptmodel" resultMap="IvrSceneScriptmodelResult"> |
| | | <include refid="selectIvrSceneScriptmodelVo"/> |
| | | <where> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="scenescrid != null "> and scenescrid = #{scenescrid}</if> |
| | | <if test="speaktype != null "> and speaktype = #{speaktype}</if> |
| | | <if test="speakbody != null and speakbody != ''"> and speakbody = #{speakbody}</if> |
| | | <if test="voicetype != null "> and voicetype = #{voicetype}</if> |
| | | <if test="speakfilepath != null and speakfilepath != ''"> and speakfilepath = #{speakfilepath}</if> |
| | | <if test="manufactor != null and manufactor != ''"> and manufactor = #{manufactor}</if> |
| | | <if test="soundtype != null and soundtype != ''"> and soundtype = #{soundtype}</if> |
| | | <if test="speechnum != null "> and speechnum = #{speechnum}</if> |
| | | <if test="pitch != null "> and pitch = #{pitch}</if> |
| | | <if test="volume != null "> and volume = #{volume}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | <if test="speakvariable != null and speakvariable != ''"> and speakvariable = #{speakvariable}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrSceneScriptmodelByScenemodid" parameterType="Long" resultMap="IvrSceneScriptmodelResult"> |
| | | <include refid="selectIvrSceneScriptmodelVo"/> |
| | | where scenemodid = #{scenemodid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrSceneScriptmodel" parameterType="IvrSceneScriptmodel" useGeneratedKeys="true" keyProperty="scenemodid"> |
| | | insert into ivr_scene_scriptmodel |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="scenescrid != null">scenescrid,</if> |
| | | <if test="speaktype != null">speaktype,</if> |
| | | <if test="speakbody != null">speakbody,</if> |
| | | <if test="voicetype != null">voicetype,</if> |
| | | <if test="speakfilepath != null">speakfilepath,</if> |
| | | <if test="manufactor != null">manufactor,</if> |
| | | <if test="soundtype != null">soundtype,</if> |
| | | <if test="speechnum != null">speechnum,</if> |
| | | <if test="pitch != null">pitch,</if> |
| | | <if test="volume != null">volume,</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="speakvariable != null">speakvariable,</if> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="scenescrid != null">#{scenescrid},</if> |
| | | <if test="speaktype != null">#{speaktype},</if> |
| | | <if test="speakbody != null">#{speakbody},</if> |
| | | <if test="voicetype != null">#{voicetype},</if> |
| | | <if test="speakfilepath != null">#{speakfilepath},</if> |
| | | <if test="manufactor != null">#{manufactor},</if> |
| | | <if test="soundtype != null">#{soundtype},</if> |
| | | <if test="speechnum != null">#{speechnum},</if> |
| | | <if test="pitch != null">#{pitch},</if> |
| | | <if test="volume != null">#{volume},</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="speakvariable != null">#{speakvariable},</if> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrSceneScriptmodel" parameterType="IvrSceneScriptmodel"> |
| | | update ivr_scene_scriptmodel |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="scenescrid != null">scenescrid = #{scenescrid},</if> |
| | | <if test="speaktype != null">speaktype = #{speaktype},</if> |
| | | <if test="speakbody != null">speakbody = #{speakbody},</if> |
| | | <if test="voicetype != null">voicetype = #{voicetype},</if> |
| | | <if test="speakfilepath != null">speakfilepath = #{speakfilepath},</if> |
| | | <if test="manufactor != null">manufactor = #{manufactor},</if> |
| | | <if test="soundtype != null">soundtype = #{soundtype},</if> |
| | | <if test="speechnum != null">speechnum = #{speechnum},</if> |
| | | <if test="pitch != null">pitch = #{pitch},</if> |
| | | <if test="volume != null">volume = #{volume},</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="speakvariable != null">speakvariable = #{speakvariable},</if> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | </trim> |
| | | where scenemodid = #{scenemodid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrSceneScriptmodelByScenemodid" parameterType="Long"> |
| | | delete from ivr_scene_scriptmodel where scenemodid = #{scenemodid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrSceneScriptmodelByScenemodids" parameterType="String"> |
| | | delete from ivr_scene_scriptmodel where scenemodid in |
| | | <foreach item="scenemodid" collection="array" open="(" separator="," close=")"> |
| | | #{scenemodid} |
| | | </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.IvrScenecategoryMapper"> |
| | | |
| | | <resultMap type="IvrScenecategory" id="IvrScenecategoryResult"> |
| | | <result property="scenecatid" column="scenecatid" /> |
| | | <result property="categoryname" column="categoryname" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectIvrScenecategoryVo"> |
| | | select scenecatid, categoryname, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from ivr_scenecategory |
| | | </sql> |
| | | |
| | | <select id="selectIvrScenecategoryList" parameterType="IvrScenecategory" resultMap="IvrScenecategoryResult"> |
| | | <include refid="selectIvrScenecategoryVo"/> |
| | | <where> |
| | | <if test="categoryname != null and categoryname != ''"> and categoryname like concat('%', #{categoryname}, '%')</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectIvrScenecategoryByScenecatid" parameterType="Long" resultMap="IvrScenecategoryResult"> |
| | | <include refid="selectIvrScenecategoryVo"/> |
| | | where scenecatid = #{scenecatid} |
| | | </select> |
| | | |
| | | <insert id="insertIvrScenecategory" parameterType="IvrScenecategory" useGeneratedKeys="true" keyProperty="scenecatid"> |
| | | insert into ivr_scenecategory |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="categoryname != null">categoryname,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="categoryname != null">#{categoryname},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateIvrScenecategory" parameterType="IvrScenecategory"> |
| | | update ivr_scenecategory |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="categoryname != null">categoryname = #{categoryname},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | </trim> |
| | | where scenecatid = #{scenecatid} |
| | | </update> |
| | | |
| | | <delete id="deleteIvrScenecategoryByScenecatid" parameterType="Long"> |
| | | delete from ivr_scenecategory where scenecatid = #{scenecatid} |
| | | </delete> |
| | | |
| | | <delete id="deleteIvrScenecategoryByScenecatids" parameterType="String"> |
| | | delete from ivr_scenecategory where scenecatid in |
| | | <foreach item="scenecatid" collection="array" open="(" separator="," close=")"> |
| | | #{scenecatid} |
| | | </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.SmsParamMapper"> |
| | | |
| | | <resultMap type="SmsParam" id="SmsParamResult"> |
| | | <result property="paramid" column="paramid" /> |
| | | <result property="paramname" column="paramname" /> |
| | | <result property="paramval" column="paramval" /> |
| | | <result property="descirbe" column="descirbe" /> |
| | | <result property="usestatus" column="usestatus" /> |
| | | <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" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSmsParamVo"> |
| | | select paramid, paramname, paramval, descirbe, usestatus, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from sms_param |
| | | </sql> |
| | | |
| | | <select id="selectSmsParamList" parameterType="SmsParam" resultMap="SmsParamResult"> |
| | | <include refid="selectSmsParamVo"/> |
| | | <where> |
| | | <if test="paramname != null and paramname != ''"> and paramname like concat('%', #{paramname}, '%')</if> |
| | | <if test="paramval != null and paramval != ''"> and paramval = #{paramval}</if> |
| | | <if test="descirbe != null and descirbe != ''"> and descirbe = #{descirbe}</if> |
| | | <if test="usestatus != null "> and usestatus = #{usestatus}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSmsParamByParamid" parameterType="Long" resultMap="SmsParamResult"> |
| | | <include refid="selectSmsParamVo"/> |
| | | where paramid = #{paramid} |
| | | </select> |
| | | |
| | | <insert id="insertSmsParam" parameterType="SmsParam"> |
| | | insert into sms_param |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="paramid != null">paramid,</if> |
| | | <if test="paramname != null">paramname,</if> |
| | | <if test="paramval != null">paramval,</if> |
| | | <if test="descirbe != null">descirbe,</if> |
| | | <if test="usestatus != null">usestatus,</if> |
| | | <if test="delFlag != null">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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="paramid != null">#{paramid},</if> |
| | | <if test="paramname != null">#{paramname},</if> |
| | | <if test="paramval != null">#{paramval},</if> |
| | | <if test="descirbe != null">#{descirbe},</if> |
| | | <if test="usestatus != null">#{usestatus},</if> |
| | | <if test="delFlag != null">#{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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSmsParam" parameterType="SmsParam"> |
| | | update sms_param |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="paramname != null">paramname = #{paramname},</if> |
| | | <if test="paramval != null">paramval = #{paramval},</if> |
| | | <if test="descirbe != null">descirbe = #{descirbe},</if> |
| | | <if test="usestatus != null">usestatus = #{usestatus},</if> |
| | | <if test="delFlag != null">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> |
| | | </trim> |
| | | where paramid = #{paramid} |
| | | </update> |
| | | |
| | | <delete id="deleteSmsParamByParamid" parameterType="Long"> |
| | | delete from sms_param where paramid = #{paramid} |
| | | </delete> |
| | | |
| | | <delete id="deleteSmsParamByParamids" parameterType="String"> |
| | | delete from sms_param where paramid in |
| | | <foreach item="paramid" collection="array" open="(" separator="," close=")"> |
| | | #{paramid} |
| | | </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.SmsRecordsMapper"> |
| | | |
| | | <resultMap type="SmsRecords" id="SmsRecordsResult"> |
| | | <result property="recordid" column="recordid" /> |
| | | <result property="userid" column="userid" /> |
| | | <result property="username" column="username" /> |
| | | <result property="phone" column="phone" /> |
| | | <result property="msgno" column="msgno" /> |
| | | <result property="msg" column="msg" /> |
| | | <result property="inserttime" column="inserttime" /> |
| | | <result property="sendtime" column="sendtime" /> |
| | | <result property="sendfailedcount" column="sendfailedcount" /> |
| | | <result property="resulttime" column="resulttime" /> |
| | | <result property="resultmsg" column="resultmsg" /> |
| | | <result property="sendstate" column="sendstate" /> |
| | | <result property="inserttype" column="inserttype" /> |
| | | <result property="insertsystem" column="insertsystem" /> |
| | | <result property="insertmodule" column="insertmodule" /> |
| | | <result property="moduleid" column="moduleid" /> |
| | | <result property="msgidentify" column="msgidentify" /> |
| | | <result property="accountid" column="accountid" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSmsRecordsVo"> |
| | | select recordid, userid, username, phone, msgno, msg, inserttime, sendtime, sendfailedcount, resulttime, resultmsg, sendstate, inserttype, insertsystem, insertmodule, moduleid, msgidentify, accountid, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from sms_records |
| | | </sql> |
| | | |
| | | <select id="selectSmsRecordsList" parameterType="SmsRecords" resultMap="SmsRecordsResult"> |
| | | <include refid="selectSmsRecordsVo"/> |
| | | <where> |
| | | <if test="userid != null and userid != ''"> and userid = #{userid}</if> |
| | | <if test="username != null and username != ''"> and username like concat('%', #{username}, '%')</if> |
| | | <if test="phone != null and phone != ''"> and phone = #{phone}</if> |
| | | <if test="msgno != null and msgno != ''"> and msgno = #{msgno}</if> |
| | | <if test="msg != null and msg != ''"> and msg = #{msg}</if> |
| | | <if test="inserttime != null "> and inserttime = #{inserttime}</if> |
| | | <if test="sendtime != null "> and sendtime = #{sendtime}</if> |
| | | <if test="sendfailedcount != null "> and sendfailedcount = #{sendfailedcount}</if> |
| | | <if test="resulttime != null "> and resulttime = #{resulttime}</if> |
| | | <if test="resultmsg != null and resultmsg != ''"> and resultmsg = #{resultmsg}</if> |
| | | <if test="sendstate != null "> and sendstate = #{sendstate}</if> |
| | | <if test="inserttype != null "> and inserttype = #{inserttype}</if> |
| | | <if test="insertsystem != null "> and insertsystem = #{insertsystem}</if> |
| | | <if test="insertmodule != null and insertmodule != ''"> and insertmodule = #{insertmodule}</if> |
| | | <if test="moduleid != null and moduleid != ''"> and moduleid = #{moduleid}</if> |
| | | <if test="msgidentify != null and msgidentify != ''"> and msgidentify = #{msgidentify}</if> |
| | | <if test="accountid != null "> and accountid = #{accountid}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSmsRecordsByRecordid" parameterType="Long" resultMap="SmsRecordsResult"> |
| | | <include refid="selectSmsRecordsVo"/> |
| | | where recordid = #{recordid} |
| | | </select> |
| | | |
| | | <insert id="insertSmsRecords" parameterType="SmsRecords"> |
| | | insert into sms_records |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="recordid != null">recordid,</if> |
| | | <if test="userid != null">userid,</if> |
| | | <if test="username != null">username,</if> |
| | | <if test="phone != null">phone,</if> |
| | | <if test="msgno != null">msgno,</if> |
| | | <if test="msg != null">msg,</if> |
| | | <if test="inserttime != null">inserttime,</if> |
| | | <if test="sendtime != null">sendtime,</if> |
| | | <if test="sendfailedcount != null">sendfailedcount,</if> |
| | | <if test="resulttime != null">resulttime,</if> |
| | | <if test="resultmsg != null">resultmsg,</if> |
| | | <if test="sendstate != null">sendstate,</if> |
| | | <if test="inserttype != null">inserttype,</if> |
| | | <if test="insertsystem != null">insertsystem,</if> |
| | | <if test="insertmodule != null">insertmodule,</if> |
| | | <if test="moduleid != null">moduleid,</if> |
| | | <if test="msgidentify != null">msgidentify,</if> |
| | | <if test="accountid != null">accountid,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null">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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="recordid != null">#{recordid},</if> |
| | | <if test="userid != null">#{userid},</if> |
| | | <if test="username != null">#{username},</if> |
| | | <if test="phone != null">#{phone},</if> |
| | | <if test="msgno != null">#{msgno},</if> |
| | | <if test="msg != null">#{msg},</if> |
| | | <if test="inserttime != null">#{inserttime},</if> |
| | | <if test="sendtime != null">#{sendtime},</if> |
| | | <if test="sendfailedcount != null">#{sendfailedcount},</if> |
| | | <if test="resulttime != null">#{resulttime},</if> |
| | | <if test="resultmsg != null">#{resultmsg},</if> |
| | | <if test="sendstate != null">#{sendstate},</if> |
| | | <if test="inserttype != null">#{inserttype},</if> |
| | | <if test="insertsystem != null">#{insertsystem},</if> |
| | | <if test="insertmodule != null">#{insertmodule},</if> |
| | | <if test="moduleid != null">#{moduleid},</if> |
| | | <if test="msgidentify != null">#{msgidentify},</if> |
| | | <if test="accountid != null">#{accountid},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null">#{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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSmsRecords" parameterType="SmsRecords"> |
| | | update sms_records |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="userid != null">userid = #{userid},</if> |
| | | <if test="username != null">username = #{username},</if> |
| | | <if test="phone != null">phone = #{phone},</if> |
| | | <if test="msgno != null">msgno = #{msgno},</if> |
| | | <if test="msg != null">msg = #{msg},</if> |
| | | <if test="inserttime != null">inserttime = #{inserttime},</if> |
| | | <if test="sendtime != null">sendtime = #{sendtime},</if> |
| | | <if test="sendfailedcount != null">sendfailedcount = #{sendfailedcount},</if> |
| | | <if test="resulttime != null">resulttime = #{resulttime},</if> |
| | | <if test="resultmsg != null">resultmsg = #{resultmsg},</if> |
| | | <if test="sendstate != null">sendstate = #{sendstate},</if> |
| | | <if test="inserttype != null">inserttype = #{inserttype},</if> |
| | | <if test="insertsystem != null">insertsystem = #{insertsystem},</if> |
| | | <if test="insertmodule != null">insertmodule = #{insertmodule},</if> |
| | | <if test="moduleid != null">moduleid = #{moduleid},</if> |
| | | <if test="msgidentify != null">msgidentify = #{msgidentify},</if> |
| | | <if test="accountid != null">accountid = #{accountid},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null">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> |
| | | </trim> |
| | | where recordid = #{recordid} |
| | | </update> |
| | | |
| | | <delete id="deleteSmsRecordsByRecordid" parameterType="Long"> |
| | | delete from sms_records where recordid = #{recordid} |
| | | </delete> |
| | | |
| | | <delete id="deleteSmsRecordsByRecordids" parameterType="String"> |
| | | delete from sms_records where recordid in |
| | | <foreach item="recordid" collection="array" open="(" separator="," close=")"> |
| | | #{recordid} |
| | | </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.SmsTempletMapper"> |
| | | |
| | | <resultMap type="SmsTemplet" id="SmsTempletResult"> |
| | | <result property="templetid" column="templetid" /> |
| | | <result property="templetno" column="templetno" /> |
| | | <result property="templetname" column="templetname" /> |
| | | <result property="templetcontent" column="templetcontent" /> |
| | | <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" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSmsTempletVo"> |
| | | select templetid, templetno, templetname, templetcontent, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from sms_templet |
| | | </sql> |
| | | |
| | | <select id="selectSmsTempletList" parameterType="SmsTemplet" resultMap="SmsTempletResult"> |
| | | <include refid="selectSmsTempletVo"/> |
| | | <where> |
| | | <if test="templetno != null and templetno != ''"> and templetno = #{templetno}</if> |
| | | <if test="templetname != null and templetname != ''"> and templetname like concat('%', #{templetname}, '%')</if> |
| | | <if test="templetcontent != null and templetcontent != ''"> and templetcontent = #{templetcontent}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSmsTempletByTempletid" parameterType="Long" resultMap="SmsTempletResult"> |
| | | <include refid="selectSmsTempletVo"/> |
| | | where templetid = #{templetid} |
| | | </select> |
| | | |
| | | <insert id="insertSmsTemplet" parameterType="SmsTemplet"> |
| | | insert into sms_templet |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="templetid != null">templetid,</if> |
| | | <if test="templetno != null">templetno,</if> |
| | | <if test="templetname != null">templetname,</if> |
| | | <if test="templetcontent != null">templetcontent,</if> |
| | | <if test="delFlag != null">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> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="templetid != null">#{templetid},</if> |
| | | <if test="templetno != null">#{templetno},</if> |
| | | <if test="templetname != null">#{templetname},</if> |
| | | <if test="templetcontent != null">#{templetcontent},</if> |
| | | <if test="delFlag != null">#{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> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSmsTemplet" parameterType="SmsTemplet"> |
| | | update sms_templet |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="templetno != null">templetno = #{templetno},</if> |
| | | <if test="templetname != null">templetname = #{templetname},</if> |
| | | <if test="templetcontent != null">templetcontent = #{templetcontent},</if> |
| | | <if test="delFlag != null">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> |
| | | </trim> |
| | | where templetid = #{templetid} |
| | | </update> |
| | | |
| | | <delete id="deleteSmsTempletByTempletid" parameterType="Long"> |
| | | delete from sms_templet where templetid = #{templetid} |
| | | </delete> |
| | | |
| | | <delete id="deleteSmsTempletByTempletids" parameterType="String"> |
| | | delete from sms_templet where templetid in |
| | | <foreach item="templetid" collection="array" open="(" separator="," close=")"> |
| | | #{templetid} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |