¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.PatMedInhosp; |
| | | import com.smartor.service.IPatMedInhospService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ£è
ä½é¢è®°å½Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/patinhosp") |
| | | public class PatMedInhospController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IPatMedInhospService patMedInhospService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
ä½é¢è®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patinhosp:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(PatMedInhosp patMedInhosp) |
| | | { |
| | | startPage(); |
| | | List<PatMedInhosp> list = patMedInhospService.selectPatMedInhospList(patMedInhosp); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ£è
ä½é¢è®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patinhosp:export')") |
| | | @Log(title = "æ£è
ä½é¢è®°å½", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, PatMedInhosp patMedInhosp) |
| | | { |
| | | List<PatMedInhosp> list = patMedInhospService.selectPatMedInhospList(patMedInhosp); |
| | | ExcelUtil<PatMedInhosp> util = new ExcelUtil<PatMedInhosp>(PatMedInhosp.class); |
| | | util.exportExcel(response, list, "æ£è
ä½é¢è®°å½æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ£è
ä½é¢è®°å½è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patinhosp:query')") |
| | | @GetMapping(value = "/{inhospid}") |
| | | public AjaxResult getInfo(@PathVariable("inhospid") Long inhospid) |
| | | { |
| | | return success(patMedInhospService.selectPatMedInhospByInhospid(inhospid)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ£è
ä½é¢è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patinhosp:add')") |
| | | @Log(title = "æ£è
ä½é¢è®°å½", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody PatMedInhosp patMedInhosp) |
| | | { |
| | | return toAjax(patMedInhospService.insertPatMedInhosp(patMedInhosp)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
ä½é¢è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patinhosp:edit')") |
| | | @Log(title = "æ£è
ä½é¢è®°å½", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody PatMedInhosp patMedInhosp) |
| | | { |
| | | return toAjax(patMedInhospService.updatePatMedInhosp(patMedInhosp)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿£è
ä½é¢è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patinhosp:remove')") |
| | | @Log(title = "æ£è
ä½é¢è®°å½", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{inhospids}") |
| | | public AjaxResult remove(@PathVariable Long[] inhospids) |
| | | { |
| | | return toAjax(patMedInhospService.deletePatMedInhospByInhospids(inhospids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.PatMedOuthosp; |
| | | import com.smartor.service.IPatMedOuthospService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ£è
é¨è¯è®°å½Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/patouthosp") |
| | | public class PatMedOuthospController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IPatMedOuthospService patMedOuthospService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
é¨è¯è®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patouthosp:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(PatMedOuthosp patMedOuthosp) |
| | | { |
| | | startPage(); |
| | | List<PatMedOuthosp> list = patMedOuthospService.selectPatMedOuthospList(patMedOuthosp); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ£è
é¨è¯è®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patouthosp:export')") |
| | | @Log(title = "æ£è
é¨è¯è®°å½", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, PatMedOuthosp patMedOuthosp) |
| | | { |
| | | List<PatMedOuthosp> list = patMedOuthospService.selectPatMedOuthospList(patMedOuthosp); |
| | | ExcelUtil<PatMedOuthosp> util = new ExcelUtil<PatMedOuthosp>(PatMedOuthosp.class); |
| | | util.exportExcel(response, list, "æ£è
é¨è¯è®°å½æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ£è
é¨è¯è®°å½è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patouthosp:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(patMedOuthospService.selectPatMedOuthospById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ£è
é¨è¯è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patouthosp:add')") |
| | | @Log(title = "æ£è
é¨è¯è®°å½", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody PatMedOuthosp patMedOuthosp) |
| | | { |
| | | return toAjax(patMedOuthospService.insertPatMedOuthosp(patMedOuthosp)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
é¨è¯è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patouthosp:edit')") |
| | | @Log(title = "æ£è
é¨è¯è®°å½", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody PatMedOuthosp patMedOuthosp) |
| | | { |
| | | return toAjax(patMedOuthospService.updatePatMedOuthosp(patMedOuthosp)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿£è
é¨è¯è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patouthosp:remove')") |
| | | @Log(title = "æ£è
é¨è¯è®°å½", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(patMedOuthospService.deletePatMedOuthospByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.PatMedPhysical; |
| | | import com.smartor.service.IPatMedPhysicalService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ£è
使£è®°å½Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/patphysical") |
| | | public class PatMedPhysicalController extends BaseController |
| | | { |
| | | @Autowired |
| | | private IPatMedPhysicalService patMedPhysicalService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
使£è®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patphysical:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(PatMedPhysical patMedPhysical) |
| | | { |
| | | startPage(); |
| | | List<PatMedPhysical> list = patMedPhysicalService.selectPatMedPhysicalList(patMedPhysical); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ£è
使£è®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patphysical:export')") |
| | | @Log(title = "æ£è
使£è®°å½", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, PatMedPhysical patMedPhysical) |
| | | { |
| | | List<PatMedPhysical> list = patMedPhysicalService.selectPatMedPhysicalList(patMedPhysical); |
| | | ExcelUtil<PatMedPhysical> util = new ExcelUtil<PatMedPhysical>(PatMedPhysical.class); |
| | | util.exportExcel(response, list, "æ£è
使£è®°å½æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ£è
使£è®°å½è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patphysical:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(patMedPhysicalService.selectPatMedPhysicalById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ£è
使£è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patphysical:add')") |
| | | @Log(title = "æ£è
使£è®°å½", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody PatMedPhysical patMedPhysical) |
| | | { |
| | | return toAjax(patMedPhysicalService.insertPatMedPhysical(patMedPhysical)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
使£è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patphysical:edit')") |
| | | @Log(title = "æ£è
使£è®°å½", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody PatMedPhysical patMedPhysical) |
| | | { |
| | | return toAjax(patMedPhysicalService.updatePatMedPhysical(patMedPhysical)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿£è
使£è®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:patphysical:remove')") |
| | | @Log(title = "æ£è
使£è®°å½", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(patMedPhysicalService.deletePatMedPhysicalByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.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.ruoyi.smartor.domain.SchemeAutofinshrule; |
| | | import com.ruoyi.smartor.service.ISchemeAutofinshruleService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ¹æ¡ç»æ¡è§åController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemeautofinshrule") |
| | | public class SchemeAutofinshruleController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeAutofinshruleService schemeAutofinshruleService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ç»æ¡è§åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeautofinshrule:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeAutofinshrule schemeAutofinshrule) |
| | | { |
| | | startPage(); |
| | | List<SchemeAutofinshrule> list = schemeAutofinshruleService.selectSchemeAutofinshruleList(schemeAutofinshrule); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ¹æ¡ç»æ¡è§åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeautofinshrule:export')") |
| | | @Log(title = "æ¹æ¡ç»æ¡è§å", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeAutofinshrule schemeAutofinshrule) |
| | | { |
| | | List<SchemeAutofinshrule> list = schemeAutofinshruleService.selectSchemeAutofinshruleList(schemeAutofinshrule); |
| | | ExcelUtil<SchemeAutofinshrule> util = new ExcelUtil<SchemeAutofinshrule>(SchemeAutofinshrule.class); |
| | | util.exportExcel(response, list, "æ¹æ¡ç»æ¡è§åæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ¹æ¡ç»æ¡è§å详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeautofinshrule:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeAutofinshruleService.selectSchemeAutofinshruleById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ç»æ¡è§å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeautofinshrule:add')") |
| | | @Log(title = "æ¹æ¡ç»æ¡è§å", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeAutofinshrule schemeAutofinshrule) |
| | | { |
| | | return toAjax(schemeAutofinshruleService.insertSchemeAutofinshrule(schemeAutofinshrule)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ç»æ¡è§å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeautofinshrule:edit')") |
| | | @Log(title = "æ¹æ¡ç»æ¡è§å", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeAutofinshrule schemeAutofinshrule) |
| | | { |
| | | return toAjax(schemeAutofinshruleService.updateSchemeAutofinshrule(schemeAutofinshrule)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ç»æ¡è§å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeautofinshrule:remove')") |
| | | @Log(title = "æ¹æ¡ç»æ¡è§å", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeAutofinshruleService.deleteSchemeAutofinshruleByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeCategory; |
| | | import com.smartor.service.ISchemeCategoryService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ¹æ¡åç±»Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemecategory") |
| | | public class SchemeCategoryController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeCategoryService schemeCategoryService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡åç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecategory:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeCategory schemeCategory) |
| | | { |
| | | startPage(); |
| | | List<SchemeCategory> list = schemeCategoryService.selectSchemeCategoryList(schemeCategory); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ¹æ¡åç±»å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecategory:export')") |
| | | @Log(title = "æ¹æ¡åç±»", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeCategory schemeCategory) |
| | | { |
| | | List<SchemeCategory> list = schemeCategoryService.selectSchemeCategoryList(schemeCategory); |
| | | ExcelUtil<SchemeCategory> util = new ExcelUtil<SchemeCategory>(SchemeCategory.class); |
| | | util.exportExcel(response, list, "æ¹æ¡åç±»æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ¹æ¡å类详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecategory:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeCategoryService.selectSchemeCategoryById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡åç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecategory:add')") |
| | | @Log(title = "æ¹æ¡åç±»", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeCategory schemeCategory) |
| | | { |
| | | return toAjax(schemeCategoryService.insertSchemeCategory(schemeCategory)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡åç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecategory:edit')") |
| | | @Log(title = "æ¹æ¡åç±»", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeCategory schemeCategory) |
| | | { |
| | | return toAjax(schemeCategoryService.updateSchemeCategory(schemeCategory)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡åç±» |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecategory:remove')") |
| | | @Log(title = "æ¹æ¡åç±»", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeCategoryService.deleteSchemeCategoryByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeLocallibrary; |
| | | import com.smartor.service.ISchemeLocallibraryService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æå¡æ¹æ¡åºController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemelibrary") |
| | | public class SchemeLocallibraryController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeLocallibraryService schemeLocallibraryService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æå¡æ¹æ¡åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemelibrary:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeLocallibrary schemeLocallibrary) |
| | | { |
| | | startPage(); |
| | | List<SchemeLocallibrary> list = schemeLocallibraryService.selectSchemeLocallibraryList(schemeLocallibrary); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæå¡æ¹æ¡åºå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemelibrary:export')") |
| | | @Log(title = "æå¡æ¹æ¡åº", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeLocallibrary schemeLocallibrary) |
| | | { |
| | | List<SchemeLocallibrary> list = schemeLocallibraryService.selectSchemeLocallibraryList(schemeLocallibrary); |
| | | ExcelUtil<SchemeLocallibrary> util = new ExcelUtil<SchemeLocallibrary>(SchemeLocallibrary.class); |
| | | util.exportExcel(response, list, "æå¡æ¹æ¡åºæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæå¡æ¹æ¡åºè¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemelibrary:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeLocallibraryService.selectSchemeLocallibraryById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æå¡æ¹æ¡åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemelibrary:add')") |
| | | @Log(title = "æå¡æ¹æ¡åº", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeLocallibrary schemeLocallibrary) |
| | | { |
| | | return toAjax(schemeLocallibraryService.insertSchemeLocallibrary(schemeLocallibrary)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æå¡æ¹æ¡åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemelibrary:edit')") |
| | | @Log(title = "æå¡æ¹æ¡åº", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeLocallibrary schemeLocallibrary) |
| | | { |
| | | return toAjax(schemeLocallibraryService.updateSchemeLocallibrary(schemeLocallibrary)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿塿¹æ¡åº |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemelibrary:remove')") |
| | | @Log(title = "æå¡æ¹æ¡åº", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeLocallibraryService.deleteSchemeLocallibraryByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemePlan; |
| | | import com.smartor.service.ISchemePlanService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * 管ç计åController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemeplan") |
| | | public class SchemePlanController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemePlanService schemePlanService; |
| | | |
| | | /** |
| | | * æ¥è¯¢ç®¡ç计åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeplan:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemePlan schemePlan) |
| | | { |
| | | startPage(); |
| | | List<SchemePlan> list = schemePlanService.selectSchemePlanList(schemePlan); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * 导åºç®¡ç计åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeplan:export')") |
| | | @Log(title = "管ç计å", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemePlan schemePlan) |
| | | { |
| | | List<SchemePlan> list = schemePlanService.selectSchemePlanList(schemePlan); |
| | | ExcelUtil<SchemePlan> util = new ExcelUtil<SchemePlan>(SchemePlan.class); |
| | | util.exportExcel(response, list, "管çè®¡åæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·å管ç计å详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeplan:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemePlanService.selectSchemePlanById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ç®¡ç计å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeplan:add')") |
| | | @Log(title = "管ç计å", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemePlan schemePlan) |
| | | { |
| | | return toAjax(schemePlanService.insertSchemePlan(schemePlan)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ç®¡ç计å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeplan:edit')") |
| | | @Log(title = "管ç计å", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemePlan schemePlan) |
| | | { |
| | | return toAjax(schemePlanService.updateSchemePlan(schemePlan)); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ç®¡ç计å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemeplan:remove')") |
| | | @Log(title = "管ç计å", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemePlanService.deleteSchemePlanByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTask; |
| | | import com.smartor.service.ISchemeTaskService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemetask") |
| | | public class SchemeTaskController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeTaskService schemeTaskService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetask:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeTask schemeTask) |
| | | { |
| | | startPage(); |
| | | List<SchemeTask> list = schemeTaskService.selectSchemeTaskList(schemeTask); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ¹æ¡ä»»å¡å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetask:export')") |
| | | @Log(title = "æ¹æ¡ä»»å¡", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeTask schemeTask) |
| | | { |
| | | List<SchemeTask> list = schemeTaskService.selectSchemeTaskList(schemeTask); |
| | | ExcelUtil<SchemeTask> util = new ExcelUtil<SchemeTask>(SchemeTask.class); |
| | | util.exportExcel(response, list, "æ¹æ¡ä»»å¡æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ¹æ¡ä»»å¡è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetask:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeTaskService.selectSchemeTaskById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetask:add')") |
| | | @Log(title = "æ¹æ¡ä»»å¡", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeTask schemeTask) |
| | | { |
| | | return toAjax(schemeTaskService.insertSchemeTask(schemeTask)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetask:edit')") |
| | | @Log(title = "æ¹æ¡ä»»å¡", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeTask schemeTask) |
| | | { |
| | | return toAjax(schemeTaskService.updateSchemeTask(schemeTask)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetask:remove')") |
| | | @Log(title = "æ¹æ¡ä»»å¡", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeTaskService.deleteSchemeTaskByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTaskconfig; |
| | | import com.smartor.service.ISchemeTaskconfigService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡é
ç½®Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemetaskconfig") |
| | | public class SchemeTaskconfigController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeTaskconfigService schemeTaskconfigService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡é
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskconfig:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeTaskconfig schemeTaskconfig) |
| | | { |
| | | startPage(); |
| | | List<SchemeTaskconfig> list = schemeTaskconfigService.selectSchemeTaskconfigList(schemeTaskconfig); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ¹æ¡ä»»å¡é
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskconfig:export')") |
| | | @Log(title = "æ¹æ¡ä»»å¡é
ç½®", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeTaskconfig schemeTaskconfig) |
| | | { |
| | | List<SchemeTaskconfig> list = schemeTaskconfigService.selectSchemeTaskconfigList(schemeTaskconfig); |
| | | ExcelUtil<SchemeTaskconfig> util = new ExcelUtil<SchemeTaskconfig>(SchemeTaskconfig.class); |
| | | util.exportExcel(response, list, "æ¹æ¡ä»»å¡é
ç½®æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ¹æ¡ä»»å¡é
置详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskconfig:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeTaskconfigService.selectSchemeTaskconfigById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskconfig:add')") |
| | | @Log(title = "æ¹æ¡ä»»å¡é
ç½®", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeTaskconfig schemeTaskconfig) |
| | | { |
| | | return toAjax(schemeTaskconfigService.insertSchemeTaskconfig(schemeTaskconfig)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskconfig:edit')") |
| | | @Log(title = "æ¹æ¡ä»»å¡é
ç½®", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeTaskconfig schemeTaskconfig) |
| | | { |
| | | return toAjax(schemeTaskconfigService.updateSchemeTaskconfig(schemeTaskconfig)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡é
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskconfig:remove')") |
| | | @Log(title = "æ¹æ¡ä»»å¡é
ç½®", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeTaskconfigService.deleteSchemeTaskconfigByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTaskrecordCalldetail; |
| | | import com.smartor.service.ISchemeTaskrecordCalldetailService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemecalldetail") |
| | | public class SchemeTaskrecordCalldetailController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeTaskrecordCalldetailService schemeTaskrecordCalldetailService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecalldetail:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail) |
| | | { |
| | | startPage(); |
| | | List<SchemeTaskrecordCalldetail> list = schemeTaskrecordCalldetailService.selectSchemeTaskrecordCalldetailList(schemeTaskrecordCalldetail); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecalldetail:export')") |
| | | @Log(title = "æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeTaskrecordCalldetail schemeTaskrecordCalldetail) |
| | | { |
| | | List<SchemeTaskrecordCalldetail> list = schemeTaskrecordCalldetailService.selectSchemeTaskrecordCalldetailList(schemeTaskrecordCalldetail); |
| | | ExcelUtil<SchemeTaskrecordCalldetail> util = new ExcelUtil<SchemeTaskrecordCalldetail>(SchemeTaskrecordCalldetail.class); |
| | | util.exportExcel(response, list, "æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecalldetail:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeTaskrecordCalldetailService.selectSchemeTaskrecordCalldetailById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecalldetail:add')") |
| | | @Log(title = "æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeTaskrecordCalldetail schemeTaskrecordCalldetail) |
| | | { |
| | | return toAjax(schemeTaskrecordCalldetailService.insertSchemeTaskrecordCalldetail(schemeTaskrecordCalldetail)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecalldetail:edit')") |
| | | @Log(title = "æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeTaskrecordCalldetail schemeTaskrecordCalldetail) |
| | | { |
| | | return toAjax(schemeTaskrecordCalldetailService.updateSchemeTaskrecordCalldetail(schemeTaskrecordCalldetail)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemecalldetail:remove')") |
| | | @Log(title = "æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeTaskrecordCalldetailService.deleteSchemeTaskrecordCalldetailByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTaskrecord; |
| | | import com.smartor.service.ISchemeTaskrecordService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡å¤çè®°å½Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemetaskrecord") |
| | | public class SchemeTaskrecordController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeTaskrecordService schemeTaskrecordService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å¤çè®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrecord:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeTaskrecord schemeTaskrecord) |
| | | { |
| | | startPage(); |
| | | List<SchemeTaskrecord> list = schemeTaskrecordService.selectSchemeTaskrecordList(schemeTaskrecord); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ¹æ¡ä»»å¡å¤çè®°å½å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrecord:export')") |
| | | @Log(title = "æ¹æ¡ä»»å¡å¤çè®°å½", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeTaskrecord schemeTaskrecord) |
| | | { |
| | | List<SchemeTaskrecord> list = schemeTaskrecordService.selectSchemeTaskrecordList(schemeTaskrecord); |
| | | ExcelUtil<SchemeTaskrecord> util = new ExcelUtil<SchemeTaskrecord>(SchemeTaskrecord.class); |
| | | util.exportExcel(response, list, "æ¹æ¡ä»»å¡å¤çè®°å½æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ¹æ¡ä»»å¡å¤çè®°å½è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrecord:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeTaskrecordService.selectSchemeTaskrecordById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrecord:add')") |
| | | @Log(title = "æ¹æ¡ä»»å¡å¤çè®°å½", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeTaskrecord schemeTaskrecord) |
| | | { |
| | | return toAjax(schemeTaskrecordService.insertSchemeTaskrecord(schemeTaskrecord)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrecord:edit')") |
| | | @Log(title = "æ¹æ¡ä»»å¡å¤çè®°å½", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeTaskrecord schemeTaskrecord) |
| | | { |
| | | return toAjax(schemeTaskrecordService.updateSchemeTaskrecord(schemeTaskrecord)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡å¤çè®°å½ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrecord:remove')") |
| | | @Log(title = "æ¹æ¡ä»»å¡å¤çè®°å½", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeTaskrecordService.deleteSchemeTaskrecordByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTaskrepeatconfig; |
| | | import com.smartor.service.ISchemeTaskrepeatconfigService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡éåé
ç½®Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemetaskrepeatconfig") |
| | | public class SchemeTaskrepeatconfigController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeTaskrepeatconfigService schemeTaskrepeatconfigService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡éåé
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeTaskrepeatconfig schemeTaskrepeatconfig) |
| | | { |
| | | startPage(); |
| | | List<SchemeTaskrepeatconfig> list = schemeTaskrepeatconfigService.selectSchemeTaskrepeatconfigList(schemeTaskrepeatconfig); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ¹æ¡ä»»å¡éåé
ç½®å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:export')") |
| | | @Log(title = "æ¹æ¡ä»»å¡éåé
ç½®", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeTaskrepeatconfig schemeTaskrepeatconfig) |
| | | { |
| | | List<SchemeTaskrepeatconfig> list = schemeTaskrepeatconfigService.selectSchemeTaskrepeatconfigList(schemeTaskrepeatconfig); |
| | | ExcelUtil<SchemeTaskrepeatconfig> util = new ExcelUtil<SchemeTaskrepeatconfig>(SchemeTaskrepeatconfig.class); |
| | | util.exportExcel(response, list, "æ¹æ¡ä»»å¡éåé
ç½®æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ¹æ¡ä»»å¡éåé
置详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeTaskrepeatconfigService.selectSchemeTaskrepeatconfigById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡éåé
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:add')") |
| | | @Log(title = "æ¹æ¡ä»»å¡éåé
ç½®", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeTaskrepeatconfig schemeTaskrepeatconfig) |
| | | { |
| | | return toAjax(schemeTaskrepeatconfigService.insertSchemeTaskrepeatconfig(schemeTaskrepeatconfig)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡éåé
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:edit')") |
| | | @Log(title = "æ¹æ¡ä»»å¡éåé
ç½®", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeTaskrepeatconfig schemeTaskrepeatconfig) |
| | | { |
| | | return toAjax(schemeTaskrepeatconfigService.updateSchemeTaskrepeatconfig(schemeTaskrepeatconfig)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡éåé
ç½® |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetaskrepeatconfig:remove')") |
| | | @Log(title = "æ¹æ¡ä»»å¡éåé
ç½®", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeTaskrepeatconfigService.deleteSchemeTaskrepeatconfigByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTriggerrule; |
| | | import com.smartor.service.ISchemeTriggerruleService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦åæ¡ä»¶è§åController |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemetriggerrule") |
| | | public class SchemeTriggerruleController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeTriggerruleService schemeTriggerruleService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦åæ¡ä»¶è§åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerrule:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeTriggerrule schemeTriggerrule) |
| | | { |
| | | startPage(); |
| | | List<SchemeTriggerrule> list = schemeTriggerruleService.selectSchemeTriggerruleList(schemeTriggerrule); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ¹æ¡è§¦åæ¡ä»¶è§åå表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerrule:export')") |
| | | @Log(title = "æ¹æ¡è§¦åæ¡ä»¶è§å", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeTriggerrule schemeTriggerrule) |
| | | { |
| | | List<SchemeTriggerrule> list = schemeTriggerruleService.selectSchemeTriggerruleList(schemeTriggerrule); |
| | | ExcelUtil<SchemeTriggerrule> util = new ExcelUtil<SchemeTriggerrule>(SchemeTriggerrule.class); |
| | | util.exportExcel(response, list, "æ¹æ¡è§¦åæ¡ä»¶è§åæ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ¹æ¡è§¦åæ¡ä»¶è§å详ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerrule:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeTriggerruleService.selectSchemeTriggerruleById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerrule:add')") |
| | | @Log(title = "æ¹æ¡è§¦åæ¡ä»¶è§å", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeTriggerrule schemeTriggerrule) |
| | | { |
| | | return toAjax(schemeTriggerruleService.insertSchemeTriggerrule(schemeTriggerrule)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerrule:edit')") |
| | | @Log(title = "æ¹æ¡è§¦åæ¡ä»¶è§å", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeTriggerrule schemeTriggerrule) |
| | | { |
| | | return toAjax(schemeTriggerruleService.updateSchemeTriggerrule(schemeTriggerrule)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡è§¦åæ¡ä»¶è§å |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerrule:remove')") |
| | | @Log(title = "æ¹æ¡è§¦åæ¡ä»¶è§å", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeTriggerruleService.deleteSchemeTriggerruleByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTriggerscene; |
| | | import com.smartor.service.ISchemeTriggersceneService; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦ååºæ¯Controller |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @RestController |
| | | @RequestMapping("/smartor/schemetriggerscene") |
| | | public class SchemeTriggersceneController extends BaseController |
| | | { |
| | | @Autowired |
| | | private ISchemeTriggersceneService schemeTriggersceneService; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦ååºæ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerscene:list')") |
| | | @GetMapping("/list") |
| | | public TableDataInfo list(SchemeTriggerscene schemeTriggerscene) |
| | | { |
| | | startPage(); |
| | | List<SchemeTriggerscene> list = schemeTriggersceneService.selectSchemeTriggersceneList(schemeTriggerscene); |
| | | return getDataTable(list); |
| | | } |
| | | |
| | | /** |
| | | * å¯¼åºæ¹æ¡è§¦ååºæ¯å表 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerscene:export')") |
| | | @Log(title = "æ¹æ¡è§¦ååºæ¯", businessType = BusinessType.EXPORT) |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, SchemeTriggerscene schemeTriggerscene) |
| | | { |
| | | List<SchemeTriggerscene> list = schemeTriggersceneService.selectSchemeTriggersceneList(schemeTriggerscene); |
| | | ExcelUtil<SchemeTriggerscene> util = new ExcelUtil<SchemeTriggerscene>(SchemeTriggerscene.class); |
| | | util.exportExcel(response, list, "æ¹æ¡è§¦ååºæ¯æ°æ®"); |
| | | } |
| | | |
| | | /** |
| | | * è·åæ¹æ¡è§¦ååºæ¯è¯¦ç»ä¿¡æ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerscene:query')") |
| | | @GetMapping(value = "/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) |
| | | { |
| | | return success(schemeTriggersceneService.selectSchemeTriggersceneById(id)); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡è§¦ååºæ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerscene:add')") |
| | | @Log(title = "æ¹æ¡è§¦ååºæ¯", businessType = BusinessType.INSERT) |
| | | @PostMapping |
| | | public AjaxResult add(@RequestBody SchemeTriggerscene schemeTriggerscene) |
| | | { |
| | | return toAjax(schemeTriggersceneService.insertSchemeTriggerscene(schemeTriggerscene)); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡è§¦ååºæ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerscene:edit')") |
| | | @Log(title = "æ¹æ¡è§¦ååºæ¯", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody SchemeTriggerscene schemeTriggerscene) |
| | | { |
| | | return toAjax(schemeTriggersceneService.updateSchemeTriggerscene(schemeTriggerscene)); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡è§¦ååºæ¯ |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('smartor:schemetriggerscene:remove')") |
| | | @Log(title = "æ¹æ¡è§¦ååºæ¯", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | public AjaxResult remove(@PathVariable Long[] ids) |
| | | { |
| | | return toAjax(schemeTriggersceneService.deleteSchemeTriggersceneByIds(ids)); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; |
| | | |
| | | /** |
| | | * æ£è
ä½é¢è®°å½å¯¹è±¡ pat_med_inhosp |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class PatMedInhosp extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long inhospid; |
| | | |
| | | /** æµæ°´å· */ |
| | | private String serialnum; |
| | | |
| | | /** å»é¢åç§° */ |
| | | @Excel(name = " å»é¢åç§° ") |
| | | private String hospitalname; |
| | | |
| | | /** å»é¢ç¼å· */ |
| | | private String hospitalcode; |
| | | |
| | | /** é¢åºç¼å· */ |
| | | private String hospitaldistrictcode; |
| | | |
| | | /** é¢åºåç§° */ |
| | | @Excel(name = " é¢åºåç§° ") |
| | | private String hospitaldistrictname; |
| | | |
| | | /** å
¥é¢è¯æICDå¼ */ |
| | | private String icd10code; |
| | | |
| | | /** å
¥é¢è¯æåç§° */ |
| | | private String diagname; |
| | | |
| | | /** å
¥é¢æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " å
¥é¢æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date starttime; |
| | | |
| | | /** åºé¢æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " åºé¢æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date endtime; |
| | | |
| | | /** å
¥é¢ç§å®¤ä»£ç */ |
| | | private String deptcode; |
| | | |
| | | /** å
¥é¢ç§å®¤åç§° */ |
| | | private String deptname; |
| | | |
| | | /** æ¿é´å· */ |
| | | private String roomno; |
| | | |
| | | /** åºä½å· */ |
| | | @Excel(name = " åºä½å· ") |
| | | private String bedno; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | private Date uploadTime; |
| | | |
| | | /** æ¡£æ¡ID */ |
| | | private Long patid; |
| | | |
| | | /** åºé¢è¯æ */ |
| | | @Excel(name = " åºé¢è¯æ ") |
| | | private String leavediagname; |
| | | |
| | | /** åºé¢è¯æICDå¼ */ |
| | | private String leaveicd10code; |
| | | |
| | | /** å»çå·¥å· */ |
| | | private String drcode; |
| | | |
| | | /** å»çåç§° */ |
| | | @Excel(name = " å»çåç§° ") |
| | | private String drname; |
| | | |
| | | /** æ¯å¦çææ¹æ¡ç¶æ;0æªçæ 1çæå
¥é¢ 2çæåºé¢ 9æ å¹é
æ¹æ¡ */ |
| | | private Long schemestatus; |
| | | |
| | | /** æ¯å¦çæéç¨æ¹æ¡ç¶æ;0æªçæ 1çæ 9æ å¹é
æ¹æ¡ */ |
| | | private Long generalschemestatus; |
| | | |
| | | /** åºé¢ç§å®¤ä»£ç */ |
| | | private String leaveldeptcode; |
| | | |
| | | /** åºé¢ç§å®¤åç§° */ |
| | | @Excel(name = " åºé¢ç§å®¤åç§° ") |
| | | private String leaveldeptname; |
| | | |
| | | /** ç
åºID */ |
| | | private Long hospitaldistrictid; |
| | | |
| | | /** åºé¢ç
åºç¼å· */ |
| | | private String leavehospitaldistrictcode; |
| | | |
| | | /** åºé¢ç
åºåç§° */ |
| | | @Excel(name = " åºé¢ç
åºåç§° ") |
| | | private String leavehospitaldistrictname; |
| | | |
| | | /** åºé¢ç
åºID */ |
| | | private Long leavehospitaldistrictid; |
| | | |
| | | /** å
¥é¢ç§å®¤ID */ |
| | | private Long deptid; |
| | | |
| | | /** åºé¢ç§å®¤ID */ |
| | | private Long leaveldeptid; |
| | | |
| | | /** æ¹æ¡ç¶ææä½æ¶é´ */ |
| | | private Date schemetime; |
| | | |
| | | public void setInhospid(Long inhospid) |
| | | { |
| | | this.inhospid = inhospid; |
| | | } |
| | | |
| | | public Long getInhospid() |
| | | { |
| | | return inhospid; |
| | | } |
| | | public void setSerialnum(String serialnum) |
| | | { |
| | | this.serialnum = serialnum; |
| | | } |
| | | |
| | | public String getSerialnum() |
| | | { |
| | | return serialnum; |
| | | } |
| | | public void setHospitalname(String hospitalname) |
| | | { |
| | | this.hospitalname = hospitalname; |
| | | } |
| | | |
| | | public String getHospitalname() |
| | | { |
| | | return hospitalname; |
| | | } |
| | | public void setHospitalcode(String hospitalcode) |
| | | { |
| | | this.hospitalcode = hospitalcode; |
| | | } |
| | | |
| | | public String getHospitalcode() |
| | | { |
| | | return hospitalcode; |
| | | } |
| | | public void setHospitaldistrictcode(String hospitaldistrictcode) |
| | | { |
| | | this.hospitaldistrictcode = hospitaldistrictcode; |
| | | } |
| | | |
| | | public String getHospitaldistrictcode() |
| | | { |
| | | return hospitaldistrictcode; |
| | | } |
| | | public void setHospitaldistrictname(String hospitaldistrictname) |
| | | { |
| | | this.hospitaldistrictname = hospitaldistrictname; |
| | | } |
| | | |
| | | public String getHospitaldistrictname() |
| | | { |
| | | return hospitaldistrictname; |
| | | } |
| | | public void setIcd10code(String icd10code) |
| | | { |
| | | this.icd10code = icd10code; |
| | | } |
| | | |
| | | public String getIcd10code() |
| | | { |
| | | return icd10code; |
| | | } |
| | | public void setDiagname(String diagname) |
| | | { |
| | | this.diagname = diagname; |
| | | } |
| | | |
| | | public String getDiagname() |
| | | { |
| | | return diagname; |
| | | } |
| | | public void setStarttime(Date starttime) |
| | | { |
| | | this.starttime = starttime; |
| | | } |
| | | |
| | | public Date getStarttime() |
| | | { |
| | | return starttime; |
| | | } |
| | | public void setEndtime(Date endtime) |
| | | { |
| | | this.endtime = endtime; |
| | | } |
| | | |
| | | public Date getEndtime() |
| | | { |
| | | return endtime; |
| | | } |
| | | public void setDeptcode(String deptcode) |
| | | { |
| | | this.deptcode = deptcode; |
| | | } |
| | | |
| | | public String getDeptcode() |
| | | { |
| | | return deptcode; |
| | | } |
| | | public void setDeptname(String deptname) |
| | | { |
| | | this.deptname = deptname; |
| | | } |
| | | |
| | | public String getDeptname() |
| | | { |
| | | return deptname; |
| | | } |
| | | public void setRoomno(String roomno) |
| | | { |
| | | this.roomno = roomno; |
| | | } |
| | | |
| | | public String getRoomno() |
| | | { |
| | | return roomno; |
| | | } |
| | | public void setBedno(String bedno) |
| | | { |
| | | this.bedno = bedno; |
| | | } |
| | | |
| | | public String getBedno() |
| | | { |
| | | return bedno; |
| | | } |
| | | 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 setPatid(Long patid) |
| | | { |
| | | this.patid = patid; |
| | | } |
| | | |
| | | public Long getPatid() |
| | | { |
| | | return patid; |
| | | } |
| | | public void setLeavediagname(String leavediagname) |
| | | { |
| | | this.leavediagname = leavediagname; |
| | | } |
| | | |
| | | public String getLeavediagname() |
| | | { |
| | | return leavediagname; |
| | | } |
| | | public void setLeaveicd10code(String leaveicd10code) |
| | | { |
| | | this.leaveicd10code = leaveicd10code; |
| | | } |
| | | |
| | | public String getLeaveicd10code() |
| | | { |
| | | return leaveicd10code; |
| | | } |
| | | public void setDrcode(String drcode) |
| | | { |
| | | this.drcode = drcode; |
| | | } |
| | | |
| | | public String getDrcode() |
| | | { |
| | | return drcode; |
| | | } |
| | | public void setDrname(String drname) |
| | | { |
| | | this.drname = drname; |
| | | } |
| | | |
| | | public String getDrname() |
| | | { |
| | | return drname; |
| | | } |
| | | public void setSchemestatus(Long schemestatus) |
| | | { |
| | | this.schemestatus = schemestatus; |
| | | } |
| | | |
| | | public Long getSchemestatus() |
| | | { |
| | | return schemestatus; |
| | | } |
| | | public void setGeneralschemestatus(Long generalschemestatus) |
| | | { |
| | | this.generalschemestatus = generalschemestatus; |
| | | } |
| | | |
| | | public Long getGeneralschemestatus() |
| | | { |
| | | return generalschemestatus; |
| | | } |
| | | public void setLeaveldeptcode(String leaveldeptcode) |
| | | { |
| | | this.leaveldeptcode = leaveldeptcode; |
| | | } |
| | | |
| | | public String getLeaveldeptcode() |
| | | { |
| | | return leaveldeptcode; |
| | | } |
| | | public void setLeaveldeptname(String leaveldeptname) |
| | | { |
| | | this.leaveldeptname = leaveldeptname; |
| | | } |
| | | |
| | | public String getLeaveldeptname() |
| | | { |
| | | return leaveldeptname; |
| | | } |
| | | public void setHospitaldistrictid(Long hospitaldistrictid) |
| | | { |
| | | this.hospitaldistrictid = hospitaldistrictid; |
| | | } |
| | | |
| | | public Long getHospitaldistrictid() |
| | | { |
| | | return hospitaldistrictid; |
| | | } |
| | | public void setLeavehospitaldistrictcode(String leavehospitaldistrictcode) |
| | | { |
| | | this.leavehospitaldistrictcode = leavehospitaldistrictcode; |
| | | } |
| | | |
| | | public String getLeavehospitaldistrictcode() |
| | | { |
| | | return leavehospitaldistrictcode; |
| | | } |
| | | public void setLeavehospitaldistrictname(String leavehospitaldistrictname) |
| | | { |
| | | this.leavehospitaldistrictname = leavehospitaldistrictname; |
| | | } |
| | | |
| | | public String getLeavehospitaldistrictname() |
| | | { |
| | | return leavehospitaldistrictname; |
| | | } |
| | | public void setLeavehospitaldistrictid(Long leavehospitaldistrictid) |
| | | { |
| | | this.leavehospitaldistrictid = leavehospitaldistrictid; |
| | | } |
| | | |
| | | public Long getLeavehospitaldistrictid() |
| | | { |
| | | return leavehospitaldistrictid; |
| | | } |
| | | public void setDeptid(Long deptid) |
| | | { |
| | | this.deptid = deptid; |
| | | } |
| | | |
| | | public Long getDeptid() |
| | | { |
| | | return deptid; |
| | | } |
| | | public void setLeaveldeptid(Long leaveldeptid) |
| | | { |
| | | this.leaveldeptid = leaveldeptid; |
| | | } |
| | | |
| | | public Long getLeaveldeptid() |
| | | { |
| | | return leaveldeptid; |
| | | } |
| | | public void setSchemetime(Date schemetime) |
| | | { |
| | | this.schemetime = schemetime; |
| | | } |
| | | |
| | | public Date getSchemetime() |
| | | { |
| | | return schemetime; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("inhospid", getInhospid()) |
| | | .append("serialnum", getSerialnum()) |
| | | .append("hospitalname", getHospitalname()) |
| | | .append("hospitalcode", getHospitalcode()) |
| | | .append("hospitaldistrictcode", getHospitaldistrictcode()) |
| | | .append("hospitaldistrictname", getHospitaldistrictname()) |
| | | .append("icd10code", getIcd10code()) |
| | | .append("diagname", getDiagname()) |
| | | .append("starttime", getStarttime()) |
| | | .append("endtime", getEndtime()) |
| | | .append("deptcode", getDeptcode()) |
| | | .append("deptname", getDeptname()) |
| | | .append("roomno", getRoomno()) |
| | | .append("bedno", getBedno()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .append("patid", getPatid()) |
| | | .append("leavediagname", getLeavediagname()) |
| | | .append("leaveicd10code", getLeaveicd10code()) |
| | | .append("drcode", getDrcode()) |
| | | .append("drname", getDrname()) |
| | | .append("schemestatus", getSchemestatus()) |
| | | .append("generalschemestatus", getGeneralschemestatus()) |
| | | .append("leaveldeptcode", getLeaveldeptcode()) |
| | | .append("leaveldeptname", getLeaveldeptname()) |
| | | .append("hospitaldistrictid", getHospitaldistrictid()) |
| | | .append("leavehospitaldistrictcode", getLeavehospitaldistrictcode()) |
| | | .append("leavehospitaldistrictname", getLeavehospitaldistrictname()) |
| | | .append("leavehospitaldistrictid", getLeavehospitaldistrictid()) |
| | | .append("deptid", getDeptid()) |
| | | .append("leaveldeptid", getLeaveldeptid()) |
| | | .append("schemetime", getSchemetime()) |
| | | .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; |
| | | |
| | | /** |
| | | * æ£è
é¨è¯è®°å½å¯¹è±¡ pat_med_outhosp |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class PatMedOuthosp extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æµæ°´å· */ |
| | | private String serialnum; |
| | | |
| | | /** æ¡£æ¡ID */ |
| | | private Long patid; |
| | | |
| | | /** å»é¢åç§° */ |
| | | @Excel(name = " å»é¢åç§° ") |
| | | private String hospitalname; |
| | | |
| | | /** å»é¢ç¼å· */ |
| | | private String hospitalcode; |
| | | |
| | | /** è¯æICDå¼ */ |
| | | private String icd10code; |
| | | |
| | | /** è¯æåç§° */ |
| | | @Excel(name = " è¯æåç§° ") |
| | | private String diagname; |
| | | |
| | | /** ç§å®¤ä»£ç */ |
| | | private String deptcode; |
| | | |
| | | /** ç§å®¤åç§° */ |
| | | @Excel(name = " ç§å®¤åç§° ") |
| | | private String deptname; |
| | | |
| | | /** å»çå·¥å· */ |
| | | private String drcode; |
| | | |
| | | /** å»çåç§° */ |
| | | @Excel(name = " å»çåç§° ") |
| | | private String drname; |
| | | |
| | | /** å°±è¯æ¥æ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " å°±è¯æ¥æ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date admitdate; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | private Date uploadTime; |
| | | |
| | | /** æ¯å¦çææ¹æ¡ç¶æ;0æªçæ 1çæå°±è¯ 9æ å¹é
æ¹æ¡ */ |
| | | @Excel(name = " æ¯å¦çææ¹æ¡ç¶æ;0æªçæ 1çæå°±è¯ 9æ å¹é
æ¹æ¡ ") |
| | | private Long schemestatus; |
| | | |
| | | /** ç§å®¤ID */ |
| | | private Long deptid; |
| | | |
| | | /** æ¹æ¡ç¶ææä½æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " æ¹æ¡ç¶ææä½æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date schemetime; |
| | | |
| | | /** ç°ç
å² */ |
| | | private String hpi; |
| | | |
| | | /** 主述 */ |
| | | private String mainsuit; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSerialnum(String serialnum) |
| | | { |
| | | this.serialnum = serialnum; |
| | | } |
| | | |
| | | public String getSerialnum() |
| | | { |
| | | return serialnum; |
| | | } |
| | | public void setPatid(Long patid) |
| | | { |
| | | this.patid = patid; |
| | | } |
| | | |
| | | public Long getPatid() |
| | | { |
| | | return patid; |
| | | } |
| | | public void setHospitalname(String hospitalname) |
| | | { |
| | | this.hospitalname = hospitalname; |
| | | } |
| | | |
| | | public String getHospitalname() |
| | | { |
| | | return hospitalname; |
| | | } |
| | | public void setHospitalcode(String hospitalcode) |
| | | { |
| | | this.hospitalcode = hospitalcode; |
| | | } |
| | | |
| | | public String getHospitalcode() |
| | | { |
| | | return hospitalcode; |
| | | } |
| | | public void setIcd10code(String icd10code) |
| | | { |
| | | this.icd10code = icd10code; |
| | | } |
| | | |
| | | public String getIcd10code() |
| | | { |
| | | return icd10code; |
| | | } |
| | | public void setDiagname(String diagname) |
| | | { |
| | | this.diagname = diagname; |
| | | } |
| | | |
| | | public String getDiagname() |
| | | { |
| | | return diagname; |
| | | } |
| | | public void setDeptcode(String deptcode) |
| | | { |
| | | this.deptcode = deptcode; |
| | | } |
| | | |
| | | public String getDeptcode() |
| | | { |
| | | return deptcode; |
| | | } |
| | | public void setDeptname(String deptname) |
| | | { |
| | | this.deptname = deptname; |
| | | } |
| | | |
| | | public String getDeptname() |
| | | { |
| | | return deptname; |
| | | } |
| | | public void setDrcode(String drcode) |
| | | { |
| | | this.drcode = drcode; |
| | | } |
| | | |
| | | public String getDrcode() |
| | | { |
| | | return drcode; |
| | | } |
| | | public void setDrname(String drname) |
| | | { |
| | | this.drname = drname; |
| | | } |
| | | |
| | | public String getDrname() |
| | | { |
| | | return drname; |
| | | } |
| | | public void setAdmitdate(Date admitdate) |
| | | { |
| | | this.admitdate = admitdate; |
| | | } |
| | | |
| | | public Date getAdmitdate() |
| | | { |
| | | return admitdate; |
| | | } |
| | | 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 setSchemestatus(Long schemestatus) |
| | | { |
| | | this.schemestatus = schemestatus; |
| | | } |
| | | |
| | | public Long getSchemestatus() |
| | | { |
| | | return schemestatus; |
| | | } |
| | | public void setDeptid(Long deptid) |
| | | { |
| | | this.deptid = deptid; |
| | | } |
| | | |
| | | public Long getDeptid() |
| | | { |
| | | return deptid; |
| | | } |
| | | public void setSchemetime(Date schemetime) |
| | | { |
| | | this.schemetime = schemetime; |
| | | } |
| | | |
| | | public Date getSchemetime() |
| | | { |
| | | return schemetime; |
| | | } |
| | | public void setHpi(String hpi) |
| | | { |
| | | this.hpi = hpi; |
| | | } |
| | | |
| | | public String getHpi() |
| | | { |
| | | return hpi; |
| | | } |
| | | public void setMainsuit(String mainsuit) |
| | | { |
| | | this.mainsuit = mainsuit; |
| | | } |
| | | |
| | | public String getMainsuit() |
| | | { |
| | | return mainsuit; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("serialnum", getSerialnum()) |
| | | .append("patid", getPatid()) |
| | | .append("hospitalname", getHospitalname()) |
| | | .append("hospitalcode", getHospitalcode()) |
| | | .append("icd10code", getIcd10code()) |
| | | .append("diagname", getDiagname()) |
| | | .append("deptcode", getDeptcode()) |
| | | .append("deptname", getDeptname()) |
| | | .append("drcode", getDrcode()) |
| | | .append("drname", getDrname()) |
| | | .append("admitdate", getAdmitdate()) |
| | | .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("schemestatus", getSchemestatus()) |
| | | .append("deptid", getDeptid()) |
| | | .append("schemetime", getSchemetime()) |
| | | .append("hpi", getHpi()) |
| | | .append("mainsuit", getMainsuit()) |
| | | .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; |
| | | |
| | | /** |
| | | * æ£è
使£è®°å½å¯¹è±¡ pat_med_physical |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class PatMedPhysical extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æµæ°´å· */ |
| | | @Excel(name = " æµæ°´å· ") |
| | | private String serialnum; |
| | | |
| | | /** æ¡£æ¡ID */ |
| | | private Long patid; |
| | | |
| | | /** æ»ç»å»çå·¥å· */ |
| | | private String drcode; |
| | | |
| | | /** æ»ç»å»çåç§° */ |
| | | @Excel(name = " æ»ç»å»çåç§° ") |
| | | private String drname; |
| | | |
| | | /** 使£åä½/å»é¢ç¼å· */ |
| | | private String hospitalcode; |
| | | |
| | | /** 使£åä½/å»é¢ */ |
| | | @Excel(name = " 使£åä½/å»é¢ ") |
| | | private String hospitalname; |
| | | |
| | | /** 使£æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " 使£æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date physicaldate; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | private Date uploadTime; |
| | | |
| | | /** ç§å®¤ä»£ç */ |
| | | private String deptcode; |
| | | |
| | | /** ç§å®¤åç§° */ |
| | | @Excel(name = " ç§å®¤åç§° ") |
| | | private String deptname; |
| | | |
| | | /** 使£é¡¹ç®åç§° */ |
| | | @Excel(name = " 使£é¡¹ç®åç§° ") |
| | | private String projectname; |
| | | |
| | | /** 使£é¡¹ç®ç¼ç */ |
| | | private String projectcode; |
| | | |
| | | /** ç¶æ;0.å·²é¢çº¦ 1.已使£ 2.æ¥åå·²åº */ |
| | | private Long state; |
| | | |
| | | /** æ¯å¦çææ¹æ¡ç¶æ;0æªçæ 1çæä½æ£å 2çæä½æ£å 3.çææ¥åå·²åº 9æ å¹é
æ¹æ¡ */ |
| | | private Long schemestatus; |
| | | |
| | | /** æ¯å¦çæéç¨æ¹æ¡ç¶æ;0æªçæ 1çæ 9æ å¹é
æ¹æ¡ */ |
| | | private Long generalschemestatus; |
| | | |
| | | /** ç§å®¤ID */ |
| | | private Long deptid; |
| | | |
| | | /** 使£å¥é¤ID */ |
| | | private Long projectid; |
| | | |
| | | /** æ¹æ¡ç¶ææä½æ¶é´ */ |
| | | private Date schemetime; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSerialnum(String serialnum) |
| | | { |
| | | this.serialnum = serialnum; |
| | | } |
| | | |
| | | public String getSerialnum() |
| | | { |
| | | return serialnum; |
| | | } |
| | | public void setPatid(Long patid) |
| | | { |
| | | this.patid = patid; |
| | | } |
| | | |
| | | public Long getPatid() |
| | | { |
| | | return patid; |
| | | } |
| | | public void setDrcode(String drcode) |
| | | { |
| | | this.drcode = drcode; |
| | | } |
| | | |
| | | public String getDrcode() |
| | | { |
| | | return drcode; |
| | | } |
| | | public void setDrname(String drname) |
| | | { |
| | | this.drname = drname; |
| | | } |
| | | |
| | | public String getDrname() |
| | | { |
| | | return drname; |
| | | } |
| | | public void setHospitalcode(String hospitalcode) |
| | | { |
| | | this.hospitalcode = hospitalcode; |
| | | } |
| | | |
| | | public String getHospitalcode() |
| | | { |
| | | return hospitalcode; |
| | | } |
| | | public void setHospitalname(String hospitalname) |
| | | { |
| | | this.hospitalname = hospitalname; |
| | | } |
| | | |
| | | public String getHospitalname() |
| | | { |
| | | return hospitalname; |
| | | } |
| | | public void setPhysicaldate(Date physicaldate) |
| | | { |
| | | this.physicaldate = physicaldate; |
| | | } |
| | | |
| | | public Date getPhysicaldate() |
| | | { |
| | | return physicaldate; |
| | | } |
| | | 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 setDeptcode(String deptcode) |
| | | { |
| | | this.deptcode = deptcode; |
| | | } |
| | | |
| | | public String getDeptcode() |
| | | { |
| | | return deptcode; |
| | | } |
| | | public void setDeptname(String deptname) |
| | | { |
| | | this.deptname = deptname; |
| | | } |
| | | |
| | | public String getDeptname() |
| | | { |
| | | return deptname; |
| | | } |
| | | public void setProjectname(String projectname) |
| | | { |
| | | this.projectname = projectname; |
| | | } |
| | | |
| | | public String getProjectname() |
| | | { |
| | | return projectname; |
| | | } |
| | | public void setProjectcode(String projectcode) |
| | | { |
| | | this.projectcode = projectcode; |
| | | } |
| | | |
| | | public String getProjectcode() |
| | | { |
| | | return projectcode; |
| | | } |
| | | public void setState(Long state) |
| | | { |
| | | this.state = state; |
| | | } |
| | | |
| | | public Long getState() |
| | | { |
| | | return state; |
| | | } |
| | | public void setSchemestatus(Long schemestatus) |
| | | { |
| | | this.schemestatus = schemestatus; |
| | | } |
| | | |
| | | public Long getSchemestatus() |
| | | { |
| | | return schemestatus; |
| | | } |
| | | public void setGeneralschemestatus(Long generalschemestatus) |
| | | { |
| | | this.generalschemestatus = generalschemestatus; |
| | | } |
| | | |
| | | public Long getGeneralschemestatus() |
| | | { |
| | | return generalschemestatus; |
| | | } |
| | | public void setDeptid(Long deptid) |
| | | { |
| | | this.deptid = deptid; |
| | | } |
| | | |
| | | public Long getDeptid() |
| | | { |
| | | return deptid; |
| | | } |
| | | public void setProjectid(Long projectid) |
| | | { |
| | | this.projectid = projectid; |
| | | } |
| | | |
| | | public Long getProjectid() |
| | | { |
| | | return projectid; |
| | | } |
| | | public void setSchemetime(Date schemetime) |
| | | { |
| | | this.schemetime = schemetime; |
| | | } |
| | | |
| | | public Date getSchemetime() |
| | | { |
| | | return schemetime; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("serialnum", getSerialnum()) |
| | | .append("patid", getPatid()) |
| | | .append("drcode", getDrcode()) |
| | | .append("drname", getDrname()) |
| | | .append("hospitalcode", getHospitalcode()) |
| | | .append("hospitalname", getHospitalname()) |
| | | .append("physicaldate", getPhysicaldate()) |
| | | .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("deptcode", getDeptcode()) |
| | | .append("deptname", getDeptname()) |
| | | .append("projectname", getProjectname()) |
| | | .append("projectcode", getProjectcode()) |
| | | .append("state", getState()) |
| | | .append("schemestatus", getSchemestatus()) |
| | | .append("generalschemestatus", getGeneralschemestatus()) |
| | | .append("deptid", getDeptid()) |
| | | .append("projectid", getProjectid()) |
| | | .append("schemetime", getSchemetime()) |
| | | .toString(); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.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; |
| | | |
| | | /** |
| | | * æ¹æ¡ç»æ¡è§å对象 scheme_autofinshrule |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeAutofinshrule extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æ¹æ¡ID */ |
| | | @Excel(name = " æ¹æ¡ID ") |
| | | private Long schemeid; |
| | | |
| | | /** è§åç±»å;1.ææä»»å¡å®æèªå¨ç»æ¡ 2.æ£è
ç¶æ 3.äºæ¥ç®¡çæ¹æ¡ */ |
| | | @Excel(name = " è§åç±»å;1.ææä»»å¡å®æèªå¨ç»æ¡ 2.æ£è
ç¶æ 3.äºæ¥ç®¡çæ¹æ¡ ") |
| | | private Long ruletype; |
| | | |
| | | /** è§åç¸å
³å¼;Type 为2æ¶ 1.å¨é¢ 2.ç¦»é¢ 3.æ»äº¡ Type为3æ¶å¯¹åºæ¹æ¡ID å¤ééå·éå¼ */ |
| | | @Excel(name = " è§åç¸å
³å¼;Type 为2æ¶ 1.å¨é¢ 2.ç¦»é¢ 3.æ»äº¡ Type为3æ¶å¯¹åºæ¹æ¡ID å¤ééå·éå¼ ") |
| | | private String rulevalue; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | private Date uploadTime; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSchemeid(Long schemeid) |
| | | { |
| | | this.schemeid = schemeid; |
| | | } |
| | | |
| | | public Long getSchemeid() |
| | | { |
| | | return schemeid; |
| | | } |
| | | public void setRuletype(Long ruletype) |
| | | { |
| | | this.ruletype = ruletype; |
| | | } |
| | | |
| | | public Long getRuletype() |
| | | { |
| | | return ruletype; |
| | | } |
| | | public void setRulevalue(String rulevalue) |
| | | { |
| | | this.rulevalue = rulevalue; |
| | | } |
| | | |
| | | public String getRulevalue() |
| | | { |
| | | return rulevalue; |
| | | } |
| | | 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("id", getId()) |
| | | .append("schemeid", getSchemeid()) |
| | | .append("ruletype", getRuletype()) |
| | | .append("rulevalue", getRulevalue()) |
| | | .append("orgid", getOrgid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * æ¹æ¡å类对象 scheme_category |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeCategory extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** åç±»åç§° */ |
| | | @Excel(name = " åç±»åç§° ") |
| | | private String categoryname; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** æ¯å¦éç¨ 0.å¦ 1.æ¯ */ |
| | | @Excel(name = " æ¯å¦éç¨ 0.å¦ 1.æ¯ ") |
| | | private Long iscurrency; |
| | | |
| | | /** å 餿 è®° */ |
| | | private String delFlag; |
| | | |
| | | /** ä¸ä¼ æ è®° */ |
| | | private Long isupload; |
| | | |
| | | /** ä¸ä¼ æ¶é´ */ |
| | | private Date uploadTime; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | 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 setIscurrency(Long iscurrency) |
| | | { |
| | | this.iscurrency = iscurrency; |
| | | } |
| | | |
| | | public Long getIscurrency() |
| | | { |
| | | return iscurrency; |
| | | } |
| | | 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("id", getId()) |
| | | .append("categoryname", getCategoryname()) |
| | | .append("orgid", getOrgid()) |
| | | .append("iscurrency", getIscurrency()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("isupload", getIsupload()) |
| | | .append("uploadTime", getUploadTime()) |
| | | .toString(); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.domain; |
| | | |
| | | import java.math.BigDecimal; |
| | | 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; |
| | | |
| | | /** |
| | | * æå¡æ¹æ¡åºå¯¹è±¡ scheme_locallibrary |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeLocallibrary extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æ¹æ¡åç±»ID */ |
| | | @Excel(name = " æ¹æ¡åç±»ID ") |
| | | private Long schemecategoryid; |
| | | |
| | | /** æ¹æ¡åç§° */ |
| | | @Excel(name = " æ¹æ¡åç§° ") |
| | | private String schemename; |
| | | |
| | | /** æ¹æ¡æè¿° */ |
| | | @Excel(name = " æ¹æ¡æè¿° ") |
| | | private String description; |
| | | |
| | | /** 模æ¿ID */ |
| | | @Excel(name = " 模æ¿ID ") |
| | | private Long templateid; |
| | | |
| | | /** çæ¬ */ |
| | | @Excel(name = " çæ¬ ") |
| | | private BigDecimal version; |
| | | |
| | | /** æ¹æ¡ä»£ç */ |
| | | @Excel(name = " æ¹æ¡ä»£ç ") |
| | | private String schemecode; |
| | | |
| | | /** ä¸å¿åºID */ |
| | | @Excel(name = " ä¸å¿åºID ") |
| | | private Long centerlibraryid; |
| | | |
| | | /** æ£è
æ¥æº;1.åºé¢ 2.å¨é¢ 3.é¨è¯ 4.使£ 5.æ */ |
| | | @Excel(name = " æ£è
æ¥æº;1.åºé¢ 2.å¨é¢ 3.é¨è¯ 4.使£ 5.æ ") |
| | | private Long patientsource; |
| | | |
| | | /** æå±ç§å®¤ID;å¤ä¸ªç§å®¤éå·éå¼ */ |
| | | @Excel(name = " æå±ç§å®¤ID;å¤ä¸ªç§å®¤éå·éå¼ ") |
| | | private String belongdeptid; |
| | | |
| | | /** ç§å®¤è§å;0.ä¸å
å« 1.å
å« */ |
| | | @Excel(name = " ç§å®¤è§å;0.ä¸å
å« 1.å
å« ") |
| | | private Long ruledept; |
| | | |
| | | /** æå±ç
åºID;å¤ä¸ªç
åºéå·éå¼ */ |
| | | @Excel(name = " æå±ç
åºID;å¤ä¸ªç
åºéå·éå¼ ") |
| | | private String belongwardid; |
| | | |
| | | /** ç
åºè§å;0.ä¸å
å« 1.å
å« */ |
| | | @Excel(name = " ç
åºè§å;0.ä¸å
å« 1.å
å« ") |
| | | private Long ruleward; |
| | | |
| | | /** éå¤å¤ç;1.æ°è®¡åèªå¨ç»æ¡ 2.å计åèªå¨ç»æ¡ */ |
| | | @Excel(name = " éå¤å¤ç;1.æ°è®¡åèªå¨ç»æ¡ 2.å计åèªå¨ç»æ¡ ") |
| | | private Long repeathandle; |
| | | |
| | | /** è¿æå¤ç;1.èªå¨å
³é 2.èªå¨æ§è¡ 3.人工å¤ç */ |
| | | @Excel(name = " è¿æå¤ç;1.èªå¨å
³é 2.èªå¨æ§è¡ 3.人工å¤ç ") |
| | | private Long expirehandle; |
| | | |
| | | /** èªå¨ç»æ¡;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " èªå¨ç»æ¡;0.å¦ 1.æ¯ ") |
| | | private Long autofinsh; |
| | | |
| | | /** åºçº¿æ¶é´;1.å å
¥å 2.åºé¢å 3.å°±è¯å 4.å
¥é¢å 5.ææ¯å 6.ææ¯å 7.å¼è¯å 8.æ£éªç³è¯·å 9.æ£éªå®æå 10.æ£æ¥ç³è¯·å 11.æ£æ¥å®æå 12.äºä»¶åçå 13.åºçº¿æ¥æå */ |
| | | @Excel(name = " åºçº¿æ¶é´;1.å å
¥å 2.åºé¢å 3.å°±è¯å 4.å
¥é¢å 5.ææ¯å 6.ææ¯å 7.å¼è¯å 8.æ£éªç³è¯·å 9.æ£éªå®æå 10.æ£æ¥ç³è¯·å 11.æ£æ¥å®æå 12.äºä»¶åçå 13.åºçº¿æ¥æå ") |
| | | private Long baselinetime; |
| | | |
| | | /** è§¦åæ¡ä»¶;0.æ 1.æ */ |
| | | @Excel(name = " è§¦åæ¡ä»¶;0.æ 1.æ ") |
| | | private Long triggerornot; |
| | | |
| | | /** æ¯å¦å¯ç¨ */ |
| | | @Excel(name = " æ¯å¦å¯ç¨ ") |
| | | private Long isenable; |
| | | |
| | | /** æºæ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; |
| | | |
| | | /** ç¶æ;0æªå¼å¯ï¼1å·²å¼å¯ï¼2å
³é */ |
| | | @Excel(name = " ç¶æ;0æªå¼å¯ï¼1å·²å¼å¯ï¼2å
³é ") |
| | | private Long state; |
| | | |
| | | /** å¼å¯äºº */ |
| | | @Excel(name = " å¼å¯äºº ") |
| | | private String openBy; |
| | | |
| | | /** å¼å¯æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " å¼å¯æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date openTime; |
| | | |
| | | /** ä¸å¿åºä»£ç */ |
| | | @Excel(name = " ä¸å¿åºä»£ç ") |
| | | private String centerlibrarycode; |
| | | |
| | | /** æ¯å¦æ¬å° */ |
| | | @Excel(name = " æ¯å¦æ¬å° ") |
| | | private Long islocal; |
| | | |
| | | /** æ¯å¦éç¨;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " æ¯å¦éç¨;0.å¦ 1.æ¯ ") |
| | | private Long iscurrency; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSchemecategoryid(Long schemecategoryid) |
| | | { |
| | | this.schemecategoryid = schemecategoryid; |
| | | } |
| | | |
| | | public Long getSchemecategoryid() |
| | | { |
| | | return schemecategoryid; |
| | | } |
| | | public void setSchemename(String schemename) |
| | | { |
| | | this.schemename = schemename; |
| | | } |
| | | |
| | | public String getSchemename() |
| | | { |
| | | return schemename; |
| | | } |
| | | public void setDescription(String description) |
| | | { |
| | | this.description = description; |
| | | } |
| | | |
| | | public String getDescription() |
| | | { |
| | | return description; |
| | | } |
| | | public void setTemplateid(Long templateid) |
| | | { |
| | | this.templateid = templateid; |
| | | } |
| | | |
| | | public Long getTemplateid() |
| | | { |
| | | return templateid; |
| | | } |
| | | public void setVersion(BigDecimal version) |
| | | { |
| | | this.version = version; |
| | | } |
| | | |
| | | public BigDecimal getVersion() |
| | | { |
| | | return version; |
| | | } |
| | | public void setSchemecode(String schemecode) |
| | | { |
| | | this.schemecode = schemecode; |
| | | } |
| | | |
| | | public String getSchemecode() |
| | | { |
| | | return schemecode; |
| | | } |
| | | public void setCenterlibraryid(Long centerlibraryid) |
| | | { |
| | | this.centerlibraryid = centerlibraryid; |
| | | } |
| | | |
| | | public Long getCenterlibraryid() |
| | | { |
| | | return centerlibraryid; |
| | | } |
| | | public void setPatientsource(Long patientsource) |
| | | { |
| | | this.patientsource = patientsource; |
| | | } |
| | | |
| | | public Long getPatientsource() |
| | | { |
| | | return patientsource; |
| | | } |
| | | public void setBelongdeptid(String belongdeptid) |
| | | { |
| | | this.belongdeptid = belongdeptid; |
| | | } |
| | | |
| | | public String getBelongdeptid() |
| | | { |
| | | return belongdeptid; |
| | | } |
| | | public void setRuledept(Long ruledept) |
| | | { |
| | | this.ruledept = ruledept; |
| | | } |
| | | |
| | | public Long getRuledept() |
| | | { |
| | | return ruledept; |
| | | } |
| | | public void setBelongwardid(String belongwardid) |
| | | { |
| | | this.belongwardid = belongwardid; |
| | | } |
| | | |
| | | public String getBelongwardid() |
| | | { |
| | | return belongwardid; |
| | | } |
| | | public void setRuleward(Long ruleward) |
| | | { |
| | | this.ruleward = ruleward; |
| | | } |
| | | |
| | | public Long getRuleward() |
| | | { |
| | | return ruleward; |
| | | } |
| | | public void setRepeathandle(Long repeathandle) |
| | | { |
| | | this.repeathandle = repeathandle; |
| | | } |
| | | |
| | | public Long getRepeathandle() |
| | | { |
| | | return repeathandle; |
| | | } |
| | | public void setExpirehandle(Long expirehandle) |
| | | { |
| | | this.expirehandle = expirehandle; |
| | | } |
| | | |
| | | public Long getExpirehandle() |
| | | { |
| | | return expirehandle; |
| | | } |
| | | public void setAutofinsh(Long autofinsh) |
| | | { |
| | | this.autofinsh = autofinsh; |
| | | } |
| | | |
| | | public Long getAutofinsh() |
| | | { |
| | | return autofinsh; |
| | | } |
| | | public void setBaselinetime(Long baselinetime) |
| | | { |
| | | this.baselinetime = baselinetime; |
| | | } |
| | | |
| | | public Long getBaselinetime() |
| | | { |
| | | return baselinetime; |
| | | } |
| | | public void setTriggerornot(Long triggerornot) |
| | | { |
| | | this.triggerornot = triggerornot; |
| | | } |
| | | |
| | | public Long getTriggerornot() |
| | | { |
| | | return triggerornot; |
| | | } |
| | | public void setIsenable(Long isenable) |
| | | { |
| | | this.isenable = isenable; |
| | | } |
| | | |
| | | public Long getIsenable() |
| | | { |
| | | return isenable; |
| | | } |
| | | 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 setState(Long state) |
| | | { |
| | | this.state = state; |
| | | } |
| | | |
| | | public Long getState() |
| | | { |
| | | return state; |
| | | } |
| | | public void setOpenBy(String openBy) |
| | | { |
| | | this.openBy = openBy; |
| | | } |
| | | |
| | | public String getOpenBy() |
| | | { |
| | | return openBy; |
| | | } |
| | | public void setOpenTime(Date openTime) |
| | | { |
| | | this.openTime = openTime; |
| | | } |
| | | |
| | | public Date getOpenTime() |
| | | { |
| | | return openTime; |
| | | } |
| | | public void setCenterlibrarycode(String centerlibrarycode) |
| | | { |
| | | this.centerlibrarycode = centerlibrarycode; |
| | | } |
| | | |
| | | public String getCenterlibrarycode() |
| | | { |
| | | return centerlibrarycode; |
| | | } |
| | | public void setIslocal(Long islocal) |
| | | { |
| | | this.islocal = islocal; |
| | | } |
| | | |
| | | public Long getIslocal() |
| | | { |
| | | return islocal; |
| | | } |
| | | public void setIscurrency(Long iscurrency) |
| | | { |
| | | this.iscurrency = iscurrency; |
| | | } |
| | | |
| | | public Long getIscurrency() |
| | | { |
| | | return iscurrency; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("schemecategoryid", getSchemecategoryid()) |
| | | .append("schemename", getSchemename()) |
| | | .append("description", getDescription()) |
| | | .append("templateid", getTemplateid()) |
| | | .append("version", getVersion()) |
| | | .append("schemecode", getSchemecode()) |
| | | .append("centerlibraryid", getCenterlibraryid()) |
| | | .append("patientsource", getPatientsource()) |
| | | .append("belongdeptid", getBelongdeptid()) |
| | | .append("ruledept", getRuledept()) |
| | | .append("belongwardid", getBelongwardid()) |
| | | .append("ruleward", getRuleward()) |
| | | .append("repeathandle", getRepeathandle()) |
| | | .append("expirehandle", getExpirehandle()) |
| | | .append("autofinsh", getAutofinsh()) |
| | | .append("baselinetime", getBaselinetime()) |
| | | .append("triggerornot", getTriggerornot()) |
| | | .append("isenable", getIsenable()) |
| | | .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("state", getState()) |
| | | .append("openBy", getOpenBy()) |
| | | .append("openTime", getOpenTime()) |
| | | .append("centerlibrarycode", getCenterlibrarycode()) |
| | | .append("islocal", getIslocal()) |
| | | .append("iscurrency", getIscurrency()) |
| | | .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; |
| | | |
| | | /** |
| | | * 管ç计å对象 scheme_plan |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemePlan extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æ¹æ¡ID */ |
| | | @Excel(name = " æ¹æ¡ID ") |
| | | private Long schemeid; |
| | | |
| | | /** æ¹æ¡ä»£ç */ |
| | | @Excel(name = " æ¹æ¡ä»£ç ") |
| | | private String schemecode; |
| | | |
| | | /** æ£è
ID */ |
| | | @Excel(name = " æ£è
ID ") |
| | | private Long patientid; |
| | | |
| | | /** 对åºè®°å½æµæ°´å· */ |
| | | @Excel(name = " 对åºè®°å½æµæ°´å· ") |
| | | private String serialnum; |
| | | |
| | | /** å°±è¯ID */ |
| | | @Excel(name = " å°±è¯ID ") |
| | | private Long visitid; |
| | | |
| | | /** å°±è¯ç±»å */ |
| | | @Excel(name = " å°±è¯ç±»å ") |
| | | private Long visittype; |
| | | |
| | | /** ç¶æ;0.å¾
å¼å§ 1.è¿è¡ä¸ 9.å·²ç»æ¡ */ |
| | | @Excel(name = " ç¶æ;0.å¾
å¼å§ 1.è¿è¡ä¸ 9.å·²ç»æ¡ ") |
| | | private Long state; |
| | | |
| | | /** ç»æ¡æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ç»æ¡æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date finshtime; |
| | | |
| | | /** æ¥æºç±»å;1.èªå¨çæ 2.æå¨å¹é
3.æå¨æ·»å 3.æ¹é导å
¥ */ |
| | | @Excel(name = " æ¥æºç±»å;1.èªå¨çæ 2.æå¨å¹é
3.æå¨æ·»å 3.æ¹é导å
¥ ") |
| | | private Long sourcetype; |
| | | |
| | | /** æ£è
æ¥æº;0.å
¨é¢(éç¨) 1.åºé¢ 2.å¨é¢ 3.é¨è¯ 4.使£ 5.æ */ |
| | | @Excel(name = " æ£è
æ¥æº;0.å
¨é¢(éç¨) 1.åºé¢ 2.å¨é¢ 3.é¨è¯ 4.使£ 5.æ ") |
| | | private Long patientsource; |
| | | |
| | | /** ç»æ¡ç±»å */ |
| | | @Excel(name = " ç»æ¡ç±»å ") |
| | | private Long finshtype; |
| | | |
| | | /** ç»æ¡è¯´æ */ |
| | | @Excel(name = " ç»æ¡è¯´æ ") |
| | | private String finshdesc; |
| | | |
| | | /** åºçº¿æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " åºçº¿æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date basetime; |
| | | |
| | | /** æºæID */ |
| | | @Excel(name = " æºæID ") |
| | | private String orgid; |
| | | |
| | | /** å
³è表ID */ |
| | | @Excel(name = " å
³è表ID ") |
| | | private Long relationid; |
| | | |
| | | /** å 餿 è®° */ |
| | | 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 setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSchemeid(Long schemeid) |
| | | { |
| | | this.schemeid = schemeid; |
| | | } |
| | | |
| | | public Long getSchemeid() |
| | | { |
| | | return schemeid; |
| | | } |
| | | public void setSchemecode(String schemecode) |
| | | { |
| | | this.schemecode = schemecode; |
| | | } |
| | | |
| | | public String getSchemecode() |
| | | { |
| | | return schemecode; |
| | | } |
| | | public void setPatientid(Long patientid) |
| | | { |
| | | this.patientid = patientid; |
| | | } |
| | | |
| | | public Long getPatientid() |
| | | { |
| | | return patientid; |
| | | } |
| | | public void setSerialnum(String serialnum) |
| | | { |
| | | this.serialnum = serialnum; |
| | | } |
| | | |
| | | public String getSerialnum() |
| | | { |
| | | return serialnum; |
| | | } |
| | | public void setVisitid(Long visitid) |
| | | { |
| | | this.visitid = visitid; |
| | | } |
| | | |
| | | public Long getVisitid() |
| | | { |
| | | return visitid; |
| | | } |
| | | public void setVisittype(Long visittype) |
| | | { |
| | | this.visittype = visittype; |
| | | } |
| | | |
| | | public Long getVisittype() |
| | | { |
| | | return visittype; |
| | | } |
| | | public void setState(Long state) |
| | | { |
| | | this.state = state; |
| | | } |
| | | |
| | | public Long getState() |
| | | { |
| | | return state; |
| | | } |
| | | public void setFinshtime(Date finshtime) |
| | | { |
| | | this.finshtime = finshtime; |
| | | } |
| | | |
| | | public Date getFinshtime() |
| | | { |
| | | return finshtime; |
| | | } |
| | | public void setSourcetype(Long sourcetype) |
| | | { |
| | | this.sourcetype = sourcetype; |
| | | } |
| | | |
| | | public Long getSourcetype() |
| | | { |
| | | return sourcetype; |
| | | } |
| | | public void setPatientsource(Long patientsource) |
| | | { |
| | | this.patientsource = patientsource; |
| | | } |
| | | |
| | | public Long getPatientsource() |
| | | { |
| | | return patientsource; |
| | | } |
| | | public void setFinshtype(Long finshtype) |
| | | { |
| | | this.finshtype = finshtype; |
| | | } |
| | | |
| | | public Long getFinshtype() |
| | | { |
| | | return finshtype; |
| | | } |
| | | public void setFinshdesc(String finshdesc) |
| | | { |
| | | this.finshdesc = finshdesc; |
| | | } |
| | | |
| | | public String getFinshdesc() |
| | | { |
| | | return finshdesc; |
| | | } |
| | | public void setBasetime(Date basetime) |
| | | { |
| | | this.basetime = basetime; |
| | | } |
| | | |
| | | public Date getBasetime() |
| | | { |
| | | return basetime; |
| | | } |
| | | public void setOrgid(String orgid) |
| | | { |
| | | this.orgid = orgid; |
| | | } |
| | | |
| | | public String getOrgid() |
| | | { |
| | | return orgid; |
| | | } |
| | | public void setRelationid(Long relationid) |
| | | { |
| | | this.relationid = relationid; |
| | | } |
| | | |
| | | public Long getRelationid() |
| | | { |
| | | return relationid; |
| | | } |
| | | 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("id", getId()) |
| | | .append("schemeid", getSchemeid()) |
| | | .append("schemecode", getSchemecode()) |
| | | .append("patientid", getPatientid()) |
| | | .append("serialnum", getSerialnum()) |
| | | .append("visitid", getVisitid()) |
| | | .append("visittype", getVisittype()) |
| | | .append("state", getState()) |
| | | .append("finshtime", getFinshtime()) |
| | | .append("sourcetype", getSourcetype()) |
| | | .append("patientsource", getPatientsource()) |
| | | .append("finshtype", getFinshtype()) |
| | | .append("finshdesc", getFinshdesc()) |
| | | .append("basetime", getBasetime()) |
| | | .append("orgid", getOrgid()) |
| | | .append("relationid", getRelationid()) |
| | | .append("delFlag", getDelFlag()) |
| | | .append("createBy", getCreateBy()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("updateBy", getUpdateBy()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .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; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡å¯¹è±¡ scheme_task |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeTask extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æ¹æ¡ID */ |
| | | @Excel(name = " æ¹æ¡ID ") |
| | | private Long schemeid; |
| | | |
| | | /** 计åID */ |
| | | @Excel(name = " 计åID ") |
| | | private Long schemeplanid; |
| | | |
| | | /** æ£è
ID */ |
| | | @Excel(name = " æ£è
ID ") |
| | | private Long patientid; |
| | | |
| | | /** ç¶æ;0.å¾
å¼å§ 1.è¿è¡ä¸ 2.已宿 3.失访 9.å·²å
³é */ |
| | | @Excel(name = " ç¶æ;0.å¾
å¼å§ 1.è¿è¡ä¸ 2.已宿 3.失访 9.å·²å
³é ") |
| | | private Long state; |
| | | |
| | | /** åºçº¿æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " åºçº¿æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date baselinetime; |
| | | |
| | | /** è®¡åæ§è¡æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " è®¡åæ§è¡æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date plantime; |
| | | |
| | | /** å®é
宿æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " å®é
宿æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date actualtime; |
| | | |
| | | /** 龿æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " 龿æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date overtime; |
| | | |
| | | /** æºæ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; |
| | | |
| | | /** æ£è
æ¥æº;0.å
¨é¢(éç¨) 1.åºé¢ 2.å¨é¢ 3.é¨è¯ 4.使£ 5.æ */ |
| | | @Excel(name = " æ£è
æ¥æº;0.å
¨é¢(éç¨) 1.åºé¢ 2.å¨é¢ 3.é¨è¯ 4.使£ 5.æ ") |
| | | private Long patientsource; |
| | | |
| | | /** é
ç½®ID */ |
| | | @Excel(name = " é
ç½®ID ") |
| | | private String taskconfigid; |
| | | |
| | | /** å
³èç¼å· ç§å®¤&项ç®&é®å·&宣æ */ |
| | | @Excel(name = " å
³èç¼å· ç§å®¤&项ç®&é®å·&宣æ ") |
| | | private Long relationid; |
| | | |
| | | /** å
³èåç§° */ |
| | | @Excel(name = " å
³èåç§° ") |
| | | private String relationname; |
| | | |
| | | /** ä»ç»&æéå
容 */ |
| | | @Excel(name = " ä»ç»&æéå
容 ") |
| | | private String content; |
| | | |
| | | /** æç¤ºå
容 */ |
| | | @Excel(name = " æç¤ºå
容 ") |
| | | private String tipscontent; |
| | | |
| | | /** ä»»å¡ç±»å */ |
| | | @Excel(name = " ä»»å¡ç±»å ") |
| | | private Long tasktype; |
| | | |
| | | /** å
³éæ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " å
³éæ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date finshtime; |
| | | |
| | | /** å
³éç±»å;0.èªå¨å
³é 1.ä»»å¡éå¤ 2.æ£è
æ»äº¡ 3.æ£è
æç»ç®¡ç 4.æ£è
é
å度ä¸å¤ 5.æ£è
ä½é¢ 6.å
¶ä» */ |
| | | @Excel(name = " å
³éç±»å;0.èªå¨å
³é 1.ä»»å¡éå¤ 2.æ£è
æ»äº¡ 3.æ£è
æç»ç®¡ç 4.æ£è
é
å度ä¸å¤ 5.æ£è
ä½é¢ 6.å
¶ä» ") |
| | | private Long finshtype; |
| | | |
| | | /** å
³é说æ */ |
| | | @Excel(name = " å
³é说æ ") |
| | | private String finshdesc; |
| | | |
| | | /** æææ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " æææ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date termvaliditytime; |
| | | |
| | | /** æ¯å¦çææ¹æ¡;0æªçæ 1çæ 9æ å¹é
æ¹æ¡ */ |
| | | @Excel(name = " æ¯å¦çææ¹æ¡;0æªçæ 1çæ 9æ å¹é
æ¹æ¡ ") |
| | | private Long schemestatus; |
| | | |
| | | /** å°±è¯ID */ |
| | | @Excel(name = " å°±è¯ID ") |
| | | private Long visitid; |
| | | |
| | | /** å°±è¯ç±»å */ |
| | | @Excel(name = " å°±è¯ç±»å ") |
| | | private Long visittype; |
| | | |
| | | /** 任塿¥æº;0.èªå¨å建 1.æå¨å建 */ |
| | | @Excel(name = " 任塿¥æº;0.èªå¨å建 1.æå¨å建 ") |
| | | private Long tasksource; |
| | | |
| | | /** å
³è项ç®ç±»å;1.æ£æ¥ 2.æ£éª */ |
| | | @Excel(name = " å
³è项ç®ç±»å;1.æ£æ¥ 2.æ£éª ") |
| | | private Long relationtype; |
| | | |
| | | /** æ¯å¦äººå·¥å¤ç;1æ¯ 0å¦ */ |
| | | @Excel(name = " æ¯å¦äººå·¥å¤ç;1æ¯ 0å¦ ") |
| | | private Long isartificial; |
| | | |
| | | /** å°é¾ææ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " å°é¾ææ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date overduetipstime; |
| | | |
| | | /** æ¯å¦å¼å¸¸è·è¿ä»»å¡;1æ¯ 0å¦ */ |
| | | @Excel(name = " æ¯å¦å¼å¸¸è·è¿ä»»å¡;1æ¯ 0å¦ ") |
| | | private Long isabnormal; |
| | | |
| | | /** å·²ç»äººå·¥å¤çæ å¿;1å·²ç»äººå·¥å¤çè¿ 0è¿æªè¿è¡äººå·¥å¤ç */ |
| | | @Excel(name = " å·²ç»äººå·¥å¤çæ å¿;1å·²ç»äººå·¥å¤çè¿ 0è¿æªè¿è¡äººå·¥å¤ç ") |
| | | private Long artificialtag; |
| | | |
| | | /** å
³è代ç é®å·&宣æ */ |
| | | @Excel(name = " å
³è代ç é®å·&宣æ ") |
| | | private String relationcode; |
| | | |
| | | /** æ¹æ¡ä»£ç */ |
| | | @Excel(name = " æ¹æ¡ä»£ç ") |
| | | private String schemecode; |
| | | |
| | | /** æå䏿¬¡è®¡åæ§è¡æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " æå䏿¬¡è®¡åæ§è¡æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date lastplantime; |
| | | |
| | | /** æ¯å¦ä¸ºæµè¯ä»»å¡;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " æ¯å¦ä¸ºæµè¯ä»»å¡;0.å¦ 1.æ¯ ") |
| | | private Long istest; |
| | | |
| | | /** ç¬¬ä¸æ¬¡è®¡åæ§è¡æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " ç¬¬ä¸æ¬¡è®¡åæ§è¡æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date firstplantime; |
| | | |
| | | /** é忬¡æ°;Null表示æ ééå 0表示éè¦éå æ°å表示已ç»éåäºå 次 */ |
| | | @Excel(name = " é忬¡æ°;Null表示æ ééå 0表示éè¦éå æ°å表示已ç»éåäºå 次 ") |
| | | private Long repeatsecond; |
| | | |
| | | /** æ¯å¦åå¨éåæ è®° */ |
| | | @Excel(name = " æ¯å¦åå¨éåæ è®° ") |
| | | private Long isrepeat; |
| | | |
| | | /** æå¨æ§è¡æ è®° */ |
| | | @Excel(name = " æå¨æ§è¡æ è®° ") |
| | | private Long ismanual; |
| | | |
| | | /** 失访æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " 失访æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date losstime; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private String relationlistid; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSchemeid(Long schemeid) |
| | | { |
| | | this.schemeid = schemeid; |
| | | } |
| | | |
| | | public Long getSchemeid() |
| | | { |
| | | return schemeid; |
| | | } |
| | | public void setSchemeplanid(Long schemeplanid) |
| | | { |
| | | this.schemeplanid = schemeplanid; |
| | | } |
| | | |
| | | public Long getSchemeplanid() |
| | | { |
| | | return schemeplanid; |
| | | } |
| | | public void setPatientid(Long patientid) |
| | | { |
| | | this.patientid = patientid; |
| | | } |
| | | |
| | | public Long getPatientid() |
| | | { |
| | | return patientid; |
| | | } |
| | | public void setState(Long state) |
| | | { |
| | | this.state = state; |
| | | } |
| | | |
| | | public Long getState() |
| | | { |
| | | return state; |
| | | } |
| | | public void setBaselinetime(Date baselinetime) |
| | | { |
| | | this.baselinetime = baselinetime; |
| | | } |
| | | |
| | | public Date getBaselinetime() |
| | | { |
| | | return baselinetime; |
| | | } |
| | | public void setPlantime(Date plantime) |
| | | { |
| | | this.plantime = plantime; |
| | | } |
| | | |
| | | public Date getPlantime() |
| | | { |
| | | return plantime; |
| | | } |
| | | public void setActualtime(Date actualtime) |
| | | { |
| | | this.actualtime = actualtime; |
| | | } |
| | | |
| | | public Date getActualtime() |
| | | { |
| | | return actualtime; |
| | | } |
| | | public void setOvertime(Date overtime) |
| | | { |
| | | this.overtime = overtime; |
| | | } |
| | | |
| | | public Date getOvertime() |
| | | { |
| | | return overtime; |
| | | } |
| | | 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 setPatientsource(Long patientsource) |
| | | { |
| | | this.patientsource = patientsource; |
| | | } |
| | | |
| | | public Long getPatientsource() |
| | | { |
| | | return patientsource; |
| | | } |
| | | public void setTaskconfigid(String taskconfigid) |
| | | { |
| | | this.taskconfigid = taskconfigid; |
| | | } |
| | | |
| | | public String getTaskconfigid() |
| | | { |
| | | return taskconfigid; |
| | | } |
| | | public void setRelationid(Long relationid) |
| | | { |
| | | this.relationid = relationid; |
| | | } |
| | | |
| | | public Long getRelationid() |
| | | { |
| | | return relationid; |
| | | } |
| | | public void setRelationname(String relationname) |
| | | { |
| | | this.relationname = relationname; |
| | | } |
| | | |
| | | public String getRelationname() |
| | | { |
| | | return relationname; |
| | | } |
| | | public void setContent(String content) |
| | | { |
| | | this.content = content; |
| | | } |
| | | |
| | | public String getContent() |
| | | { |
| | | return content; |
| | | } |
| | | public void setTipscontent(String tipscontent) |
| | | { |
| | | this.tipscontent = tipscontent; |
| | | } |
| | | |
| | | public String getTipscontent() |
| | | { |
| | | return tipscontent; |
| | | } |
| | | public void setTasktype(Long tasktype) |
| | | { |
| | | this.tasktype = tasktype; |
| | | } |
| | | |
| | | public Long getTasktype() |
| | | { |
| | | return tasktype; |
| | | } |
| | | public void setFinshtime(Date finshtime) |
| | | { |
| | | this.finshtime = finshtime; |
| | | } |
| | | |
| | | public Date getFinshtime() |
| | | { |
| | | return finshtime; |
| | | } |
| | | public void setFinshtype(Long finshtype) |
| | | { |
| | | this.finshtype = finshtype; |
| | | } |
| | | |
| | | public Long getFinshtype() |
| | | { |
| | | return finshtype; |
| | | } |
| | | public void setFinshdesc(String finshdesc) |
| | | { |
| | | this.finshdesc = finshdesc; |
| | | } |
| | | |
| | | public String getFinshdesc() |
| | | { |
| | | return finshdesc; |
| | | } |
| | | public void setTermvaliditytime(Date termvaliditytime) |
| | | { |
| | | this.termvaliditytime = termvaliditytime; |
| | | } |
| | | |
| | | public Date getTermvaliditytime() |
| | | { |
| | | return termvaliditytime; |
| | | } |
| | | public void setSchemestatus(Long schemestatus) |
| | | { |
| | | this.schemestatus = schemestatus; |
| | | } |
| | | |
| | | public Long getSchemestatus() |
| | | { |
| | | return schemestatus; |
| | | } |
| | | public void setVisitid(Long visitid) |
| | | { |
| | | this.visitid = visitid; |
| | | } |
| | | |
| | | public Long getVisitid() |
| | | { |
| | | return visitid; |
| | | } |
| | | public void setVisittype(Long visittype) |
| | | { |
| | | this.visittype = visittype; |
| | | } |
| | | |
| | | public Long getVisittype() |
| | | { |
| | | return visittype; |
| | | } |
| | | public void setTasksource(Long tasksource) |
| | | { |
| | | this.tasksource = tasksource; |
| | | } |
| | | |
| | | public Long getTasksource() |
| | | { |
| | | return tasksource; |
| | | } |
| | | public void setRelationtype(Long relationtype) |
| | | { |
| | | this.relationtype = relationtype; |
| | | } |
| | | |
| | | public Long getRelationtype() |
| | | { |
| | | return relationtype; |
| | | } |
| | | public void setIsartificial(Long isartificial) |
| | | { |
| | | this.isartificial = isartificial; |
| | | } |
| | | |
| | | public Long getIsartificial() |
| | | { |
| | | return isartificial; |
| | | } |
| | | public void setOverduetipstime(Date overduetipstime) |
| | | { |
| | | this.overduetipstime = overduetipstime; |
| | | } |
| | | |
| | | public Date getOverduetipstime() |
| | | { |
| | | return overduetipstime; |
| | | } |
| | | public void setIsabnormal(Long isabnormal) |
| | | { |
| | | this.isabnormal = isabnormal; |
| | | } |
| | | |
| | | public Long getIsabnormal() |
| | | { |
| | | return isabnormal; |
| | | } |
| | | public void setArtificialtag(Long artificialtag) |
| | | { |
| | | this.artificialtag = artificialtag; |
| | | } |
| | | |
| | | public Long getArtificialtag() |
| | | { |
| | | return artificialtag; |
| | | } |
| | | public void setRelationcode(String relationcode) |
| | | { |
| | | this.relationcode = relationcode; |
| | | } |
| | | |
| | | public String getRelationcode() |
| | | { |
| | | return relationcode; |
| | | } |
| | | public void setSchemecode(String schemecode) |
| | | { |
| | | this.schemecode = schemecode; |
| | | } |
| | | |
| | | public String getSchemecode() |
| | | { |
| | | return schemecode; |
| | | } |
| | | public void setLastplantime(Date lastplantime) |
| | | { |
| | | this.lastplantime = lastplantime; |
| | | } |
| | | |
| | | public Date getLastplantime() |
| | | { |
| | | return lastplantime; |
| | | } |
| | | public void setIstest(Long istest) |
| | | { |
| | | this.istest = istest; |
| | | } |
| | | |
| | | public Long getIstest() |
| | | { |
| | | return istest; |
| | | } |
| | | public void setFirstplantime(Date firstplantime) |
| | | { |
| | | this.firstplantime = firstplantime; |
| | | } |
| | | |
| | | public Date getFirstplantime() |
| | | { |
| | | return firstplantime; |
| | | } |
| | | public void setRepeatsecond(Long repeatsecond) |
| | | { |
| | | this.repeatsecond = repeatsecond; |
| | | } |
| | | |
| | | public Long getRepeatsecond() |
| | | { |
| | | return repeatsecond; |
| | | } |
| | | public void setIsrepeat(Long isrepeat) |
| | | { |
| | | this.isrepeat = isrepeat; |
| | | } |
| | | |
| | | public Long getIsrepeat() |
| | | { |
| | | return isrepeat; |
| | | } |
| | | public void setIsmanual(Long ismanual) |
| | | { |
| | | this.ismanual = ismanual; |
| | | } |
| | | |
| | | public Long getIsmanual() |
| | | { |
| | | return ismanual; |
| | | } |
| | | public void setLosstime(Date losstime) |
| | | { |
| | | this.losstime = losstime; |
| | | } |
| | | |
| | | public Date getLosstime() |
| | | { |
| | | return losstime; |
| | | } |
| | | public void setRelationlistid(String relationlistid) |
| | | { |
| | | this.relationlistid = relationlistid; |
| | | } |
| | | |
| | | public String getRelationlistid() |
| | | { |
| | | return relationlistid; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("schemeid", getSchemeid()) |
| | | .append("schemeplanid", getSchemeplanid()) |
| | | .append("patientid", getPatientid()) |
| | | .append("state", getState()) |
| | | .append("baselinetime", getBaselinetime()) |
| | | .append("plantime", getPlantime()) |
| | | .append("actualtime", getActualtime()) |
| | | .append("overtime", getOvertime()) |
| | | .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("patientsource", getPatientsource()) |
| | | .append("taskconfigid", getTaskconfigid()) |
| | | .append("relationid", getRelationid()) |
| | | .append("relationname", getRelationname()) |
| | | .append("content", getContent()) |
| | | .append("tipscontent", getTipscontent()) |
| | | .append("tasktype", getTasktype()) |
| | | .append("finshtime", getFinshtime()) |
| | | .append("finshtype", getFinshtype()) |
| | | .append("finshdesc", getFinshdesc()) |
| | | .append("termvaliditytime", getTermvaliditytime()) |
| | | .append("schemestatus", getSchemestatus()) |
| | | .append("visitid", getVisitid()) |
| | | .append("visittype", getVisittype()) |
| | | .append("tasksource", getTasksource()) |
| | | .append("relationtype", getRelationtype()) |
| | | .append("isartificial", getIsartificial()) |
| | | .append("overduetipstime", getOverduetipstime()) |
| | | .append("isabnormal", getIsabnormal()) |
| | | .append("artificialtag", getArtificialtag()) |
| | | .append("relationcode", getRelationcode()) |
| | | .append("schemecode", getSchemecode()) |
| | | .append("lastplantime", getLastplantime()) |
| | | .append("istest", getIstest()) |
| | | .append("firstplantime", getFirstplantime()) |
| | | .append("repeatsecond", getRepeatsecond()) |
| | | .append("isrepeat", getIsrepeat()) |
| | | .append("ismanual", getIsmanual()) |
| | | .append("losstime", getLosstime()) |
| | | .append("relationlistid", getRelationlistid()) |
| | | .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; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡é
置对象 scheme_taskconfig |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeTaskconfig extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æ¹æ¡ID */ |
| | | @Excel(name = " æ¹æ¡ID ") |
| | | private Long schemeid; |
| | | |
| | | /** 触ååºæ¯ID */ |
| | | @Excel(name = " 触ååºæ¯ID ") |
| | | private Long triggersceneid; |
| | | |
| | | /** 触åè§åID */ |
| | | @Excel(name = " 触åè§åID ") |
| | | private Long triggerruleid; |
| | | |
| | | /** ä»»å¡ç±»å;1.éè®¿ä»»å¡ 2.宣æä»»å¡ 3. æéä»»å¡ 4. å¤è¯ç®¡çä»»å¡ 5. 夿¥ç®¡çä»»å¡ 6.å
¶ä»ä»»å¡ */ |
| | | @Excel(name = " ä»»å¡ç±»å;1.éè®¿ä»»å¡ 2.宣æä»»å¡ 3. æéä»»å¡ 4. å¤è¯ç®¡çä»»å¡ 5. 夿¥ç®¡çä»»å¡ 6.å
¶ä»ä»»å¡ ") |
| | | private Long tasktype; |
| | | |
| | | /** æ¯å¦å¨æä»»å¡;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " æ¯å¦å¨æä»»å¡;0.å¦ 1.æ¯ ") |
| | | private Long iscycle; |
| | | |
| | | /** è®¡åæ§è¡æ¶é´æ°å¼ */ |
| | | @Excel(name = " è®¡åæ§è¡æ¶é´æ°å¼ ") |
| | | private Long planexecutevalue; |
| | | |
| | | /** è®¡åæ§è¡æ¶é´åä½;1.天 2.å¨ 3.æ 4.å¹´ */ |
| | | @Excel(name = " è®¡åæ§è¡æ¶é´åä½;1.天 2.å¨ 3.æ 4.å¹´ ") |
| | | private Long planexecuteunit; |
| | | |
| | | /** è®¡åæ§è¡å
·ä½æ¶é´ */ |
| | | @Excel(name = " è®¡åæ§è¡å
·ä½æ¶é´ ") |
| | | private String planexecutetime; |
| | | |
| | | /** è®¡åæ§è¡ç±»å;1.å½å¤©æ§è¡ 2.第äºå¤©ææå®æ¶é´æ§è¡ 3.è®¡åæ¶é´æ©äºæå®æ¶é´ä¸æ§è¡ */ |
| | | @Excel(name = " è®¡åæ§è¡ç±»å;1.å½å¤©æ§è¡ 2.第äºå¤©ææå®æ¶é´æ§è¡ 3.è®¡åæ¶é´æ©äºæå®æ¶é´ä¸æ§è¡ ") |
| | | private Long planexecutetype; |
| | | |
| | | /** è®¡åæ§è¡æ¯å¦å®æ¶;0.宿¶ 1.宿¶ */ |
| | | @Excel(name = " è®¡åæ§è¡æ¯å¦å®æ¶;0.宿¶ 1.宿¶ ") |
| | | private Long isrealtime; |
| | | |
| | | /** 卿é¢ç */ |
| | | @Excel(name = " 卿é¢ç ") |
| | | private Long cyclefrequency; |
| | | |
| | | /** 卿é¢çåä½;1.天 2.å¨ 3.æ 4.å¹´ */ |
| | | @Excel(name = " 卿é¢çåä½;1.天 2.å¨ 3.æ 4.å¹´ ") |
| | | private Long cyclefrequencyunit; |
| | | |
| | | /** 卿é¢çæ¬¡æ° */ |
| | | @Excel(name = " 卿é¢çæ¬¡æ° ") |
| | | private Long cyclefrequencycount; |
| | | |
| | | /** æææå¤©æ° */ |
| | | @Excel(name = " æææå¤©æ° ") |
| | | private Long termvalidityday; |
| | | |
| | | /** æææè§å;1.å½å¤© 2.æå 3.å»¶è¿ 4.æåæå»¶è¿ */ |
| | | @Excel(name = " æææè§å;1.å½å¤© 2.æå 3.å»¶è¿ 4.æåæå»¶è¿ ") |
| | | private Long termvalidityrule; |
| | | |
| | | /** æææåæéå¤©æ° */ |
| | | @Excel(name = " æææåæéå¤©æ° ") |
| | | private Long termvaliditytipsday; |
| | | |
| | | /** ææææéå½å¤©å
·ä½æ¶é´ */ |
| | | @Excel(name = " ææææéå½å¤©å
·ä½æ¶é´ ") |
| | | private String termvaliditytipstime; |
| | | |
| | | /** å
³èç¼å· ç§å®¤&é¡¹ç® */ |
| | | @Excel(name = " å
³èç¼å· ç§å®¤&é¡¹ç® ") |
| | | private Long relationid; |
| | | |
| | | /** ä»ç»&æéå
容 */ |
| | | @Excel(name = " ä»ç»&æéå
容 ") |
| | | private String content; |
| | | |
| | | /** æç¤ºå
容 */ |
| | | @Excel(name = " æç¤ºå
容 ") |
| | | private String tipscontent; |
| | | |
| | | /** æéæé/天 */ |
| | | @Excel(name = " æéæé/天 ") |
| | | private Long limitedday; |
| | | |
| | | /** é¾æå¤æå¤©æ° */ |
| | | @Excel(name = " é¾æå¤æå¤©æ° ") |
| | | private Long overdueday; |
| | | |
| | | /** 龿åæéå¤©æ° */ |
| | | @Excel(name = " 龿åæéå¤©æ° ") |
| | | private Long overduetipsday; |
| | | |
| | | /** å¤±è®¿å¤æå¤©æ° */ |
| | | @Excel(name = " å¤±è®¿å¤æå¤©æ° ") |
| | | private Long lossday; |
| | | |
| | | /** æ§è¡æ¹å¼;1.微信/çä¿¡ 2.AIçµè¯ 3.ä¸èªå¨åé 4.微信 5.çä¿¡ 6.ä¼ä¸å¾®ä¿¡ 7.ä¼ä¸å¾®ä¿¡ç¾¤ 8.éé 9.éé群 10.é£ä¹¦ 11.é£ä¹¦ç¾¤ */ |
| | | @Excel(name = " æ§è¡æ¹å¼;1.微信/çä¿¡ 2.AIçµè¯ 3.ä¸èªå¨åé 4.微信 5.çä¿¡ 6.ä¼ä¸å¾®ä¿¡ 7.ä¼ä¸å¾®ä¿¡ç¾¤ 8.éé 9.éé群 10.é£ä¹¦ 11.é£ä¹¦ç¾¤ ") |
| | | private Long executetype; |
| | | |
| | | /** æ§è¡æ¨¡æ¿ 微信&AIå¤å¼æ¨¡æ¿ */ |
| | | @Excel(name = " æ§è¡æ¨¡æ¿ 微信&AIå¤å¼æ¨¡æ¿ ") |
| | | private Long executetemplate; |
| | | |
| | | /** é¢å¤æ§è¡æ¨¡æ¿ çä¿¡æ¨¡æ¿ */ |
| | | @Excel(name = " é¢å¤æ§è¡æ¨¡æ¿ çä¿¡æ¨¡æ¿ ") |
| | | private Long executetemplateextra; |
| | | |
| | | /** æ§è¡é¡ºåº;1.微信ä¼å
2.çä¿¡ä¼å
3.åæ¶åé */ |
| | | @Excel(name = " æ§è¡é¡ºåº;1.微信ä¼å
2.çä¿¡ä¼å
3.åæ¶åé ") |
| | | private Long executeorder; |
| | | |
| | | /** æ§è¡è¯é³ç±»å;1.å½é³ 2.TTS */ |
| | | @Excel(name = " æ§è¡è¯é³ç±»å;1.å½é³ 2.TTS ") |
| | | private String executevoicetype; |
| | | |
| | | /** å½é³æä»¶&TTSåæ° */ |
| | | @Excel(name = " å½é³æä»¶&TTSåæ° ") |
| | | private String executevoicecontent; |
| | | |
| | | /** æé廿¤äººåIDï¼å¤éï¼ */ |
| | | @Excel(name = " æé廿¤äººåID", readConverterExp = "å¤=é") |
| | | private String exeutetipspersonid; |
| | | |
| | | /** æºæ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 islocal; |
| | | |
| | | /** å
³è项ç®ç±»å;1.æ£æ¥ 2.æ£éª */ |
| | | @Excel(name = " å
³è项ç®ç±»å;1.æ£æ¥ 2.æ£éª ") |
| | | private Long relationtype; |
| | | |
| | | /** è¯é³åæåå */ |
| | | @Excel(name = " è¯é³åæåå ") |
| | | private Long voicemanufacturers; |
| | | |
| | | /** è¯é³åæé
ç½® */ |
| | | @Excel(name = " è¯é³åæé
ç½® ") |
| | | private String voiceconfig; |
| | | |
| | | /** 宿æ¡ä»¶;1éè¯ç¶æ 2夿 ¸ç¶æ */ |
| | | @Excel(name = " 宿æ¡ä»¶;1éè¯ç¶æ 2夿 ¸ç¶æ ") |
| | | private Long completecondition; |
| | | |
| | | /** 宿æ¡ä»¶å¯¹åºç¶æ */ |
| | | @Excel(name = " 宿æ¡ä»¶å¯¹åºç¶æ ") |
| | | private Long completeconditionstate; |
| | | |
| | | /** å
³èç¼å· ç§å®¤&项ç®(å¤é) */ |
| | | @Excel(name = " å
³èç¼å· ç§å®¤&项ç®(å¤é) ") |
| | | private String relationlistid; |
| | | |
| | | /** å
³è代ç é®å·&宣æ */ |
| | | @Excel(name = " å
³è代ç é®å·&宣æ ") |
| | | private String relationcode; |
| | | |
| | | /** æ¯å¦åå¨éåæ è®° */ |
| | | @Excel(name = " æ¯å¦åå¨éåæ è®° ") |
| | | private Long isrepeat; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSchemeid(Long schemeid) |
| | | { |
| | | this.schemeid = schemeid; |
| | | } |
| | | |
| | | public Long getSchemeid() |
| | | { |
| | | return schemeid; |
| | | } |
| | | public void setTriggersceneid(Long triggersceneid) |
| | | { |
| | | this.triggersceneid = triggersceneid; |
| | | } |
| | | |
| | | public Long getTriggersceneid() |
| | | { |
| | | return triggersceneid; |
| | | } |
| | | public void setTriggerruleid(Long triggerruleid) |
| | | { |
| | | this.triggerruleid = triggerruleid; |
| | | } |
| | | |
| | | public Long getTriggerruleid() |
| | | { |
| | | return triggerruleid; |
| | | } |
| | | public void setTasktype(Long tasktype) |
| | | { |
| | | this.tasktype = tasktype; |
| | | } |
| | | |
| | | public Long getTasktype() |
| | | { |
| | | return tasktype; |
| | | } |
| | | public void setIscycle(Long iscycle) |
| | | { |
| | | this.iscycle = iscycle; |
| | | } |
| | | |
| | | public Long getIscycle() |
| | | { |
| | | return iscycle; |
| | | } |
| | | public void setPlanexecutevalue(Long planexecutevalue) |
| | | { |
| | | this.planexecutevalue = planexecutevalue; |
| | | } |
| | | |
| | | public Long getPlanexecutevalue() |
| | | { |
| | | return planexecutevalue; |
| | | } |
| | | public void setPlanexecuteunit(Long planexecuteunit) |
| | | { |
| | | this.planexecuteunit = planexecuteunit; |
| | | } |
| | | |
| | | public Long getPlanexecuteunit() |
| | | { |
| | | return planexecuteunit; |
| | | } |
| | | public void setPlanexecutetime(String planexecutetime) |
| | | { |
| | | this.planexecutetime = planexecutetime; |
| | | } |
| | | |
| | | public String getPlanexecutetime() |
| | | { |
| | | return planexecutetime; |
| | | } |
| | | public void setPlanexecutetype(Long planexecutetype) |
| | | { |
| | | this.planexecutetype = planexecutetype; |
| | | } |
| | | |
| | | public Long getPlanexecutetype() |
| | | { |
| | | return planexecutetype; |
| | | } |
| | | public void setIsrealtime(Long isrealtime) |
| | | { |
| | | this.isrealtime = isrealtime; |
| | | } |
| | | |
| | | public Long getIsrealtime() |
| | | { |
| | | return isrealtime; |
| | | } |
| | | public void setCyclefrequency(Long cyclefrequency) |
| | | { |
| | | this.cyclefrequency = cyclefrequency; |
| | | } |
| | | |
| | | public Long getCyclefrequency() |
| | | { |
| | | return cyclefrequency; |
| | | } |
| | | public void setCyclefrequencyunit(Long cyclefrequencyunit) |
| | | { |
| | | this.cyclefrequencyunit = cyclefrequencyunit; |
| | | } |
| | | |
| | | public Long getCyclefrequencyunit() |
| | | { |
| | | return cyclefrequencyunit; |
| | | } |
| | | public void setCyclefrequencycount(Long cyclefrequencycount) |
| | | { |
| | | this.cyclefrequencycount = cyclefrequencycount; |
| | | } |
| | | |
| | | public Long getCyclefrequencycount() |
| | | { |
| | | return cyclefrequencycount; |
| | | } |
| | | public void setTermvalidityday(Long termvalidityday) |
| | | { |
| | | this.termvalidityday = termvalidityday; |
| | | } |
| | | |
| | | public Long getTermvalidityday() |
| | | { |
| | | return termvalidityday; |
| | | } |
| | | public void setTermvalidityrule(Long termvalidityrule) |
| | | { |
| | | this.termvalidityrule = termvalidityrule; |
| | | } |
| | | |
| | | public Long getTermvalidityrule() |
| | | { |
| | | return termvalidityrule; |
| | | } |
| | | public void setTermvaliditytipsday(Long termvaliditytipsday) |
| | | { |
| | | this.termvaliditytipsday = termvaliditytipsday; |
| | | } |
| | | |
| | | public Long getTermvaliditytipsday() |
| | | { |
| | | return termvaliditytipsday; |
| | | } |
| | | public void setTermvaliditytipstime(String termvaliditytipstime) |
| | | { |
| | | this.termvaliditytipstime = termvaliditytipstime; |
| | | } |
| | | |
| | | public String getTermvaliditytipstime() |
| | | { |
| | | return termvaliditytipstime; |
| | | } |
| | | public void setRelationid(Long relationid) |
| | | { |
| | | this.relationid = relationid; |
| | | } |
| | | |
| | | public Long getRelationid() |
| | | { |
| | | return relationid; |
| | | } |
| | | public void setContent(String content) |
| | | { |
| | | this.content = content; |
| | | } |
| | | |
| | | public String getContent() |
| | | { |
| | | return content; |
| | | } |
| | | public void setTipscontent(String tipscontent) |
| | | { |
| | | this.tipscontent = tipscontent; |
| | | } |
| | | |
| | | public String getTipscontent() |
| | | { |
| | | return tipscontent; |
| | | } |
| | | public void setLimitedday(Long limitedday) |
| | | { |
| | | this.limitedday = limitedday; |
| | | } |
| | | |
| | | public Long getLimitedday() |
| | | { |
| | | return limitedday; |
| | | } |
| | | public void setOverdueday(Long overdueday) |
| | | { |
| | | this.overdueday = overdueday; |
| | | } |
| | | |
| | | public Long getOverdueday() |
| | | { |
| | | return overdueday; |
| | | } |
| | | public void setOverduetipsday(Long overduetipsday) |
| | | { |
| | | this.overduetipsday = overduetipsday; |
| | | } |
| | | |
| | | public Long getOverduetipsday() |
| | | { |
| | | return overduetipsday; |
| | | } |
| | | public void setLossday(Long lossday) |
| | | { |
| | | this.lossday = lossday; |
| | | } |
| | | |
| | | public Long getLossday() |
| | | { |
| | | return lossday; |
| | | } |
| | | public void setExecutetype(Long executetype) |
| | | { |
| | | this.executetype = executetype; |
| | | } |
| | | |
| | | public Long getExecutetype() |
| | | { |
| | | return executetype; |
| | | } |
| | | public void setExecutetemplate(Long executetemplate) |
| | | { |
| | | this.executetemplate = executetemplate; |
| | | } |
| | | |
| | | public Long getExecutetemplate() |
| | | { |
| | | return executetemplate; |
| | | } |
| | | public void setExecutetemplateextra(Long executetemplateextra) |
| | | { |
| | | this.executetemplateextra = executetemplateextra; |
| | | } |
| | | |
| | | public Long getExecutetemplateextra() |
| | | { |
| | | return executetemplateextra; |
| | | } |
| | | public void setExecuteorder(Long executeorder) |
| | | { |
| | | this.executeorder = executeorder; |
| | | } |
| | | |
| | | public Long getExecuteorder() |
| | | { |
| | | return executeorder; |
| | | } |
| | | public void setExecutevoicetype(String executevoicetype) |
| | | { |
| | | this.executevoicetype = executevoicetype; |
| | | } |
| | | |
| | | public String getExecutevoicetype() |
| | | { |
| | | return executevoicetype; |
| | | } |
| | | public void setExecutevoicecontent(String executevoicecontent) |
| | | { |
| | | this.executevoicecontent = executevoicecontent; |
| | | } |
| | | |
| | | public String getExecutevoicecontent() |
| | | { |
| | | return executevoicecontent; |
| | | } |
| | | public void setExeutetipspersonid(String exeutetipspersonid) |
| | | { |
| | | this.exeutetipspersonid = exeutetipspersonid; |
| | | } |
| | | |
| | | public String getExeutetipspersonid() |
| | | { |
| | | return exeutetipspersonid; |
| | | } |
| | | 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 setIslocal(Long islocal) |
| | | { |
| | | this.islocal = islocal; |
| | | } |
| | | |
| | | public Long getIslocal() |
| | | { |
| | | return islocal; |
| | | } |
| | | public void setRelationtype(Long relationtype) |
| | | { |
| | | this.relationtype = relationtype; |
| | | } |
| | | |
| | | public Long getRelationtype() |
| | | { |
| | | return relationtype; |
| | | } |
| | | public void setVoicemanufacturers(Long voicemanufacturers) |
| | | { |
| | | this.voicemanufacturers = voicemanufacturers; |
| | | } |
| | | |
| | | public Long getVoicemanufacturers() |
| | | { |
| | | return voicemanufacturers; |
| | | } |
| | | public void setVoiceconfig(String voiceconfig) |
| | | { |
| | | this.voiceconfig = voiceconfig; |
| | | } |
| | | |
| | | public String getVoiceconfig() |
| | | { |
| | | return voiceconfig; |
| | | } |
| | | public void setCompletecondition(Long completecondition) |
| | | { |
| | | this.completecondition = completecondition; |
| | | } |
| | | |
| | | public Long getCompletecondition() |
| | | { |
| | | return completecondition; |
| | | } |
| | | public void setCompleteconditionstate(Long completeconditionstate) |
| | | { |
| | | this.completeconditionstate = completeconditionstate; |
| | | } |
| | | |
| | | public Long getCompleteconditionstate() |
| | | { |
| | | return completeconditionstate; |
| | | } |
| | | public void setRelationlistid(String relationlistid) |
| | | { |
| | | this.relationlistid = relationlistid; |
| | | } |
| | | |
| | | public String getRelationlistid() |
| | | { |
| | | return relationlistid; |
| | | } |
| | | public void setRelationcode(String relationcode) |
| | | { |
| | | this.relationcode = relationcode; |
| | | } |
| | | |
| | | public String getRelationcode() |
| | | { |
| | | return relationcode; |
| | | } |
| | | public void setIsrepeat(Long isrepeat) |
| | | { |
| | | this.isrepeat = isrepeat; |
| | | } |
| | | |
| | | public Long getIsrepeat() |
| | | { |
| | | return isrepeat; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("schemeid", getSchemeid()) |
| | | .append("triggersceneid", getTriggersceneid()) |
| | | .append("triggerruleid", getTriggerruleid()) |
| | | .append("tasktype", getTasktype()) |
| | | .append("iscycle", getIscycle()) |
| | | .append("planexecutevalue", getPlanexecutevalue()) |
| | | .append("planexecuteunit", getPlanexecuteunit()) |
| | | .append("planexecutetime", getPlanexecutetime()) |
| | | .append("planexecutetype", getPlanexecutetype()) |
| | | .append("isrealtime", getIsrealtime()) |
| | | .append("cyclefrequency", getCyclefrequency()) |
| | | .append("cyclefrequencyunit", getCyclefrequencyunit()) |
| | | .append("cyclefrequencycount", getCyclefrequencycount()) |
| | | .append("termvalidityday", getTermvalidityday()) |
| | | .append("termvalidityrule", getTermvalidityrule()) |
| | | .append("termvaliditytipsday", getTermvaliditytipsday()) |
| | | .append("termvaliditytipstime", getTermvaliditytipstime()) |
| | | .append("relationid", getRelationid()) |
| | | .append("content", getContent()) |
| | | .append("tipscontent", getTipscontent()) |
| | | .append("limitedday", getLimitedday()) |
| | | .append("overdueday", getOverdueday()) |
| | | .append("overduetipsday", getOverduetipsday()) |
| | | .append("lossday", getLossday()) |
| | | .append("executetype", getExecutetype()) |
| | | .append("executetemplate", getExecutetemplate()) |
| | | .append("executetemplateextra", getExecutetemplateextra()) |
| | | .append("executeorder", getExecuteorder()) |
| | | .append("executevoicetype", getExecutevoicetype()) |
| | | .append("executevoicecontent", getExecutevoicecontent()) |
| | | .append("exeutetipspersonid", getExeutetipspersonid()) |
| | | .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("islocal", getIslocal()) |
| | | .append("relationtype", getRelationtype()) |
| | | .append("voicemanufacturers", getVoicemanufacturers()) |
| | | .append("voiceconfig", getVoiceconfig()) |
| | | .append("completecondition", getCompletecondition()) |
| | | .append("completeconditionstate", getCompleteconditionstate()) |
| | | .append("relationlistid", getRelationlistid()) |
| | | .append("relationcode", getRelationcode()) |
| | | .append("isrepeat", getIsrepeat()) |
| | | .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; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡å¤çè®°å½å¯¹è±¡ scheme_taskrecord |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeTaskrecord extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** ç±»å;0.人工 1.微信 2.çä¿¡ 3.AIçµè¯ */ |
| | | @Excel(name = " ç±»å;0.人工 1.微信 2.çä¿¡ 3.AIçµè¯ ") |
| | | private Long recordtype; |
| | | |
| | | /** ä»»å¡ID */ |
| | | @Excel(name = " ä»»å¡ID ") |
| | | private Long taskid; |
| | | |
| | | /** ç»æ */ |
| | | @Excel(name = " ç»æ ") |
| | | private String result; |
| | | |
| | | /** æºæ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; |
| | | |
| | | /** å
³èID;é®å·ç»æID */ |
| | | @Excel(name = " å
³èID;é®å·ç»æID ") |
| | | private Long relationid; |
| | | |
| | | /** æ¸ éç±»å;é»è®¤0 ç±»å为微信/çä¿¡æ¶-1.微信 2çä¿¡ */ |
| | | @Excel(name = " æ¸ éç±»å;é»è®¤0 ç±»å为微信/çä¿¡æ¶-1.微信 2çä¿¡ ") |
| | | private Long channeltype; |
| | | |
| | | /** åéæ¶é´/å¤å¼æ¶é´/é访æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " åéæ¶é´/å¤å¼æ¶é´/é访æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date sendtime; |
| | | |
| | | /** æä½äºº/é访人/夿 ¸äºº */ |
| | | @Excel(name = " æä½äºº/é访人/夿 ¸äºº ") |
| | | private String operator; |
| | | |
| | | /** å夿¶é´/æææ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " å夿¶é´/æææ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date replytime; |
| | | |
| | | /** 夿 ¸æ¶é´ */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = " 夿 ¸æ¶é´ ", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date reviewtime; |
| | | |
| | | /** ç¶æ */ |
| | | @Excel(name = " ç¶æ ") |
| | | private Long state; |
| | | |
| | | /** 夿 ¸ç¶æ;0å¾
夿 ¸ 1æå 2失败 */ |
| | | @Excel(name = " 夿 ¸ç¶æ;0å¾
夿 ¸ 1æå 2失败 ") |
| | | private Long reviewstate; |
| | | |
| | | /** å
³èåºæ¯ID */ |
| | | @Excel(name = " å
³èåºæ¯ID ") |
| | | private Long sceneid; |
| | | |
| | | /** æ è¯ */ |
| | | @Excel(name = " æ è¯ ") |
| | | private String uuid; |
| | | |
| | | /** åéçç®æ å·ç ï¼AIå¤å¼ä½¿ç¨ï¼ */ |
| | | @Excel(name = " åéçç®æ å·ç ", readConverterExp = "A=Iå¤å¼ä½¿ç¨") |
| | | private String sendphone; |
| | | |
| | | /** æ¯å¦å次æ§è¡ */ |
| | | @Excel(name = " æ¯å¦å次æ§è¡ ") |
| | | private Long isagain; |
| | | |
| | | /** åå¸ID */ |
| | | @Excel(name = " åå¸ID ") |
| | | private Long seatsid; |
| | | |
| | | /** æå¨å¤çç±»å */ |
| | | @Excel(name = " æå¨å¤çç±»å ") |
| | | private Long handletype; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setRecordtype(Long recordtype) |
| | | { |
| | | this.recordtype = recordtype; |
| | | } |
| | | |
| | | public Long getRecordtype() |
| | | { |
| | | return recordtype; |
| | | } |
| | | public void setTaskid(Long taskid) |
| | | { |
| | | this.taskid = taskid; |
| | | } |
| | | |
| | | public Long getTaskid() |
| | | { |
| | | return taskid; |
| | | } |
| | | public void setResult(String result) |
| | | { |
| | | this.result = result; |
| | | } |
| | | |
| | | public String getResult() |
| | | { |
| | | return result; |
| | | } |
| | | 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 setRelationid(Long relationid) |
| | | { |
| | | this.relationid = relationid; |
| | | } |
| | | |
| | | public Long getRelationid() |
| | | { |
| | | return relationid; |
| | | } |
| | | public void setChanneltype(Long channeltype) |
| | | { |
| | | this.channeltype = channeltype; |
| | | } |
| | | |
| | | public Long getChanneltype() |
| | | { |
| | | return channeltype; |
| | | } |
| | | public void setSendtime(Date sendtime) |
| | | { |
| | | this.sendtime = sendtime; |
| | | } |
| | | |
| | | public Date getSendtime() |
| | | { |
| | | return sendtime; |
| | | } |
| | | public void setOperator(String operator) |
| | | { |
| | | this.operator = operator; |
| | | } |
| | | |
| | | public String getOperator() |
| | | { |
| | | return operator; |
| | | } |
| | | public void setReplytime(Date replytime) |
| | | { |
| | | this.replytime = replytime; |
| | | } |
| | | |
| | | public Date getReplytime() |
| | | { |
| | | return replytime; |
| | | } |
| | | public void setReviewtime(Date reviewtime) |
| | | { |
| | | this.reviewtime = reviewtime; |
| | | } |
| | | |
| | | public Date getReviewtime() |
| | | { |
| | | return reviewtime; |
| | | } |
| | | public void setState(Long state) |
| | | { |
| | | this.state = state; |
| | | } |
| | | |
| | | public Long getState() |
| | | { |
| | | return state; |
| | | } |
| | | public void setReviewstate(Long reviewstate) |
| | | { |
| | | this.reviewstate = reviewstate; |
| | | } |
| | | |
| | | public Long getReviewstate() |
| | | { |
| | | return reviewstate; |
| | | } |
| | | public void setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setUuid(String uuid) |
| | | { |
| | | this.uuid = uuid; |
| | | } |
| | | |
| | | public String getUuid() |
| | | { |
| | | return uuid; |
| | | } |
| | | public void setSendphone(String sendphone) |
| | | { |
| | | this.sendphone = sendphone; |
| | | } |
| | | |
| | | public String getSendphone() |
| | | { |
| | | return sendphone; |
| | | } |
| | | public void setIsagain(Long isagain) |
| | | { |
| | | this.isagain = isagain; |
| | | } |
| | | |
| | | public Long getIsagain() |
| | | { |
| | | return isagain; |
| | | } |
| | | public void setSeatsid(Long seatsid) |
| | | { |
| | | this.seatsid = seatsid; |
| | | } |
| | | |
| | | public Long getSeatsid() |
| | | { |
| | | return seatsid; |
| | | } |
| | | public void setHandletype(Long handletype) |
| | | { |
| | | this.handletype = handletype; |
| | | } |
| | | |
| | | public Long getHandletype() |
| | | { |
| | | return handletype; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("recordtype", getRecordtype()) |
| | | .append("taskid", getTaskid()) |
| | | .append("result", getResult()) |
| | | .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("relationid", getRelationid()) |
| | | .append("channeltype", getChanneltype()) |
| | | .append("sendtime", getSendtime()) |
| | | .append("operator", getOperator()) |
| | | .append("replytime", getReplytime()) |
| | | .append("reviewtime", getReviewtime()) |
| | | .append("state", getState()) |
| | | .append("reviewstate", getReviewstate()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("uuid", getUuid()) |
| | | .append("sendphone", getSendphone()) |
| | | .append("isagain", getIsagain()) |
| | | .append("seatsid", getSeatsid()) |
| | | .append("handletype", getHandletype()) |
| | | .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å¤å¼ä»»å¡è¯¦æ
对象 scheme_taskrecord_calldetail |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeTaskrecordCalldetail extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** éè¯æ è¯ */ |
| | | @Excel(name = " éè¯æ è¯ ") |
| | | private String uuid; |
| | | |
| | | /** ç®æ å·ç */ |
| | | @Excel(name = " ç®æ å·ç ") |
| | | private String phone; |
| | | |
| | | /** å½ååè°ç请æ±ç±»å */ |
| | | @Excel(name = " å½ååè°ç请æ±ç±»å ") |
| | | private String operate; |
| | | |
| | | /** å¼å«å¤çº¿æ¶ä½¿ç¨ç夿¾å·ç */ |
| | | @Excel(name = " å¼å«å¤çº¿æ¶ä½¿ç¨ç夿¾å·ç ") |
| | | private String displayno; |
| | | |
| | | /** æ¯å¦ä¸ºå¼å
¥éè¯ */ |
| | | @Excel(name = " æ¯å¦ä¸ºå¼å
¥éè¯ ") |
| | | private Long inbound; |
| | | |
| | | /** æ¯å¦ä¸ºå¼å
¥è¯·æ±æä½(å¼å
¥çinboundå为trueï¼é¦æ¬¡è¯·æ±æ¶incoming为true) 妿ä¸åºçï¼å伿æå½åå¼å
¥ï¼ */ |
| | | @Excel(name = " æ¯å¦ä¸ºå¼å
¥è¯·æ±æä½(å¼å
¥çinboundå为trueï¼é¦æ¬¡è¯·æ±æ¶incoming为true) 妿ä¸åºçï¼å伿æå½åå¼å
¥ï¼ ") |
| | | private Long incoming; |
| | | |
| | | /** åé
æ¶é´ */ |
| | | @Excel(name = " åé
æ¶é´ ") |
| | | private Long assigntime; |
| | | |
| | | /** å¼å§æ¶é´ï¼å¦æå¼å
¥çå为å¼å
¥å¼å§æ¶é´ */ |
| | | @Excel(name = " å¼å§æ¶é´ï¼å¦æå¼å
¥çå为å¼å
¥å¼å§æ¶é´ ") |
| | | private Long starttime; |
| | | |
| | | /** åºçæ¶é´ */ |
| | | @Excel(name = " åºçæ¶é´ ") |
| | | private Long answertime; |
| | | |
| | | /** æ è¯å½åæ¯å¦ä¸ºéé»åè° */ |
| | | @Excel(name = " æ è¯å½åæ¯å¦ä¸ºéé»åè° ") |
| | | private Long silent; |
| | | |
| | | /** æ¶å°çæé®å
容 */ |
| | | @Excel(name = " æ¶å°çæé®å
容 ") |
| | | private Long dtmfKey; |
| | | |
| | | /** é³ä¹ææ¾æåæ¢æ¶ç¸å
³é³ä¹åç§° */ |
| | | @Excel(name = " é³ä¹ææ¾æåæ¢æ¶ç¸å
³é³ä¹åç§° ") |
| | | private String musicpath; |
| | | |
| | | /** å½åå¥åçç´¢å¼å· */ |
| | | @Excel(name = " å½åå¥åçç´¢å¼å· ") |
| | | private Long sentindex; |
| | | |
| | | /** å½åæ¯å¦ä¸ºè¯´è¯å¼å§ */ |
| | | @Excel(name = " å½åæ¯å¦ä¸ºè¯´è¯å¼å§ ") |
| | | private Long sentbegin; |
| | | |
| | | /** å½åæ¶å°çASRè¯å«ææ¬ */ |
| | | @Excel(name = " å½åæ¶å°çASRè¯å«ææ¬ ") |
| | | private String asrtext; |
| | | |
| | | /** å½åasrææ¬ éè¯å¼å§æ¶é´ç¹ï¼æ¯«ç§æ° */ |
| | | @Excel(name = " å½åasrææ¬ éè¯å¼å§æ¶é´ç¹ï¼æ¯«ç§æ° ") |
| | | private Long begintime; |
| | | |
| | | /** å½åasrææ¬ æå¤ ç»ææ¶é´ç¹ï¼æ¯«ç§æ°ï¼å½åææ¬ä¸æ¯å¥åç»ææ¶ï¼å为-1 */ |
| | | @Excel(name = " å½åasrææ¬ æå¤ ç»ææ¶é´ç¹ï¼æ¯«ç§æ°ï¼å½åææ¬ä¸æ¯å¥åç»ææ¶ï¼å为-1 ") |
| | | private Long endtime; |
| | | |
| | | /** æ è¯å½åæ¯å¦ä¸ºå¥åç»æ */ |
| | | @Excel(name = " æ è¯å½åæ¯å¦ä¸ºå¥åç»æ ") |
| | | private Long sentend; |
| | | |
| | | /** å½åå¥åçå½é³æä»¶è·¯å¾ï¼å¥åæªç»ææ¶ä¸ºç©ºã */ |
| | | @Excel(name = " å½åå¥åçå½é³æä»¶è·¯å¾ï¼å¥åæªç»ææ¶ä¸ºç©ºã ") |
| | | private String recordpath; |
| | | |
| | | /** å½åå¥åå½é³urlè·¯å¾ã */ |
| | | @Excel(name = " å½åå¥åå½é³urlè·¯å¾ã ") |
| | | private String recordurl; |
| | | |
| | | /** åºæ¯ID */ |
| | | @Excel(name = " åºæ¯ID ") |
| | | private Long sceneid; |
| | | |
| | | /** å
³èä»»å¡è®°å½ID */ |
| | | @Excel(name = " å
³èä»»å¡è®°å½ID ") |
| | | private Long taskrecordid; |
| | | |
| | | /** å½åæµç¨ID */ |
| | | @Excel(name = " å½åæµç¨ID ") |
| | | private Long flowiid; |
| | | |
| | | /** å½åèç¹ID */ |
| | | @Excel(name = " å½åèç¹ID ") |
| | | private Long flownodeid; |
| | | |
| | | /** è¯æ¯ææ¬ */ |
| | | @Excel(name = " è¯æ¯ææ¬ ") |
| | | private String corpustext; |
| | | |
| | | /** è¯æ¯è¯é³ */ |
| | | @Excel(name = " è¯æ¯è¯é³ ") |
| | | private String corpusvoice; |
| | | |
| | | /** è¯å«æå¾å¼ */ |
| | | @Excel(name = " è¯å«æå¾å¼ ") |
| | | private String intentvalue; |
| | | |
| | | /** å¹é
ææ¬ */ |
| | | @Excel(name = " å¹é
ææ¬ ") |
| | | private String matchedtext; |
| | | |
| | | /** æºæ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 setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setUuid(String uuid) |
| | | { |
| | | this.uuid = uuid; |
| | | } |
| | | |
| | | public String getUuid() |
| | | { |
| | | return uuid; |
| | | } |
| | | public void setPhone(String phone) |
| | | { |
| | | this.phone = phone; |
| | | } |
| | | |
| | | public String getPhone() |
| | | { |
| | | return phone; |
| | | } |
| | | public void setOperate(String operate) |
| | | { |
| | | this.operate = operate; |
| | | } |
| | | |
| | | public String getOperate() |
| | | { |
| | | return operate; |
| | | } |
| | | public void setDisplayno(String displayno) |
| | | { |
| | | this.displayno = displayno; |
| | | } |
| | | |
| | | public String getDisplayno() |
| | | { |
| | | return displayno; |
| | | } |
| | | public void setInbound(Long inbound) |
| | | { |
| | | this.inbound = inbound; |
| | | } |
| | | |
| | | public Long getInbound() |
| | | { |
| | | return inbound; |
| | | } |
| | | public void setIncoming(Long incoming) |
| | | { |
| | | this.incoming = incoming; |
| | | } |
| | | |
| | | public Long getIncoming() |
| | | { |
| | | return incoming; |
| | | } |
| | | public void setAssigntime(Long assigntime) |
| | | { |
| | | this.assigntime = assigntime; |
| | | } |
| | | |
| | | public Long getAssigntime() |
| | | { |
| | | return assigntime; |
| | | } |
| | | public void setStarttime(Long starttime) |
| | | { |
| | | this.starttime = starttime; |
| | | } |
| | | |
| | | public Long getStarttime() |
| | | { |
| | | return starttime; |
| | | } |
| | | public void setAnswertime(Long answertime) |
| | | { |
| | | this.answertime = answertime; |
| | | } |
| | | |
| | | public Long getAnswertime() |
| | | { |
| | | return answertime; |
| | | } |
| | | public void setSilent(Long silent) |
| | | { |
| | | this.silent = silent; |
| | | } |
| | | |
| | | public Long getSilent() |
| | | { |
| | | return silent; |
| | | } |
| | | public void setDtmfKey(Long dtmfKey) |
| | | { |
| | | this.dtmfKey = dtmfKey; |
| | | } |
| | | |
| | | public Long getDtmfKey() |
| | | { |
| | | return dtmfKey; |
| | | } |
| | | public void setMusicpath(String musicpath) |
| | | { |
| | | this.musicpath = musicpath; |
| | | } |
| | | |
| | | public String getMusicpath() |
| | | { |
| | | return musicpath; |
| | | } |
| | | public void setSentindex(Long sentindex) |
| | | { |
| | | this.sentindex = sentindex; |
| | | } |
| | | |
| | | public Long getSentindex() |
| | | { |
| | | return sentindex; |
| | | } |
| | | public void setSentbegin(Long sentbegin) |
| | | { |
| | | this.sentbegin = sentbegin; |
| | | } |
| | | |
| | | public Long getSentbegin() |
| | | { |
| | | return sentbegin; |
| | | } |
| | | public void setAsrtext(String asrtext) |
| | | { |
| | | this.asrtext = asrtext; |
| | | } |
| | | |
| | | public String getAsrtext() |
| | | { |
| | | return asrtext; |
| | | } |
| | | public void setBegintime(Long begintime) |
| | | { |
| | | this.begintime = begintime; |
| | | } |
| | | |
| | | public Long getBegintime() |
| | | { |
| | | return begintime; |
| | | } |
| | | public void setEndtime(Long endtime) |
| | | { |
| | | this.endtime = endtime; |
| | | } |
| | | |
| | | public Long getEndtime() |
| | | { |
| | | return endtime; |
| | | } |
| | | public void setSentend(Long sentend) |
| | | { |
| | | this.sentend = sentend; |
| | | } |
| | | |
| | | public Long getSentend() |
| | | { |
| | | return sentend; |
| | | } |
| | | public void setRecordpath(String recordpath) |
| | | { |
| | | this.recordpath = recordpath; |
| | | } |
| | | |
| | | public String getRecordpath() |
| | | { |
| | | return recordpath; |
| | | } |
| | | public void setRecordurl(String recordurl) |
| | | { |
| | | this.recordurl = recordurl; |
| | | } |
| | | |
| | | public String getRecordurl() |
| | | { |
| | | return recordurl; |
| | | } |
| | | public void setSceneid(Long sceneid) |
| | | { |
| | | this.sceneid = sceneid; |
| | | } |
| | | |
| | | public Long getSceneid() |
| | | { |
| | | return sceneid; |
| | | } |
| | | public void setTaskrecordid(Long taskrecordid) |
| | | { |
| | | this.taskrecordid = taskrecordid; |
| | | } |
| | | |
| | | public Long getTaskrecordid() |
| | | { |
| | | return taskrecordid; |
| | | } |
| | | public void setFlowiid(Long flowiid) |
| | | { |
| | | this.flowiid = flowiid; |
| | | } |
| | | |
| | | public Long getFlowiid() |
| | | { |
| | | return flowiid; |
| | | } |
| | | public void setFlownodeid(Long flownodeid) |
| | | { |
| | | this.flownodeid = flownodeid; |
| | | } |
| | | |
| | | public Long getFlownodeid() |
| | | { |
| | | return flownodeid; |
| | | } |
| | | public void setCorpustext(String corpustext) |
| | | { |
| | | this.corpustext = corpustext; |
| | | } |
| | | |
| | | public String getCorpustext() |
| | | { |
| | | return corpustext; |
| | | } |
| | | public void setCorpusvoice(String corpusvoice) |
| | | { |
| | | this.corpusvoice = corpusvoice; |
| | | } |
| | | |
| | | public String getCorpusvoice() |
| | | { |
| | | return corpusvoice; |
| | | } |
| | | public void setIntentvalue(String intentvalue) |
| | | { |
| | | this.intentvalue = intentvalue; |
| | | } |
| | | |
| | | public String getIntentvalue() |
| | | { |
| | | return intentvalue; |
| | | } |
| | | public void setMatchedtext(String matchedtext) |
| | | { |
| | | this.matchedtext = matchedtext; |
| | | } |
| | | |
| | | public String getMatchedtext() |
| | | { |
| | | return matchedtext; |
| | | } |
| | | 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("id", getId()) |
| | | .append("uuid", getUuid()) |
| | | .append("phone", getPhone()) |
| | | .append("operate", getOperate()) |
| | | .append("displayno", getDisplayno()) |
| | | .append("inbound", getInbound()) |
| | | .append("incoming", getIncoming()) |
| | | .append("assigntime", getAssigntime()) |
| | | .append("starttime", getStarttime()) |
| | | .append("answertime", getAnswertime()) |
| | | .append("silent", getSilent()) |
| | | .append("dtmfKey", getDtmfKey()) |
| | | .append("musicpath", getMusicpath()) |
| | | .append("sentindex", getSentindex()) |
| | | .append("sentbegin", getSentbegin()) |
| | | .append("asrtext", getAsrtext()) |
| | | .append("begintime", getBegintime()) |
| | | .append("endtime", getEndtime()) |
| | | .append("sentend", getSentend()) |
| | | .append("recordpath", getRecordpath()) |
| | | .append("recordurl", getRecordurl()) |
| | | .append("sceneid", getSceneid()) |
| | | .append("taskrecordid", getTaskrecordid()) |
| | | .append("flowiid", getFlowiid()) |
| | | .append("flownodeid", getFlownodeid()) |
| | | .append("corpustext", getCorpustext()) |
| | | .append("corpusvoice", getCorpusvoice()) |
| | | .append("intentvalue", getIntentvalue()) |
| | | .append("matchedtext", getMatchedtext()) |
| | | .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; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡éåé
置对象 scheme_taskrepeatconfig |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeTaskrepeatconfig extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æ¹æ¡ID */ |
| | | @Excel(name = " æ¹æ¡ID ") |
| | | private Long schemeid; |
| | | |
| | | /** 触ååºæ¯ID */ |
| | | @Excel(name = " 触ååºæ¯ID ") |
| | | private Long triggersceneid; |
| | | |
| | | /** 触åè§åID */ |
| | | @Excel(name = " 触åè§åID ") |
| | | private Long triggerruleid; |
| | | |
| | | /** ä»»å¡é
ç½®ID */ |
| | | @Excel(name = " ä»»å¡é
ç½®ID ") |
| | | private Long taskconfigid; |
| | | |
| | | /** æ§è¡æ¹å¼;1.微信/çä¿¡ 2.AIçµè¯ 3.ä¸èªå¨åé 4.微信 5.çä¿¡ 6.ä¼ä¸å¾®ä¿¡ 7.ä¼ä¸å¾®ä¿¡ç¾¤ 8.éé 9.éé群 10.é£ä¹¦ 11.é£ä¹¦ç¾¤ */ |
| | | @Excel(name = " æ§è¡æ¹å¼;1.微信/çä¿¡ 2.AIçµè¯ 3.ä¸èªå¨åé 4.微信 5.çä¿¡ 6.ä¼ä¸å¾®ä¿¡ 7.ä¼ä¸å¾®ä¿¡ç¾¤ 8.éé 9.éé群 10.é£ä¹¦ 11.é£ä¹¦ç¾¤ ") |
| | | private Long executetype; |
| | | |
| | | /** æ§è¡å¤±è´¥ç±»å;1.å¤å¼å¤±è´¥ 2.æ åå¤ */ |
| | | @Excel(name = " æ§è¡å¤±è´¥ç±»å;1.å¤å¼å¤±è´¥ 2.æ åå¤ ") |
| | | private Long executefailtype; |
| | | |
| | | /** æ§è¡å¤±è´¥æ°å¼ */ |
| | | @Excel(name = " æ§è¡å¤±è´¥æ°å¼ ") |
| | | private Long executefailvalue; |
| | | |
| | | /** æ§è¡å¤±è´¥åä½;1.åé 2.å°æ¶ */ |
| | | @Excel(name = " æ§è¡å¤±è´¥åä½;1.åé 2.å°æ¶ ") |
| | | private Long executefailunit; |
| | | |
| | | /** æ§è¡æ¨¡æ¿ 微信&AIå¤å¼æ¨¡æ¿ */ |
| | | @Excel(name = " æ§è¡æ¨¡æ¿ 微信&AIå¤å¼æ¨¡æ¿ ") |
| | | private Long executetemplate; |
| | | |
| | | /** é¢å¤æ§è¡æ¨¡æ¿ çä¿¡æ¨¡æ¿ */ |
| | | @Excel(name = " é¢å¤æ§è¡æ¨¡æ¿ çä¿¡æ¨¡æ¿ ") |
| | | private Long executetemplateextra; |
| | | |
| | | /** æ§è¡é¡ºåº;1.微信ä¼å
2.çä¿¡ä¼å
3.åæ¶åé */ |
| | | @Excel(name = " æ§è¡é¡ºåº;1.微信ä¼å
2.çä¿¡ä¼å
3.åæ¶åé ") |
| | | private Long executeorder; |
| | | |
| | | /** æ§è¡è¯é³ç±»å;1.å½é³ 2.TTS */ |
| | | @Excel(name = " æ§è¡è¯é³ç±»å;1.å½é³ 2.TTS ") |
| | | private String executevoicetype; |
| | | |
| | | /** å½é³æä»¶&TTSåæ° */ |
| | | @Excel(name = " å½é³æä»¶&TTSåæ° ") |
| | | private String executevoicecontent; |
| | | |
| | | /** æºæ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 setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSchemeid(Long schemeid) |
| | | { |
| | | this.schemeid = schemeid; |
| | | } |
| | | |
| | | public Long getSchemeid() |
| | | { |
| | | return schemeid; |
| | | } |
| | | public void setTriggersceneid(Long triggersceneid) |
| | | { |
| | | this.triggersceneid = triggersceneid; |
| | | } |
| | | |
| | | public Long getTriggersceneid() |
| | | { |
| | | return triggersceneid; |
| | | } |
| | | public void setTriggerruleid(Long triggerruleid) |
| | | { |
| | | this.triggerruleid = triggerruleid; |
| | | } |
| | | |
| | | public Long getTriggerruleid() |
| | | { |
| | | return triggerruleid; |
| | | } |
| | | public void setTaskconfigid(Long taskconfigid) |
| | | { |
| | | this.taskconfigid = taskconfigid; |
| | | } |
| | | |
| | | public Long getTaskconfigid() |
| | | { |
| | | return taskconfigid; |
| | | } |
| | | public void setExecutetype(Long executetype) |
| | | { |
| | | this.executetype = executetype; |
| | | } |
| | | |
| | | public Long getExecutetype() |
| | | { |
| | | return executetype; |
| | | } |
| | | public void setExecutefailtype(Long executefailtype) |
| | | { |
| | | this.executefailtype = executefailtype; |
| | | } |
| | | |
| | | public Long getExecutefailtype() |
| | | { |
| | | return executefailtype; |
| | | } |
| | | public void setExecutefailvalue(Long executefailvalue) |
| | | { |
| | | this.executefailvalue = executefailvalue; |
| | | } |
| | | |
| | | public Long getExecutefailvalue() |
| | | { |
| | | return executefailvalue; |
| | | } |
| | | public void setExecutefailunit(Long executefailunit) |
| | | { |
| | | this.executefailunit = executefailunit; |
| | | } |
| | | |
| | | public Long getExecutefailunit() |
| | | { |
| | | return executefailunit; |
| | | } |
| | | public void setExecutetemplate(Long executetemplate) |
| | | { |
| | | this.executetemplate = executetemplate; |
| | | } |
| | | |
| | | public Long getExecutetemplate() |
| | | { |
| | | return executetemplate; |
| | | } |
| | | public void setExecutetemplateextra(Long executetemplateextra) |
| | | { |
| | | this.executetemplateextra = executetemplateextra; |
| | | } |
| | | |
| | | public Long getExecutetemplateextra() |
| | | { |
| | | return executetemplateextra; |
| | | } |
| | | public void setExecuteorder(Long executeorder) |
| | | { |
| | | this.executeorder = executeorder; |
| | | } |
| | | |
| | | public Long getExecuteorder() |
| | | { |
| | | return executeorder; |
| | | } |
| | | public void setExecutevoicetype(String executevoicetype) |
| | | { |
| | | this.executevoicetype = executevoicetype; |
| | | } |
| | | |
| | | public String getExecutevoicetype() |
| | | { |
| | | return executevoicetype; |
| | | } |
| | | public void setExecutevoicecontent(String executevoicecontent) |
| | | { |
| | | this.executevoicecontent = executevoicecontent; |
| | | } |
| | | |
| | | public String getExecutevoicecontent() |
| | | { |
| | | return executevoicecontent; |
| | | } |
| | | 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("id", getId()) |
| | | .append("schemeid", getSchemeid()) |
| | | .append("triggersceneid", getTriggersceneid()) |
| | | .append("triggerruleid", getTriggerruleid()) |
| | | .append("taskconfigid", getTaskconfigid()) |
| | | .append("executetype", getExecutetype()) |
| | | .append("executefailtype", getExecutefailtype()) |
| | | .append("executefailvalue", getExecutefailvalue()) |
| | | .append("executefailunit", getExecutefailunit()) |
| | | .append("executetemplate", getExecutetemplate()) |
| | | .append("executetemplateextra", getExecutetemplateextra()) |
| | | .append("executeorder", getExecuteorder()) |
| | | .append("executevoicetype", getExecutevoicetype()) |
| | | .append("executevoicecontent", getExecutevoicecontent()) |
| | | .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; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦åæ¡ä»¶è§å对象 scheme_triggerrule |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeTriggerrule extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æ¡ä»¶ç±»å;1.æ£è
屿§ 2.è¯çä¿¡æ¯ 3.çæµå¼ 4.ä»»å¡ä¿¡æ¯ */ |
| | | @Excel(name = " æ¡ä»¶ç±»å;1.æ£è
屿§ 2.è¯çä¿¡æ¯ 3.çæµå¼ 4.ä»»å¡ä¿¡æ¯ ") |
| | | private Long conditionstype; |
| | | |
| | | /** 䏿 */ |
| | | @Excel(name = " 䏿 ") |
| | | private Long orand; |
| | | |
| | | /** è§åæ¡ä»¶ */ |
| | | @Excel(name = " è§åæ¡ä»¶ ") |
| | | private String ruleconditions; |
| | | |
| | | /** ç¶æ¡ä»¶ */ |
| | | @Excel(name = " ç¶æ¡ä»¶ ") |
| | | private String parentresultconditionsid; |
| | | |
| | | /** æºæ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; |
| | | |
| | | /** æ¹æ¡ID */ |
| | | @Excel(name = " æ¹æ¡ID ") |
| | | private Long schemeid; |
| | | |
| | | /** 触ååºæ¯ID */ |
| | | @Excel(name = " 触ååºæ¯ID ") |
| | | private Long triggersceneid; |
| | | |
| | | /** */ |
| | | @Excel(name = " ") |
| | | private Long conditionstypesecord; |
| | | |
| | | /** ä¸çº§æ¡ä»¶ç±»å */ |
| | | @Excel(name = " ä¸çº§æ¡ä»¶ç±»å ") |
| | | private String conditionstypethree; |
| | | |
| | | /** éªè¯è§å;æ°å¼ç´æ¥è¾å
¥ï¼èå´ç¨æ¨ªæ ï¼1-100ï¼ï¼å¤ééå·éå¼ï¼1,2,3ï¼ï¼ç¸åºç±»åçä¸»é® */ |
| | | @Excel(name = " éªè¯è§å;æ°å¼ç´æ¥è¾å
¥ï¼èå´ç¨æ¨ªæ ", readConverterExp = "1=-100") |
| | | private String verifyrule; |
| | | |
| | | /** é¢å¤è§åæ¡ä»¶ */ |
| | | @Excel(name = " é¢å¤è§åæ¡ä»¶ ") |
| | | private String extraruleconditions; |
| | | |
| | | /** é¢å¤éªè¯è§å */ |
| | | @Excel(name = " é¢å¤éªè¯è§å ") |
| | | private String extraverifyrule; |
| | | |
| | | /** åç»ç¼å· */ |
| | | @Excel(name = " åç»ç¼å· ") |
| | | private Long number; |
| | | |
| | | /** ç¶çº§åç» */ |
| | | @Excel(name = " ç¶çº§åç» ") |
| | | private Long groupnumber; |
| | | |
| | | /** ç¶ä¸æ */ |
| | | @Excel(name = " ç¶ä¸æ ") |
| | | private Long grouporand; |
| | | |
| | | /** æ¯å¦å¿
å¡« */ |
| | | @Excel(name = " æ¯å¦å¿
å¡« ") |
| | | private Long isrequired; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setConditionstype(Long conditionstype) |
| | | { |
| | | this.conditionstype = conditionstype; |
| | | } |
| | | |
| | | public Long getConditionstype() |
| | | { |
| | | return conditionstype; |
| | | } |
| | | public void setOrand(Long orand) |
| | | { |
| | | this.orand = orand; |
| | | } |
| | | |
| | | public Long getOrand() |
| | | { |
| | | return orand; |
| | | } |
| | | public void setRuleconditions(String ruleconditions) |
| | | { |
| | | this.ruleconditions = ruleconditions; |
| | | } |
| | | |
| | | public String getRuleconditions() |
| | | { |
| | | return ruleconditions; |
| | | } |
| | | public void setParentresultconditionsid(String parentresultconditionsid) |
| | | { |
| | | this.parentresultconditionsid = parentresultconditionsid; |
| | | } |
| | | |
| | | public String getParentresultconditionsid() |
| | | { |
| | | return parentresultconditionsid; |
| | | } |
| | | 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 setSchemeid(Long schemeid) |
| | | { |
| | | this.schemeid = schemeid; |
| | | } |
| | | |
| | | public Long getSchemeid() |
| | | { |
| | | return schemeid; |
| | | } |
| | | public void setTriggersceneid(Long triggersceneid) |
| | | { |
| | | this.triggersceneid = triggersceneid; |
| | | } |
| | | |
| | | public Long getTriggersceneid() |
| | | { |
| | | return triggersceneid; |
| | | } |
| | | public void setConditionstypesecord(Long conditionstypesecord) |
| | | { |
| | | this.conditionstypesecord = conditionstypesecord; |
| | | } |
| | | |
| | | public Long getConditionstypesecord() |
| | | { |
| | | return conditionstypesecord; |
| | | } |
| | | public void setConditionstypethree(String conditionstypethree) |
| | | { |
| | | this.conditionstypethree = conditionstypethree; |
| | | } |
| | | |
| | | public String getConditionstypethree() |
| | | { |
| | | return conditionstypethree; |
| | | } |
| | | public void setVerifyrule(String verifyrule) |
| | | { |
| | | this.verifyrule = verifyrule; |
| | | } |
| | | |
| | | public String getVerifyrule() |
| | | { |
| | | return verifyrule; |
| | | } |
| | | public void setExtraruleconditions(String extraruleconditions) |
| | | { |
| | | this.extraruleconditions = extraruleconditions; |
| | | } |
| | | |
| | | public String getExtraruleconditions() |
| | | { |
| | | return extraruleconditions; |
| | | } |
| | | public void setExtraverifyrule(String extraverifyrule) |
| | | { |
| | | this.extraverifyrule = extraverifyrule; |
| | | } |
| | | |
| | | public String getExtraverifyrule() |
| | | { |
| | | return extraverifyrule; |
| | | } |
| | | public void setNumber(Long number) |
| | | { |
| | | this.number = number; |
| | | } |
| | | |
| | | public Long getNumber() |
| | | { |
| | | return number; |
| | | } |
| | | 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 setIsrequired(Long isrequired) |
| | | { |
| | | this.isrequired = isrequired; |
| | | } |
| | | |
| | | public Long getIsrequired() |
| | | { |
| | | return isrequired; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("conditionstype", getConditionstype()) |
| | | .append("orand", getOrand()) |
| | | .append("ruleconditions", getRuleconditions()) |
| | | .append("parentresultconditionsid", getParentresultconditionsid()) |
| | | .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("schemeid", getSchemeid()) |
| | | .append("triggersceneid", getTriggersceneid()) |
| | | .append("conditionstypesecord", getConditionstypesecord()) |
| | | .append("conditionstypethree", getConditionstypethree()) |
| | | .append("verifyrule", getVerifyrule()) |
| | | .append("extraruleconditions", getExtraruleconditions()) |
| | | .append("extraverifyrule", getExtraverifyrule()) |
| | | .append("number", getNumber()) |
| | | .append("groupnumber", getGroupnumber()) |
| | | .append("grouporand", getGrouporand()) |
| | | .append("isrequired", getIsrequired()) |
| | | .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; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦ååºæ¯å¯¹è±¡ scheme_triggerscene |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public class SchemeTriggerscene extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** èªå¢ID */ |
| | | private Long id; |
| | | |
| | | /** æ¹æ¡ID */ |
| | | @Excel(name = " æ¹æ¡ID ") |
| | | private Long schemeid; |
| | | |
| | | /** åºçº¿æ¶é´;1.å å
¥å 2.åºé¢å 3.å°±è¯å 4.å
¥é¢å 5.ææ¯å 6.ææ¯å 7.å¼è¯å 8.æ£éªç³è¯·å 9.æ£éªå®æå 10.æ£æ¥ç³è¯·å 11.æ£æ¥å®æå 12.äºä»¶åçå 13.åºçº¿æ¥æå */ |
| | | @Excel(name = " åºçº¿æ¶é´;1.å å
¥å 2.åºé¢å 3.å°±è¯å 4.å
¥é¢å 5.ææ¯å 6.ææ¯å 7.å¼è¯å 8.æ£éªç³è¯·å 9.æ£éªå®æå 10.æ£æ¥ç³è¯·å 11.æ£æ¥å®æå 12.äºä»¶åçå 13.åºçº¿æ¥æå ") |
| | | private Long baselinetime; |
| | | |
| | | /** è§¦åæ¡ä»¶;0.æ 1.æ */ |
| | | @Excel(name = " è§¦åæ¡ä»¶;0.æ 1.æ ") |
| | | private Long triggerornot; |
| | | |
| | | /** æºæ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; |
| | | |
| | | /** æ¯å¦ä¸ºä¸»è·¯å¾;0.å¦ 1.æ¯ */ |
| | | @Excel(name = " æ¯å¦ä¸ºä¸»è·¯å¾;0.å¦ 1.æ¯ ") |
| | | private Long ismain; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setSchemeid(Long schemeid) |
| | | { |
| | | this.schemeid = schemeid; |
| | | } |
| | | |
| | | public Long getSchemeid() |
| | | { |
| | | return schemeid; |
| | | } |
| | | public void setBaselinetime(Long baselinetime) |
| | | { |
| | | this.baselinetime = baselinetime; |
| | | } |
| | | |
| | | public Long getBaselinetime() |
| | | { |
| | | return baselinetime; |
| | | } |
| | | public void setTriggerornot(Long triggerornot) |
| | | { |
| | | this.triggerornot = triggerornot; |
| | | } |
| | | |
| | | public Long getTriggerornot() |
| | | { |
| | | return triggerornot; |
| | | } |
| | | 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 setIsmain(Long ismain) |
| | | { |
| | | this.ismain = ismain; |
| | | } |
| | | |
| | | public Long getIsmain() |
| | | { |
| | | return ismain; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("schemeid", getSchemeid()) |
| | | .append("baselinetime", getBaselinetime()) |
| | | .append("triggerornot", getTriggerornot()) |
| | | .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("ismain", getIsmain()) |
| | | .toString(); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.PatMedInhosp; |
| | | |
| | | /** |
| | | * æ£è
ä½é¢è®°å½Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface PatMedInhospMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ£è
ä½é¢è®°å½ |
| | | * |
| | | * @param inhospid æ£è
ä½é¢è®°å½ä¸»é® |
| | | * @return æ£è
ä½é¢è®°å½ |
| | | */ |
| | | public PatMedInhosp selectPatMedInhospByInhospid(Long inhospid); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
ä½é¢è®°å½å表 |
| | | * |
| | | * @param patMedInhosp æ£è
ä½é¢è®°å½ |
| | | * @return æ£è
ä½é¢è®°å½éå |
| | | */ |
| | | public List<PatMedInhosp> selectPatMedInhospList(PatMedInhosp patMedInhosp); |
| | | |
| | | /** |
| | | * æ°å¢æ£è
ä½é¢è®°å½ |
| | | * |
| | | * @param patMedInhosp æ£è
ä½é¢è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertPatMedInhosp(PatMedInhosp patMedInhosp); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
ä½é¢è®°å½ |
| | | * |
| | | * @param patMedInhosp æ£è
ä½é¢è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updatePatMedInhosp(PatMedInhosp patMedInhosp); |
| | | |
| | | /** |
| | | * å 餿£è
ä½é¢è®°å½ |
| | | * |
| | | * @param inhospid æ£è
ä½é¢è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedInhospByInhospid(Long inhospid); |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
ä½é¢è®°å½ |
| | | * |
| | | * @param inhospids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedInhospByInhospids(Long[] inhospids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.PatMedOuthosp; |
| | | |
| | | /** |
| | | * æ£è
é¨è¯è®°å½Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface PatMedOuthospMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ£è
é¨è¯è®°å½ |
| | | * |
| | | * @param id æ£è
é¨è¯è®°å½ä¸»é® |
| | | * @return æ£è
é¨è¯è®°å½ |
| | | */ |
| | | public PatMedOuthosp selectPatMedOuthospById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
é¨è¯è®°å½å表 |
| | | * |
| | | * @param patMedOuthosp æ£è
é¨è¯è®°å½ |
| | | * @return æ£è
é¨è¯è®°å½éå |
| | | */ |
| | | public List<PatMedOuthosp> selectPatMedOuthospList(PatMedOuthosp patMedOuthosp); |
| | | |
| | | /** |
| | | * æ°å¢æ£è
é¨è¯è®°å½ |
| | | * |
| | | * @param patMedOuthosp æ£è
é¨è¯è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertPatMedOuthosp(PatMedOuthosp patMedOuthosp); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
é¨è¯è®°å½ |
| | | * |
| | | * @param patMedOuthosp æ£è
é¨è¯è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updatePatMedOuthosp(PatMedOuthosp patMedOuthosp); |
| | | |
| | | /** |
| | | * å 餿£è
é¨è¯è®°å½ |
| | | * |
| | | * @param id æ£è
é¨è¯è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedOuthospById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
é¨è¯è®°å½ |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedOuthospByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.PatMedPhysical; |
| | | |
| | | /** |
| | | * æ£è
使£è®°å½Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface PatMedPhysicalMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ£è
使£è®°å½ |
| | | * |
| | | * @param id æ£è
使£è®°å½ä¸»é® |
| | | * @return æ£è
使£è®°å½ |
| | | */ |
| | | public PatMedPhysical selectPatMedPhysicalById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
使£è®°å½å表 |
| | | * |
| | | * @param patMedPhysical æ£è
使£è®°å½ |
| | | * @return æ£è
使£è®°å½éå |
| | | */ |
| | | public List<PatMedPhysical> selectPatMedPhysicalList(PatMedPhysical patMedPhysical); |
| | | |
| | | /** |
| | | * æ°å¢æ£è
使£è®°å½ |
| | | * |
| | | * @param patMedPhysical æ£è
使£è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertPatMedPhysical(PatMedPhysical patMedPhysical); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
使£è®°å½ |
| | | * |
| | | * @param patMedPhysical æ£è
使£è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updatePatMedPhysical(PatMedPhysical patMedPhysical); |
| | | |
| | | /** |
| | | * å 餿£è
使£è®°å½ |
| | | * |
| | | * @param id æ£è
使£è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedPhysicalById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
使£è®°å½ |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedPhysicalByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.smartor.domain.SchemeAutofinshrule; |
| | | |
| | | /** |
| | | * æ¹æ¡ç»æ¡è§åMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeAutofinshruleMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param id æ¹æ¡ç»æ¡è§åä¸»é® |
| | | * @return æ¹æ¡ç»æ¡è§å |
| | | */ |
| | | public SchemeAutofinshrule selectSchemeAutofinshruleById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ç»æ¡è§åå表 |
| | | * |
| | | * @param schemeAutofinshrule æ¹æ¡ç»æ¡è§å |
| | | * @return æ¹æ¡ç»æ¡è§åéå |
| | | */ |
| | | public List<SchemeAutofinshrule> selectSchemeAutofinshruleList(SchemeAutofinshrule schemeAutofinshrule); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param schemeAutofinshrule æ¹æ¡ç»æ¡è§å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeAutofinshrule(SchemeAutofinshrule schemeAutofinshrule); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param schemeAutofinshrule æ¹æ¡ç»æ¡è§å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeAutofinshrule(SchemeAutofinshrule schemeAutofinshrule); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param id æ¹æ¡ç»æ¡è§åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeAutofinshruleById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeAutofinshruleByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeCategory; |
| | | |
| | | /** |
| | | * æ¹æ¡åç±»Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeCategoryMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡åç±» |
| | | * |
| | | * @param id æ¹æ¡åç±»ä¸»é® |
| | | * @return æ¹æ¡åç±» |
| | | */ |
| | | public SchemeCategory selectSchemeCategoryById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡åç±»å表 |
| | | * |
| | | * @param schemeCategory æ¹æ¡åç±» |
| | | * @return æ¹æ¡åç±»éå |
| | | */ |
| | | public List<SchemeCategory> selectSchemeCategoryList(SchemeCategory schemeCategory); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡åç±» |
| | | * |
| | | * @param schemeCategory æ¹æ¡åç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeCategory(SchemeCategory schemeCategory); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡åç±» |
| | | * |
| | | * @param schemeCategory æ¹æ¡åç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeCategory(SchemeCategory schemeCategory); |
| | | |
| | | /** |
| | | * å 餿¹æ¡åç±» |
| | | * |
| | | * @param id æ¹æ¡åç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeCategoryById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡åç±» |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeCategoryByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeLocallibrary; |
| | | |
| | | /** |
| | | * æå¡æ¹æ¡åºMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeLocallibraryMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æå¡æ¹æ¡åº |
| | | * |
| | | * @param id æå¡æ¹æ¡åºä¸»é® |
| | | * @return æå¡æ¹æ¡åº |
| | | */ |
| | | public SchemeLocallibrary selectSchemeLocallibraryById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æå¡æ¹æ¡åºå表 |
| | | * |
| | | * @param schemeLocallibrary æå¡æ¹æ¡åº |
| | | * @return æå¡æ¹æ¡åºéå |
| | | */ |
| | | public List<SchemeLocallibrary> selectSchemeLocallibraryList(SchemeLocallibrary schemeLocallibrary); |
| | | |
| | | /** |
| | | * æ°å¢æå¡æ¹æ¡åº |
| | | * |
| | | * @param schemeLocallibrary æå¡æ¹æ¡åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeLocallibrary(SchemeLocallibrary schemeLocallibrary); |
| | | |
| | | /** |
| | | * ä¿®æ¹æå¡æ¹æ¡åº |
| | | * |
| | | * @param schemeLocallibrary æå¡æ¹æ¡åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeLocallibrary(SchemeLocallibrary schemeLocallibrary); |
| | | |
| | | /** |
| | | * å 餿塿¹æ¡åº |
| | | * |
| | | * @param id æå¡æ¹æ¡åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeLocallibraryById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿塿¹æ¡åº |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeLocallibraryByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemePlan; |
| | | |
| | | /** |
| | | * 管ç计åMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemePlanMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢ç®¡ç计å |
| | | * |
| | | * @param id 管ç计åä¸»é® |
| | | * @return 管ç计å |
| | | */ |
| | | public SchemePlan selectSchemePlanById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢ç®¡ç计åå表 |
| | | * |
| | | * @param schemePlan 管ç计å |
| | | * @return 管ç计åéå |
| | | */ |
| | | public List<SchemePlan> selectSchemePlanList(SchemePlan schemePlan); |
| | | |
| | | /** |
| | | * æ°å¢ç®¡ç计å |
| | | * |
| | | * @param schemePlan 管ç计å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemePlan(SchemePlan schemePlan); |
| | | |
| | | /** |
| | | * ä¿®æ¹ç®¡ç计å |
| | | * |
| | | * @param schemePlan 管ç计å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemePlan(SchemePlan schemePlan); |
| | | |
| | | /** |
| | | * å é¤ç®¡ç计å |
| | | * |
| | | * @param id 管ç计åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemePlanById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå é¤ç®¡ç计å |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemePlanByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTask; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeTaskMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡ |
| | | */ |
| | | public SchemeTask selectSchemeTaskById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å表 |
| | | * |
| | | * @param schemeTask æ¹æ¡ä»»å¡ |
| | | * @return æ¹æ¡ä»»å¡éå |
| | | */ |
| | | public List<SchemeTask> selectSchemeTaskList(SchemeTask schemeTask); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡ |
| | | * |
| | | * @param schemeTask æ¹æ¡ä»»å¡ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTask(SchemeTask schemeTask); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡ |
| | | * |
| | | * @param schemeTask æ¹æ¡ä»»å¡ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTask(SchemeTask schemeTask); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡ |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTaskconfig; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡é
ç½®Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeTaskconfigMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡é
ç½®ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡é
ç½® |
| | | */ |
| | | public SchemeTaskconfig selectSchemeTaskconfigById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡é
ç½®å表 |
| | | * |
| | | * @param schemeTaskconfig æ¹æ¡ä»»å¡é
ç½® |
| | | * @return æ¹æ¡ä»»å¡é
ç½®éå |
| | | */ |
| | | public List<SchemeTaskconfig> selectSchemeTaskconfigList(SchemeTaskconfig schemeTaskconfig); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param schemeTaskconfig æ¹æ¡ä»»å¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTaskconfig(SchemeTaskconfig schemeTaskconfig); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param schemeTaskconfig æ¹æ¡ä»»å¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTaskconfig(SchemeTaskconfig schemeTaskconfig); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskconfigById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskconfigByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTaskrecordCalldetail; |
| | | |
| | | /** |
| | | * æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeTaskrecordCalldetailMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param id æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
ä¸»é® |
| | | * @return æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | */ |
| | | public SchemeTaskrecordCalldetail selectSchemeTaskrecordCalldetailById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
å表 |
| | | * |
| | | * @param schemeTaskrecordCalldetail æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * @return æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
éå |
| | | */ |
| | | public List<SchemeTaskrecordCalldetail> selectSchemeTaskrecordCalldetailList(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param schemeTaskrecordCalldetail æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTaskrecordCalldetail(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param schemeTaskrecordCalldetail æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTaskrecordCalldetail(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail); |
| | | |
| | | /** |
| | | * å 餿¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param id æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrecordCalldetailById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrecordCalldetailByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTaskrecord; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡å¤çè®°å½Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeTaskrecordMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡å¤çè®°å½ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | */ |
| | | public SchemeTaskrecord selectSchemeTaskrecordById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å¤çè®°å½å表 |
| | | * |
| | | * @param schemeTaskrecord æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * @return æ¹æ¡ä»»å¡å¤çè®°å½éå |
| | | */ |
| | | public List<SchemeTaskrecord> selectSchemeTaskrecordList(SchemeTaskrecord schemeTaskrecord); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param schemeTaskrecord æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTaskrecord(SchemeTaskrecord schemeTaskrecord); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param schemeTaskrecord æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTaskrecord(SchemeTaskrecord schemeTaskrecord); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡å¤çè®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrecordById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrecordByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTaskrepeatconfig; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡éåé
ç½®Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeTaskrepeatconfigMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡éåé
ç½®ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡éåé
ç½® |
| | | */ |
| | | public SchemeTaskrepeatconfig selectSchemeTaskrepeatconfigById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡éåé
ç½®å表 |
| | | * |
| | | * @param schemeTaskrepeatconfig æ¹æ¡ä»»å¡éåé
ç½® |
| | | * @return æ¹æ¡ä»»å¡éåé
ç½®éå |
| | | */ |
| | | public List<SchemeTaskrepeatconfig> selectSchemeTaskrepeatconfigList(SchemeTaskrepeatconfig schemeTaskrepeatconfig); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param schemeTaskrepeatconfig æ¹æ¡ä»»å¡éåé
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTaskrepeatconfig(SchemeTaskrepeatconfig schemeTaskrepeatconfig); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param schemeTaskrepeatconfig æ¹æ¡ä»»å¡éåé
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTaskrepeatconfig(SchemeTaskrepeatconfig schemeTaskrepeatconfig); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡éåé
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrepeatconfigById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrepeatconfigByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTriggerrule; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦åæ¡ä»¶è§åMapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeTriggerruleMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param id æ¹æ¡è§¦åæ¡ä»¶è§åä¸»é® |
| | | * @return æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | */ |
| | | public SchemeTriggerrule selectSchemeTriggerruleById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦åæ¡ä»¶è§åå表 |
| | | * |
| | | * @param schemeTriggerrule æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * @return æ¹æ¡è§¦åæ¡ä»¶è§åéå |
| | | */ |
| | | public List<SchemeTriggerrule> selectSchemeTriggerruleList(SchemeTriggerrule schemeTriggerrule); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param schemeTriggerrule æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTriggerrule(SchemeTriggerrule schemeTriggerrule); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param schemeTriggerrule æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTriggerrule(SchemeTriggerrule schemeTriggerrule); |
| | | |
| | | /** |
| | | * å 餿¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param id æ¹æ¡è§¦åæ¡ä»¶è§åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTriggerruleById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTriggerruleByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTriggerscene; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦ååºæ¯Mapperæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface SchemeTriggersceneMapper |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param id æ¹æ¡è§¦ååºæ¯ä¸»é® |
| | | * @return æ¹æ¡è§¦ååºæ¯ |
| | | */ |
| | | public SchemeTriggerscene selectSchemeTriggersceneById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦ååºæ¯å表 |
| | | * |
| | | * @param schemeTriggerscene æ¹æ¡è§¦ååºæ¯ |
| | | * @return æ¹æ¡è§¦ååºæ¯éå |
| | | */ |
| | | public List<SchemeTriggerscene> selectSchemeTriggersceneList(SchemeTriggerscene schemeTriggerscene); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param schemeTriggerscene æ¹æ¡è§¦ååºæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTriggerscene(SchemeTriggerscene schemeTriggerscene); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param schemeTriggerscene æ¹æ¡è§¦ååºæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTriggerscene(SchemeTriggerscene schemeTriggerscene); |
| | | |
| | | /** |
| | | * å 餿¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param id æ¹æ¡è§¦ååºæ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTriggersceneById(Long id); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param ids éè¦å é¤çæ°æ®ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTriggersceneByIds(Long[] ids); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.PatMedInhosp; |
| | | |
| | | /** |
| | | * æ£è
ä½é¢è®°å½Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface IPatMedInhospService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ£è
ä½é¢è®°å½ |
| | | * |
| | | * @param inhospid æ£è
ä½é¢è®°å½ä¸»é® |
| | | * @return æ£è
ä½é¢è®°å½ |
| | | */ |
| | | public PatMedInhosp selectPatMedInhospByInhospid(Long inhospid); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
ä½é¢è®°å½å表 |
| | | * |
| | | * @param patMedInhosp æ£è
ä½é¢è®°å½ |
| | | * @return æ£è
ä½é¢è®°å½éå |
| | | */ |
| | | public List<PatMedInhosp> selectPatMedInhospList(PatMedInhosp patMedInhosp); |
| | | |
| | | /** |
| | | * æ°å¢æ£è
ä½é¢è®°å½ |
| | | * |
| | | * @param patMedInhosp æ£è
ä½é¢è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertPatMedInhosp(PatMedInhosp patMedInhosp); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
ä½é¢è®°å½ |
| | | * |
| | | * @param patMedInhosp æ£è
ä½é¢è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updatePatMedInhosp(PatMedInhosp patMedInhosp); |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
ä½é¢è®°å½ |
| | | * |
| | | * @param inhospids éè¦å é¤çæ£è
ä½é¢è®°å½ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedInhospByInhospids(Long[] inhospids); |
| | | |
| | | /** |
| | | * å 餿£è
ä½é¢è®°å½ä¿¡æ¯ |
| | | * |
| | | * @param inhospid æ£è
ä½é¢è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedInhospByInhospid(Long inhospid); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.PatMedOuthosp; |
| | | |
| | | /** |
| | | * æ£è
é¨è¯è®°å½Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface IPatMedOuthospService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ£è
é¨è¯è®°å½ |
| | | * |
| | | * @param id æ£è
é¨è¯è®°å½ä¸»é® |
| | | * @return æ£è
é¨è¯è®°å½ |
| | | */ |
| | | public PatMedOuthosp selectPatMedOuthospById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
é¨è¯è®°å½å表 |
| | | * |
| | | * @param patMedOuthosp æ£è
é¨è¯è®°å½ |
| | | * @return æ£è
é¨è¯è®°å½éå |
| | | */ |
| | | public List<PatMedOuthosp> selectPatMedOuthospList(PatMedOuthosp patMedOuthosp); |
| | | |
| | | /** |
| | | * æ°å¢æ£è
é¨è¯è®°å½ |
| | | * |
| | | * @param patMedOuthosp æ£è
é¨è¯è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertPatMedOuthosp(PatMedOuthosp patMedOuthosp); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
é¨è¯è®°å½ |
| | | * |
| | | * @param patMedOuthosp æ£è
é¨è¯è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updatePatMedOuthosp(PatMedOuthosp patMedOuthosp); |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
é¨è¯è®°å½ |
| | | * |
| | | * @param ids éè¦å é¤çæ£è
é¨è¯è®°å½ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedOuthospByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿£è
é¨è¯è®°å½ä¿¡æ¯ |
| | | * |
| | | * @param id æ£è
é¨è¯è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedOuthospById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.PatMedPhysical; |
| | | |
| | | /** |
| | | * æ£è
使£è®°å½Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface IPatMedPhysicalService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ£è
使£è®°å½ |
| | | * |
| | | * @param id æ£è
使£è®°å½ä¸»é® |
| | | * @return æ£è
使£è®°å½ |
| | | */ |
| | | public PatMedPhysical selectPatMedPhysicalById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
使£è®°å½å表 |
| | | * |
| | | * @param patMedPhysical æ£è
使£è®°å½ |
| | | * @return æ£è
使£è®°å½éå |
| | | */ |
| | | public List<PatMedPhysical> selectPatMedPhysicalList(PatMedPhysical patMedPhysical); |
| | | |
| | | /** |
| | | * æ°å¢æ£è
使£è®°å½ |
| | | * |
| | | * @param patMedPhysical æ£è
使£è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertPatMedPhysical(PatMedPhysical patMedPhysical); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
使£è®°å½ |
| | | * |
| | | * @param patMedPhysical æ£è
使£è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updatePatMedPhysical(PatMedPhysical patMedPhysical); |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
使£è®°å½ |
| | | * |
| | | * @param ids éè¦å é¤çæ£è
使£è®°å½ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedPhysicalByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿£è
使£è®°å½ä¿¡æ¯ |
| | | * |
| | | * @param id æ£è
使£è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deletePatMedPhysicalById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.ruoyi.smartor.domain.SchemeAutofinshrule; |
| | | |
| | | /** |
| | | * æ¹æ¡ç»æ¡è§åServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeAutofinshruleService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param id æ¹æ¡ç»æ¡è§åä¸»é® |
| | | * @return æ¹æ¡ç»æ¡è§å |
| | | */ |
| | | public SchemeAutofinshrule selectSchemeAutofinshruleById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ç»æ¡è§åå表 |
| | | * |
| | | * @param schemeAutofinshrule æ¹æ¡ç»æ¡è§å |
| | | * @return æ¹æ¡ç»æ¡è§åéå |
| | | */ |
| | | public List<SchemeAutofinshrule> selectSchemeAutofinshruleList(SchemeAutofinshrule schemeAutofinshrule); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param schemeAutofinshrule æ¹æ¡ç»æ¡è§å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeAutofinshrule(SchemeAutofinshrule schemeAutofinshrule); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param schemeAutofinshrule æ¹æ¡ç»æ¡è§å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeAutofinshrule(SchemeAutofinshrule schemeAutofinshrule); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ç»æ¡è§å主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeAutofinshruleByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ç»æ¡è§åä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ç»æ¡è§åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeAutofinshruleById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeCategory; |
| | | |
| | | /** |
| | | * æ¹æ¡åç±»Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeCategoryService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡åç±» |
| | | * |
| | | * @param id æ¹æ¡åç±»ä¸»é® |
| | | * @return æ¹æ¡åç±» |
| | | */ |
| | | public SchemeCategory selectSchemeCategoryById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡åç±»å表 |
| | | * |
| | | * @param schemeCategory æ¹æ¡åç±» |
| | | * @return æ¹æ¡åç±»éå |
| | | */ |
| | | public List<SchemeCategory> selectSchemeCategoryList(SchemeCategory schemeCategory); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡åç±» |
| | | * |
| | | * @param schemeCategory æ¹æ¡åç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeCategory(SchemeCategory schemeCategory); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡åç±» |
| | | * |
| | | * @param schemeCategory æ¹æ¡åç±» |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeCategory(SchemeCategory schemeCategory); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡åç±» |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡å类主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeCategoryByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿¹æ¡åç±»ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡åç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeCategoryById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeLocallibrary; |
| | | |
| | | /** |
| | | * æå¡æ¹æ¡åºServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeLocallibraryService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æå¡æ¹æ¡åº |
| | | * |
| | | * @param id æå¡æ¹æ¡åºä¸»é® |
| | | * @return æå¡æ¹æ¡åº |
| | | */ |
| | | public SchemeLocallibrary selectSchemeLocallibraryById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æå¡æ¹æ¡åºå表 |
| | | * |
| | | * @param schemeLocallibrary æå¡æ¹æ¡åº |
| | | * @return æå¡æ¹æ¡åºéå |
| | | */ |
| | | public List<SchemeLocallibrary> selectSchemeLocallibraryList(SchemeLocallibrary schemeLocallibrary); |
| | | |
| | | /** |
| | | * æ°å¢æå¡æ¹æ¡åº |
| | | * |
| | | * @param schemeLocallibrary æå¡æ¹æ¡åº |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeLocallibrary(SchemeLocallibrary schemeLocallibrary); |
| | | |
| | | /** |
| | | * ä¿®æ¹æå¡æ¹æ¡åº |
| | | * |
| | | * @param schemeLocallibrary æå¡æ¹æ¡åº |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeLocallibrary(SchemeLocallibrary schemeLocallibrary); |
| | | |
| | | /** |
| | | * æ¹éå 餿塿¹æ¡åº |
| | | * |
| | | * @param ids éè¦å é¤çæå¡æ¹æ¡åºä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeLocallibraryByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿塿¹æ¡åºä¿¡æ¯ |
| | | * |
| | | * @param id æå¡æ¹æ¡åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeLocallibraryById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemePlan; |
| | | |
| | | /** |
| | | * 管ç计åServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemePlanService |
| | | { |
| | | /** |
| | | * æ¥è¯¢ç®¡ç计å |
| | | * |
| | | * @param id 管ç计åä¸»é® |
| | | * @return 管ç计å |
| | | */ |
| | | public SchemePlan selectSchemePlanById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢ç®¡ç计åå表 |
| | | * |
| | | * @param schemePlan 管ç计å |
| | | * @return 管ç计åéå |
| | | */ |
| | | public List<SchemePlan> selectSchemePlanList(SchemePlan schemePlan); |
| | | |
| | | /** |
| | | * æ°å¢ç®¡ç计å |
| | | * |
| | | * @param schemePlan 管ç计å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemePlan(SchemePlan schemePlan); |
| | | |
| | | /** |
| | | * ä¿®æ¹ç®¡ç计å |
| | | * |
| | | * @param schemePlan 管ç计å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemePlan(SchemePlan schemePlan); |
| | | |
| | | /** |
| | | * æ¹éå é¤ç®¡ç计å |
| | | * |
| | | * @param ids éè¦å é¤ç管ç计å主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemePlanByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å é¤ç®¡ç计åä¿¡æ¯ |
| | | * |
| | | * @param id 管ç计åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemePlanById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTask; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeTaskService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡ |
| | | */ |
| | | public SchemeTask selectSchemeTaskById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å表 |
| | | * |
| | | * @param schemeTask æ¹æ¡ä»»å¡ |
| | | * @return æ¹æ¡ä»»å¡éå |
| | | */ |
| | | public List<SchemeTask> selectSchemeTaskList(SchemeTask schemeTask); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡ |
| | | * |
| | | * @param schemeTask æ¹æ¡ä»»å¡ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTask(SchemeTask schemeTask); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡ |
| | | * |
| | | * @param schemeTask æ¹æ¡ä»»å¡ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTask(SchemeTask schemeTask); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡ |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ä»»å¡ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTaskconfig; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡é
ç½®Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeTaskconfigService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡é
ç½®ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡é
ç½® |
| | | */ |
| | | public SchemeTaskconfig selectSchemeTaskconfigById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡é
ç½®å表 |
| | | * |
| | | * @param schemeTaskconfig æ¹æ¡ä»»å¡é
ç½® |
| | | * @return æ¹æ¡ä»»å¡é
ç½®éå |
| | | */ |
| | | public List<SchemeTaskconfig> selectSchemeTaskconfigList(SchemeTaskconfig schemeTaskconfig); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param schemeTaskconfig æ¹æ¡ä»»å¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTaskconfig(SchemeTaskconfig schemeTaskconfig); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param schemeTaskconfig æ¹æ¡ä»»å¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTaskconfig(SchemeTaskconfig schemeTaskconfig); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ä»»å¡é
置主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskconfigByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡é
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskconfigById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTaskrecordCalldetail; |
| | | |
| | | /** |
| | | * æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeTaskrecordCalldetailService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param id æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
ä¸»é® |
| | | * @return æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | */ |
| | | public SchemeTaskrecordCalldetail selectSchemeTaskrecordCalldetailById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
å表 |
| | | * |
| | | * @param schemeTaskrecordCalldetail æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * @return æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
éå |
| | | */ |
| | | public List<SchemeTaskrecordCalldetail> selectSchemeTaskrecordCalldetailList(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param schemeTaskrecordCalldetail æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTaskrecordCalldetail(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param schemeTaskrecordCalldetail æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTaskrecordCalldetail(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrecordCalldetailByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿¹æ¡AIå¤å¼ä»»å¡è¯¦æ
ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrecordCalldetailById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTaskrecord; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡å¤çè®°å½Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeTaskrecordService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡å¤çè®°å½ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | */ |
| | | public SchemeTaskrecord selectSchemeTaskrecordById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å¤çè®°å½å表 |
| | | * |
| | | * @param schemeTaskrecord æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * @return æ¹æ¡ä»»å¡å¤çè®°å½éå |
| | | */ |
| | | public List<SchemeTaskrecord> selectSchemeTaskrecordList(SchemeTaskrecord schemeTaskrecord); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param schemeTaskrecord æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTaskrecord(SchemeTaskrecord schemeTaskrecord); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param schemeTaskrecord æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTaskrecord(SchemeTaskrecord schemeTaskrecord); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ä»»å¡å¤çè®°å½ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrecordByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡å¤çè®°å½ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡å¤çè®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrecordById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTaskrepeatconfig; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡éåé
ç½®Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeTaskrepeatconfigService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡éåé
ç½®ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡éåé
ç½® |
| | | */ |
| | | public SchemeTaskrepeatconfig selectSchemeTaskrepeatconfigById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡éåé
ç½®å表 |
| | | * |
| | | * @param schemeTaskrepeatconfig æ¹æ¡ä»»å¡éåé
ç½® |
| | | * @return æ¹æ¡ä»»å¡éåé
ç½®éå |
| | | */ |
| | | public List<SchemeTaskrepeatconfig> selectSchemeTaskrepeatconfigList(SchemeTaskrepeatconfig schemeTaskrepeatconfig); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param schemeTaskrepeatconfig æ¹æ¡ä»»å¡éåé
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTaskrepeatconfig(SchemeTaskrepeatconfig schemeTaskrepeatconfig); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param schemeTaskrepeatconfig æ¹æ¡ä»»å¡éåé
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTaskrepeatconfig(SchemeTaskrepeatconfig schemeTaskrepeatconfig); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ä»»å¡éåé
置主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrepeatconfigByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡éåé
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡éåé
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTaskrepeatconfigById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTriggerrule; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦åæ¡ä»¶è§åServiceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeTriggerruleService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param id æ¹æ¡è§¦åæ¡ä»¶è§åä¸»é® |
| | | * @return æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | */ |
| | | public SchemeTriggerrule selectSchemeTriggerruleById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦åæ¡ä»¶è§åå表 |
| | | * |
| | | * @param schemeTriggerrule æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * @return æ¹æ¡è§¦åæ¡ä»¶è§åéå |
| | | */ |
| | | public List<SchemeTriggerrule> selectSchemeTriggerruleList(SchemeTriggerrule schemeTriggerrule); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param schemeTriggerrule æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTriggerrule(SchemeTriggerrule schemeTriggerrule); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param schemeTriggerrule æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTriggerrule(SchemeTriggerrule schemeTriggerrule); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡è§¦åæ¡ä»¶è§å主é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTriggerruleByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿¹æ¡è§¦åæ¡ä»¶è§åä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡è§¦åæ¡ä»¶è§åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTriggerruleById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | import com.smartor.domain.SchemeTriggerscene; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦ååºæ¯Serviceæ¥å£ |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | public interface ISchemeTriggersceneService |
| | | { |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param id æ¹æ¡è§¦ååºæ¯ä¸»é® |
| | | * @return æ¹æ¡è§¦ååºæ¯ |
| | | */ |
| | | public SchemeTriggerscene selectSchemeTriggersceneById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦ååºæ¯å表 |
| | | * |
| | | * @param schemeTriggerscene æ¹æ¡è§¦ååºæ¯ |
| | | * @return æ¹æ¡è§¦ååºæ¯éå |
| | | */ |
| | | public List<SchemeTriggerscene> selectSchemeTriggersceneList(SchemeTriggerscene schemeTriggerscene); |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param schemeTriggerscene æ¹æ¡è§¦ååºæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int insertSchemeTriggerscene(SchemeTriggerscene schemeTriggerscene); |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param schemeTriggerscene æ¹æ¡è§¦ååºæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | public int updateSchemeTriggerscene(SchemeTriggerscene schemeTriggerscene); |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡è§¦ååºæ¯ä¸»é®éå |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTriggersceneByIds(Long[] ids); |
| | | |
| | | /** |
| | | * å 餿¹æ¡è§¦ååºæ¯ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡è§¦ååºæ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | public int deleteSchemeTriggersceneById(Long id); |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.PatMedInhospMapper; |
| | | import com.smartor.domain.PatMedInhosp; |
| | | import com.smartor.service.IPatMedInhospService; |
| | | |
| | | /** |
| | | * æ£è
ä½é¢è®°å½Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class PatMedInhospServiceImpl implements IPatMedInhospService |
| | | { |
| | | @Autowired |
| | | private PatMedInhospMapper patMedInhospMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
ä½é¢è®°å½ |
| | | * |
| | | * @param inhospid æ£è
ä½é¢è®°å½ä¸»é® |
| | | * @return æ£è
ä½é¢è®°å½ |
| | | */ |
| | | @Override |
| | | public PatMedInhosp selectPatMedInhospByInhospid(Long inhospid) |
| | | { |
| | | return patMedInhospMapper.selectPatMedInhospByInhospid(inhospid); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
ä½é¢è®°å½å表 |
| | | * |
| | | * @param patMedInhosp æ£è
ä½é¢è®°å½ |
| | | * @return æ£è
ä½é¢è®°å½ |
| | | */ |
| | | @Override |
| | | public List<PatMedInhosp> selectPatMedInhospList(PatMedInhosp patMedInhosp) |
| | | { |
| | | return patMedInhospMapper.selectPatMedInhospList(patMedInhosp); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ£è
ä½é¢è®°å½ |
| | | * |
| | | * @param patMedInhosp æ£è
ä½é¢è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertPatMedInhosp(PatMedInhosp patMedInhosp) |
| | | { |
| | | patMedInhosp.setCreateTime(DateUtils.getNowDate()); |
| | | return patMedInhospMapper.insertPatMedInhosp(patMedInhosp); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
ä½é¢è®°å½ |
| | | * |
| | | * @param patMedInhosp æ£è
ä½é¢è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updatePatMedInhosp(PatMedInhosp patMedInhosp) |
| | | { |
| | | patMedInhosp.setUpdateTime(DateUtils.getNowDate()); |
| | | return patMedInhospMapper.updatePatMedInhosp(patMedInhosp); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
ä½é¢è®°å½ |
| | | * |
| | | * @param inhospids éè¦å é¤çæ£è
ä½é¢è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deletePatMedInhospByInhospids(Long[] inhospids) |
| | | { |
| | | return patMedInhospMapper.deletePatMedInhospByInhospids(inhospids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿£è
ä½é¢è®°å½ä¿¡æ¯ |
| | | * |
| | | * @param inhospid æ£è
ä½é¢è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deletePatMedInhospByInhospid(Long inhospid) |
| | | { |
| | | return patMedInhospMapper.deletePatMedInhospByInhospid(inhospid); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.PatMedOuthospMapper; |
| | | import com.smartor.domain.PatMedOuthosp; |
| | | import com.smartor.service.IPatMedOuthospService; |
| | | |
| | | /** |
| | | * æ£è
é¨è¯è®°å½Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class PatMedOuthospServiceImpl implements IPatMedOuthospService |
| | | { |
| | | @Autowired |
| | | private PatMedOuthospMapper patMedOuthospMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
é¨è¯è®°å½ |
| | | * |
| | | * @param id æ£è
é¨è¯è®°å½ä¸»é® |
| | | * @return æ£è
é¨è¯è®°å½ |
| | | */ |
| | | @Override |
| | | public PatMedOuthosp selectPatMedOuthospById(Long id) |
| | | { |
| | | return patMedOuthospMapper.selectPatMedOuthospById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
é¨è¯è®°å½å表 |
| | | * |
| | | * @param patMedOuthosp æ£è
é¨è¯è®°å½ |
| | | * @return æ£è
é¨è¯è®°å½ |
| | | */ |
| | | @Override |
| | | public List<PatMedOuthosp> selectPatMedOuthospList(PatMedOuthosp patMedOuthosp) |
| | | { |
| | | return patMedOuthospMapper.selectPatMedOuthospList(patMedOuthosp); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ£è
é¨è¯è®°å½ |
| | | * |
| | | * @param patMedOuthosp æ£è
é¨è¯è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertPatMedOuthosp(PatMedOuthosp patMedOuthosp) |
| | | { |
| | | patMedOuthosp.setCreateTime(DateUtils.getNowDate()); |
| | | return patMedOuthospMapper.insertPatMedOuthosp(patMedOuthosp); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
é¨è¯è®°å½ |
| | | * |
| | | * @param patMedOuthosp æ£è
é¨è¯è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updatePatMedOuthosp(PatMedOuthosp patMedOuthosp) |
| | | { |
| | | patMedOuthosp.setUpdateTime(DateUtils.getNowDate()); |
| | | return patMedOuthospMapper.updatePatMedOuthosp(patMedOuthosp); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
é¨è¯è®°å½ |
| | | * |
| | | * @param ids éè¦å é¤çæ£è
é¨è¯è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deletePatMedOuthospByIds(Long[] ids) |
| | | { |
| | | return patMedOuthospMapper.deletePatMedOuthospByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿£è
é¨è¯è®°å½ä¿¡æ¯ |
| | | * |
| | | * @param id æ£è
é¨è¯è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deletePatMedOuthospById(Long id) |
| | | { |
| | | return patMedOuthospMapper.deletePatMedOuthospById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.PatMedPhysicalMapper; |
| | | import com.smartor.domain.PatMedPhysical; |
| | | import com.smartor.service.IPatMedPhysicalService; |
| | | |
| | | /** |
| | | * æ£è
使£è®°å½Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class PatMedPhysicalServiceImpl implements IPatMedPhysicalService |
| | | { |
| | | @Autowired |
| | | private PatMedPhysicalMapper patMedPhysicalMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
使£è®°å½ |
| | | * |
| | | * @param id æ£è
使£è®°å½ä¸»é® |
| | | * @return æ£è
使£è®°å½ |
| | | */ |
| | | @Override |
| | | public PatMedPhysical selectPatMedPhysicalById(Long id) |
| | | { |
| | | return patMedPhysicalMapper.selectPatMedPhysicalById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ£è
使£è®°å½å表 |
| | | * |
| | | * @param patMedPhysical æ£è
使£è®°å½ |
| | | * @return æ£è
使£è®°å½ |
| | | */ |
| | | @Override |
| | | public List<PatMedPhysical> selectPatMedPhysicalList(PatMedPhysical patMedPhysical) |
| | | { |
| | | return patMedPhysicalMapper.selectPatMedPhysicalList(patMedPhysical); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ£è
使£è®°å½ |
| | | * |
| | | * @param patMedPhysical æ£è
使£è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertPatMedPhysical(PatMedPhysical patMedPhysical) |
| | | { |
| | | patMedPhysical.setCreateTime(DateUtils.getNowDate()); |
| | | return patMedPhysicalMapper.insertPatMedPhysical(patMedPhysical); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ£è
使£è®°å½ |
| | | * |
| | | * @param patMedPhysical æ£è
使£è®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updatePatMedPhysical(PatMedPhysical patMedPhysical) |
| | | { |
| | | patMedPhysical.setUpdateTime(DateUtils.getNowDate()); |
| | | return patMedPhysicalMapper.updatePatMedPhysical(patMedPhysical); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿£è
使£è®°å½ |
| | | * |
| | | * @param ids éè¦å é¤çæ£è
使£è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deletePatMedPhysicalByIds(Long[] ids) |
| | | { |
| | | return patMedPhysicalMapper.deletePatMedPhysicalByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿£è
使£è®°å½ä¿¡æ¯ |
| | | * |
| | | * @param id æ£è
使£è®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deletePatMedPhysicalById(Long id) |
| | | { |
| | | return patMedPhysicalMapper.deletePatMedPhysicalById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.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.ruoyi.smartor.mapper.SchemeAutofinshruleMapper; |
| | | import com.ruoyi.smartor.domain.SchemeAutofinshrule; |
| | | import com.ruoyi.smartor.service.ISchemeAutofinshruleService; |
| | | |
| | | /** |
| | | * æ¹æ¡ç»æ¡è§åServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeAutofinshruleServiceImpl implements ISchemeAutofinshruleService |
| | | { |
| | | @Autowired |
| | | private SchemeAutofinshruleMapper schemeAutofinshruleMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param id æ¹æ¡ç»æ¡è§åä¸»é® |
| | | * @return æ¹æ¡ç»æ¡è§å |
| | | */ |
| | | @Override |
| | | public SchemeAutofinshrule selectSchemeAutofinshruleById(Long id) |
| | | { |
| | | return schemeAutofinshruleMapper.selectSchemeAutofinshruleById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ç»æ¡è§åå表 |
| | | * |
| | | * @param schemeAutofinshrule æ¹æ¡ç»æ¡è§å |
| | | * @return æ¹æ¡ç»æ¡è§å |
| | | */ |
| | | @Override |
| | | public List<SchemeAutofinshrule> selectSchemeAutofinshruleList(SchemeAutofinshrule schemeAutofinshrule) |
| | | { |
| | | return schemeAutofinshruleMapper.selectSchemeAutofinshruleList(schemeAutofinshrule); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param schemeAutofinshrule æ¹æ¡ç»æ¡è§å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeAutofinshrule(SchemeAutofinshrule schemeAutofinshrule) |
| | | { |
| | | schemeAutofinshrule.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeAutofinshruleMapper.insertSchemeAutofinshrule(schemeAutofinshrule); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param schemeAutofinshrule æ¹æ¡ç»æ¡è§å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeAutofinshrule(SchemeAutofinshrule schemeAutofinshrule) |
| | | { |
| | | schemeAutofinshrule.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeAutofinshruleMapper.updateSchemeAutofinshrule(schemeAutofinshrule); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ç»æ¡è§å |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ç»æ¡è§åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeAutofinshruleByIds(Long[] ids) |
| | | { |
| | | return schemeAutofinshruleMapper.deleteSchemeAutofinshruleByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ç»æ¡è§åä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ç»æ¡è§åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeAutofinshruleById(Long id) |
| | | { |
| | | return schemeAutofinshruleMapper.deleteSchemeAutofinshruleById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeCategoryMapper; |
| | | import com.smartor.domain.SchemeCategory; |
| | | import com.smartor.service.ISchemeCategoryService; |
| | | |
| | | /** |
| | | * æ¹æ¡åç±»Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeCategoryServiceImpl implements ISchemeCategoryService |
| | | { |
| | | @Autowired |
| | | private SchemeCategoryMapper schemeCategoryMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡åç±» |
| | | * |
| | | * @param id æ¹æ¡åç±»ä¸»é® |
| | | * @return æ¹æ¡åç±» |
| | | */ |
| | | @Override |
| | | public SchemeCategory selectSchemeCategoryById(Long id) |
| | | { |
| | | return schemeCategoryMapper.selectSchemeCategoryById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡åç±»å表 |
| | | * |
| | | * @param schemeCategory æ¹æ¡åç±» |
| | | * @return æ¹æ¡åç±» |
| | | */ |
| | | @Override |
| | | public List<SchemeCategory> selectSchemeCategoryList(SchemeCategory schemeCategory) |
| | | { |
| | | return schemeCategoryMapper.selectSchemeCategoryList(schemeCategory); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡åç±» |
| | | * |
| | | * @param schemeCategory æ¹æ¡åç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeCategory(SchemeCategory schemeCategory) |
| | | { |
| | | schemeCategory.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeCategoryMapper.insertSchemeCategory(schemeCategory); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡åç±» |
| | | * |
| | | * @param schemeCategory æ¹æ¡åç±» |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeCategory(SchemeCategory schemeCategory) |
| | | { |
| | | schemeCategory.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeCategoryMapper.updateSchemeCategory(schemeCategory); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡åç±» |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡åç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeCategoryByIds(Long[] ids) |
| | | { |
| | | return schemeCategoryMapper.deleteSchemeCategoryByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡åç±»ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡åç±»ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeCategoryById(Long id) |
| | | { |
| | | return schemeCategoryMapper.deleteSchemeCategoryById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeLocallibraryMapper; |
| | | import com.smartor.domain.SchemeLocallibrary; |
| | | import com.smartor.service.ISchemeLocallibraryService; |
| | | |
| | | /** |
| | | * æå¡æ¹æ¡åºServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeLocallibraryServiceImpl implements ISchemeLocallibraryService |
| | | { |
| | | @Autowired |
| | | private SchemeLocallibraryMapper schemeLocallibraryMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æå¡æ¹æ¡åº |
| | | * |
| | | * @param id æå¡æ¹æ¡åºä¸»é® |
| | | * @return æå¡æ¹æ¡åº |
| | | */ |
| | | @Override |
| | | public SchemeLocallibrary selectSchemeLocallibraryById(Long id) |
| | | { |
| | | return schemeLocallibraryMapper.selectSchemeLocallibraryById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æå¡æ¹æ¡åºå表 |
| | | * |
| | | * @param schemeLocallibrary æå¡æ¹æ¡åº |
| | | * @return æå¡æ¹æ¡åº |
| | | */ |
| | | @Override |
| | | public List<SchemeLocallibrary> selectSchemeLocallibraryList(SchemeLocallibrary schemeLocallibrary) |
| | | { |
| | | return schemeLocallibraryMapper.selectSchemeLocallibraryList(schemeLocallibrary); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æå¡æ¹æ¡åº |
| | | * |
| | | * @param schemeLocallibrary æå¡æ¹æ¡åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeLocallibrary(SchemeLocallibrary schemeLocallibrary) |
| | | { |
| | | schemeLocallibrary.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeLocallibraryMapper.insertSchemeLocallibrary(schemeLocallibrary); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æå¡æ¹æ¡åº |
| | | * |
| | | * @param schemeLocallibrary æå¡æ¹æ¡åº |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeLocallibrary(SchemeLocallibrary schemeLocallibrary) |
| | | { |
| | | schemeLocallibrary.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeLocallibraryMapper.updateSchemeLocallibrary(schemeLocallibrary); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿塿¹æ¡åº |
| | | * |
| | | * @param ids éè¦å é¤çæå¡æ¹æ¡åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeLocallibraryByIds(Long[] ids) |
| | | { |
| | | return schemeLocallibraryMapper.deleteSchemeLocallibraryByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿塿¹æ¡åºä¿¡æ¯ |
| | | * |
| | | * @param id æå¡æ¹æ¡åºä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeLocallibraryById(Long id) |
| | | { |
| | | return schemeLocallibraryMapper.deleteSchemeLocallibraryById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemePlanMapper; |
| | | import com.smartor.domain.SchemePlan; |
| | | import com.smartor.service.ISchemePlanService; |
| | | |
| | | /** |
| | | * 管ç计åServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemePlanServiceImpl implements ISchemePlanService |
| | | { |
| | | @Autowired |
| | | private SchemePlanMapper schemePlanMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢ç®¡ç计å |
| | | * |
| | | * @param id 管ç计åä¸»é® |
| | | * @return 管ç计å |
| | | */ |
| | | @Override |
| | | public SchemePlan selectSchemePlanById(Long id) |
| | | { |
| | | return schemePlanMapper.selectSchemePlanById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢ç®¡ç计åå表 |
| | | * |
| | | * @param schemePlan 管ç计å |
| | | * @return 管ç计å |
| | | */ |
| | | @Override |
| | | public List<SchemePlan> selectSchemePlanList(SchemePlan schemePlan) |
| | | { |
| | | return schemePlanMapper.selectSchemePlanList(schemePlan); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢ç®¡ç计å |
| | | * |
| | | * @param schemePlan 管ç计å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemePlan(SchemePlan schemePlan) |
| | | { |
| | | schemePlan.setCreateTime(DateUtils.getNowDate()); |
| | | return schemePlanMapper.insertSchemePlan(schemePlan); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹ç®¡ç计å |
| | | * |
| | | * @param schemePlan 管ç计å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemePlan(SchemePlan schemePlan) |
| | | { |
| | | schemePlan.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemePlanMapper.updateSchemePlan(schemePlan); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå é¤ç®¡ç计å |
| | | * |
| | | * @param ids éè¦å é¤ç管ç计åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemePlanByIds(Long[] ids) |
| | | { |
| | | return schemePlanMapper.deleteSchemePlanByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å é¤ç®¡ç计åä¿¡æ¯ |
| | | * |
| | | * @param id 管ç计åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemePlanById(Long id) |
| | | { |
| | | return schemePlanMapper.deleteSchemePlanById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTaskMapper; |
| | | import com.smartor.domain.SchemeTask; |
| | | import com.smartor.service.ISchemeTaskService; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeTaskServiceImpl implements ISchemeTaskService |
| | | { |
| | | @Autowired |
| | | private SchemeTaskMapper schemeTaskMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡ |
| | | */ |
| | | @Override |
| | | public SchemeTask selectSchemeTaskById(Long id) |
| | | { |
| | | return schemeTaskMapper.selectSchemeTaskById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å表 |
| | | * |
| | | * @param schemeTask æ¹æ¡ä»»å¡ |
| | | * @return æ¹æ¡ä»»å¡ |
| | | */ |
| | | @Override |
| | | public List<SchemeTask> selectSchemeTaskList(SchemeTask schemeTask) |
| | | { |
| | | return schemeTaskMapper.selectSchemeTaskList(schemeTask); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡ |
| | | * |
| | | * @param schemeTask æ¹æ¡ä»»å¡ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeTask(SchemeTask schemeTask) |
| | | { |
| | | schemeTask.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeTaskMapper.insertSchemeTask(schemeTask); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡ |
| | | * |
| | | * @param schemeTask æ¹æ¡ä»»å¡ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeTask(SchemeTask schemeTask) |
| | | { |
| | | schemeTask.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeTaskMapper.updateSchemeTask(schemeTask); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡ |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ä»»å¡ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskByIds(Long[] ids) |
| | | { |
| | | return schemeTaskMapper.deleteSchemeTaskByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskById(Long id) |
| | | { |
| | | return schemeTaskMapper.deleteSchemeTaskById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTaskconfigMapper; |
| | | import com.smartor.domain.SchemeTaskconfig; |
| | | import com.smartor.service.ISchemeTaskconfigService; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡é
ç½®Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeTaskconfigServiceImpl implements ISchemeTaskconfigService |
| | | { |
| | | @Autowired |
| | | private SchemeTaskconfigMapper schemeTaskconfigMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡é
ç½®ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡é
ç½® |
| | | */ |
| | | @Override |
| | | public SchemeTaskconfig selectSchemeTaskconfigById(Long id) |
| | | { |
| | | return schemeTaskconfigMapper.selectSchemeTaskconfigById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡é
ç½®å表 |
| | | * |
| | | * @param schemeTaskconfig æ¹æ¡ä»»å¡é
ç½® |
| | | * @return æ¹æ¡ä»»å¡é
ç½® |
| | | */ |
| | | @Override |
| | | public List<SchemeTaskconfig> selectSchemeTaskconfigList(SchemeTaskconfig schemeTaskconfig) |
| | | { |
| | | return schemeTaskconfigMapper.selectSchemeTaskconfigList(schemeTaskconfig); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param schemeTaskconfig æ¹æ¡ä»»å¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeTaskconfig(SchemeTaskconfig schemeTaskconfig) |
| | | { |
| | | schemeTaskconfig.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeTaskconfigMapper.insertSchemeTaskconfig(schemeTaskconfig); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param schemeTaskconfig æ¹æ¡ä»»å¡é
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeTaskconfig(SchemeTaskconfig schemeTaskconfig) |
| | | { |
| | | schemeTaskconfig.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeTaskconfigMapper.updateSchemeTaskconfig(schemeTaskconfig); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡é
ç½® |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ä»»å¡é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskconfigByIds(Long[] ids) |
| | | { |
| | | return schemeTaskconfigMapper.deleteSchemeTaskconfigByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡é
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡é
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskconfigById(Long id) |
| | | { |
| | | return schemeTaskconfigMapper.deleteSchemeTaskconfigById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTaskrecordCalldetailMapper; |
| | | import com.smartor.domain.SchemeTaskrecordCalldetail; |
| | | import com.smartor.service.ISchemeTaskrecordCalldetailService; |
| | | |
| | | /** |
| | | * æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeTaskrecordCalldetailServiceImpl implements ISchemeTaskrecordCalldetailService |
| | | { |
| | | @Autowired |
| | | private SchemeTaskrecordCalldetailMapper schemeTaskrecordCalldetailMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param id æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
ä¸»é® |
| | | * @return æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | */ |
| | | @Override |
| | | public SchemeTaskrecordCalldetail selectSchemeTaskrecordCalldetailById(Long id) |
| | | { |
| | | return schemeTaskrecordCalldetailMapper.selectSchemeTaskrecordCalldetailById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
å表 |
| | | * |
| | | * @param schemeTaskrecordCalldetail æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * @return æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | */ |
| | | @Override |
| | | public List<SchemeTaskrecordCalldetail> selectSchemeTaskrecordCalldetailList(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail) |
| | | { |
| | | return schemeTaskrecordCalldetailMapper.selectSchemeTaskrecordCalldetailList(schemeTaskrecordCalldetail); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param schemeTaskrecordCalldetail æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeTaskrecordCalldetail(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail) |
| | | { |
| | | schemeTaskrecordCalldetail.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeTaskrecordCalldetailMapper.insertSchemeTaskrecordCalldetail(schemeTaskrecordCalldetail); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param schemeTaskrecordCalldetail æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeTaskrecordCalldetail(SchemeTaskrecordCalldetail schemeTaskrecordCalldetail) |
| | | { |
| | | schemeTaskrecordCalldetail.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeTaskrecordCalldetailMapper.updateSchemeTaskrecordCalldetail(schemeTaskrecordCalldetail); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡AIå¤å¼ä»»å¡è¯¦æ
|
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskrecordCalldetailByIds(Long[] ids) |
| | | { |
| | | return schemeTaskrecordCalldetailMapper.deleteSchemeTaskrecordCalldetailByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡AIå¤å¼ä»»å¡è¯¦æ
ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡AIå¤å¼ä»»å¡è¯¦æ
ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskrecordCalldetailById(Long id) |
| | | { |
| | | return schemeTaskrecordCalldetailMapper.deleteSchemeTaskrecordCalldetailById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTaskrecordMapper; |
| | | import com.smartor.domain.SchemeTaskrecord; |
| | | import com.smartor.service.ISchemeTaskrecordService; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡å¤çè®°å½Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeTaskrecordServiceImpl implements ISchemeTaskrecordService |
| | | { |
| | | @Autowired |
| | | private SchemeTaskrecordMapper schemeTaskrecordMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡å¤çè®°å½ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | */ |
| | | @Override |
| | | public SchemeTaskrecord selectSchemeTaskrecordById(Long id) |
| | | { |
| | | return schemeTaskrecordMapper.selectSchemeTaskrecordById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡å¤çè®°å½å表 |
| | | * |
| | | * @param schemeTaskrecord æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * @return æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | */ |
| | | @Override |
| | | public List<SchemeTaskrecord> selectSchemeTaskrecordList(SchemeTaskrecord schemeTaskrecord) |
| | | { |
| | | return schemeTaskrecordMapper.selectSchemeTaskrecordList(schemeTaskrecord); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param schemeTaskrecord æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeTaskrecord(SchemeTaskrecord schemeTaskrecord) |
| | | { |
| | | schemeTaskrecord.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeTaskrecordMapper.insertSchemeTaskrecord(schemeTaskrecord); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param schemeTaskrecord æ¹æ¡ä»»å¡å¤çè®°å½ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeTaskrecord(SchemeTaskrecord schemeTaskrecord) |
| | | { |
| | | schemeTaskrecord.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeTaskrecordMapper.updateSchemeTaskrecord(schemeTaskrecord); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡å¤çè®°å½ |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ä»»å¡å¤çè®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskrecordByIds(Long[] ids) |
| | | { |
| | | return schemeTaskrecordMapper.deleteSchemeTaskrecordByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡å¤çè®°å½ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡å¤çè®°å½ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskrecordById(Long id) |
| | | { |
| | | return schemeTaskrecordMapper.deleteSchemeTaskrecordById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTaskrepeatconfigMapper; |
| | | import com.smartor.domain.SchemeTaskrepeatconfig; |
| | | import com.smartor.service.ISchemeTaskrepeatconfigService; |
| | | |
| | | /** |
| | | * æ¹æ¡ä»»å¡éåé
ç½®Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeTaskrepeatconfigServiceImpl implements ISchemeTaskrepeatconfigService |
| | | { |
| | | @Autowired |
| | | private SchemeTaskrepeatconfigMapper schemeTaskrepeatconfigMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡éåé
ç½®ä¸»é® |
| | | * @return æ¹æ¡ä»»å¡éåé
ç½® |
| | | */ |
| | | @Override |
| | | public SchemeTaskrepeatconfig selectSchemeTaskrepeatconfigById(Long id) |
| | | { |
| | | return schemeTaskrepeatconfigMapper.selectSchemeTaskrepeatconfigById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡ä»»å¡éåé
ç½®å表 |
| | | * |
| | | * @param schemeTaskrepeatconfig æ¹æ¡ä»»å¡éåé
ç½® |
| | | * @return æ¹æ¡ä»»å¡éåé
ç½® |
| | | */ |
| | | @Override |
| | | public List<SchemeTaskrepeatconfig> selectSchemeTaskrepeatconfigList(SchemeTaskrepeatconfig schemeTaskrepeatconfig) |
| | | { |
| | | return schemeTaskrepeatconfigMapper.selectSchemeTaskrepeatconfigList(schemeTaskrepeatconfig); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param schemeTaskrepeatconfig æ¹æ¡ä»»å¡éåé
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeTaskrepeatconfig(SchemeTaskrepeatconfig schemeTaskrepeatconfig) |
| | | { |
| | | schemeTaskrepeatconfig.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeTaskrepeatconfigMapper.insertSchemeTaskrepeatconfig(schemeTaskrepeatconfig); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param schemeTaskrepeatconfig æ¹æ¡ä»»å¡éåé
ç½® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeTaskrepeatconfig(SchemeTaskrepeatconfig schemeTaskrepeatconfig) |
| | | { |
| | | schemeTaskrepeatconfig.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeTaskrepeatconfigMapper.updateSchemeTaskrepeatconfig(schemeTaskrepeatconfig); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡ä»»å¡éåé
ç½® |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡ä»»å¡éåé
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskrepeatconfigByIds(Long[] ids) |
| | | { |
| | | return schemeTaskrepeatconfigMapper.deleteSchemeTaskrepeatconfigByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡ä»»å¡éåé
ç½®ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡ä»»å¡éåé
ç½®ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTaskrepeatconfigById(Long id) |
| | | { |
| | | return schemeTaskrepeatconfigMapper.deleteSchemeTaskrepeatconfigById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTriggerruleMapper; |
| | | import com.smartor.domain.SchemeTriggerrule; |
| | | import com.smartor.service.ISchemeTriggerruleService; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦åæ¡ä»¶è§åServiceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeTriggerruleServiceImpl implements ISchemeTriggerruleService |
| | | { |
| | | @Autowired |
| | | private SchemeTriggerruleMapper schemeTriggerruleMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param id æ¹æ¡è§¦åæ¡ä»¶è§åä¸»é® |
| | | * @return æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | */ |
| | | @Override |
| | | public SchemeTriggerrule selectSchemeTriggerruleById(Long id) |
| | | { |
| | | return schemeTriggerruleMapper.selectSchemeTriggerruleById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦åæ¡ä»¶è§åå表 |
| | | * |
| | | * @param schemeTriggerrule æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * @return æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | */ |
| | | @Override |
| | | public List<SchemeTriggerrule> selectSchemeTriggerruleList(SchemeTriggerrule schemeTriggerrule) |
| | | { |
| | | return schemeTriggerruleMapper.selectSchemeTriggerruleList(schemeTriggerrule); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param schemeTriggerrule æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeTriggerrule(SchemeTriggerrule schemeTriggerrule) |
| | | { |
| | | schemeTriggerrule.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeTriggerruleMapper.insertSchemeTriggerrule(schemeTriggerrule); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param schemeTriggerrule æ¹æ¡è§¦åæ¡ä»¶è§å |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeTriggerrule(SchemeTriggerrule schemeTriggerrule) |
| | | { |
| | | schemeTriggerrule.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeTriggerruleMapper.updateSchemeTriggerrule(schemeTriggerrule); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡è§¦åæ¡ä»¶è§å |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡è§¦åæ¡ä»¶è§åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTriggerruleByIds(Long[] ids) |
| | | { |
| | | return schemeTriggerruleMapper.deleteSchemeTriggerruleByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡è§¦åæ¡ä»¶è§åä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡è§¦åæ¡ä»¶è§åä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTriggerruleById(Long id) |
| | | { |
| | | return schemeTriggerruleMapper.deleteSchemeTriggerruleById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | 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.SchemeTriggersceneMapper; |
| | | import com.smartor.domain.SchemeTriggerscene; |
| | | import com.smartor.service.ISchemeTriggersceneService; |
| | | |
| | | /** |
| | | * æ¹æ¡è§¦ååºæ¯Serviceä¸å¡å±å¤ç |
| | | * |
| | | * @author smartor |
| | | * @date 2023-03-04 |
| | | */ |
| | | @Service |
| | | public class SchemeTriggersceneServiceImpl implements ISchemeTriggersceneService |
| | | { |
| | | @Autowired |
| | | private SchemeTriggersceneMapper schemeTriggersceneMapper; |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param id æ¹æ¡è§¦ååºæ¯ä¸»é® |
| | | * @return æ¹æ¡è§¦ååºæ¯ |
| | | */ |
| | | @Override |
| | | public SchemeTriggerscene selectSchemeTriggersceneById(Long id) |
| | | { |
| | | return schemeTriggersceneMapper.selectSchemeTriggersceneById(id); |
| | | } |
| | | |
| | | /** |
| | | * æ¥è¯¢æ¹æ¡è§¦ååºæ¯å表 |
| | | * |
| | | * @param schemeTriggerscene æ¹æ¡è§¦ååºæ¯ |
| | | * @return æ¹æ¡è§¦ååºæ¯ |
| | | */ |
| | | @Override |
| | | public List<SchemeTriggerscene> selectSchemeTriggersceneList(SchemeTriggerscene schemeTriggerscene) |
| | | { |
| | | return schemeTriggersceneMapper.selectSchemeTriggersceneList(schemeTriggerscene); |
| | | } |
| | | |
| | | /** |
| | | * æ°å¢æ¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param schemeTriggerscene æ¹æ¡è§¦ååºæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int insertSchemeTriggerscene(SchemeTriggerscene schemeTriggerscene) |
| | | { |
| | | schemeTriggerscene.setCreateTime(DateUtils.getNowDate()); |
| | | return schemeTriggersceneMapper.insertSchemeTriggerscene(schemeTriggerscene); |
| | | } |
| | | |
| | | /** |
| | | * ä¿®æ¹æ¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param schemeTriggerscene æ¹æ¡è§¦ååºæ¯ |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int updateSchemeTriggerscene(SchemeTriggerscene schemeTriggerscene) |
| | | { |
| | | schemeTriggerscene.setUpdateTime(DateUtils.getNowDate()); |
| | | return schemeTriggersceneMapper.updateSchemeTriggerscene(schemeTriggerscene); |
| | | } |
| | | |
| | | /** |
| | | * æ¹éå 餿¹æ¡è§¦ååºæ¯ |
| | | * |
| | | * @param ids éè¦å é¤çæ¹æ¡è§¦ååºæ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTriggersceneByIds(Long[] ids) |
| | | { |
| | | return schemeTriggersceneMapper.deleteSchemeTriggersceneByIds(ids); |
| | | } |
| | | |
| | | /** |
| | | * å 餿¹æ¡è§¦ååºæ¯ä¿¡æ¯ |
| | | * |
| | | * @param id æ¹æ¡è§¦ååºæ¯ä¸»é® |
| | | * @return ç»æ |
| | | */ |
| | | @Override |
| | | public int deleteSchemeTriggersceneById(Long id) |
| | | { |
| | | return schemeTriggersceneMapper.deleteSchemeTriggersceneById(id); |
| | | } |
| | | } |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.PatMedInhospMapper"> |
| | | |
| | | <resultMap type="PatMedInhosp" id="PatMedInhospResult"> |
| | | <result property="inhospid" column="inhospid" /> |
| | | <result property="serialnum" column="serialnum" /> |
| | | <result property="hospitalname" column="hospitalname" /> |
| | | <result property="hospitalcode" column="hospitalcode" /> |
| | | <result property="hospitaldistrictcode" column="hospitaldistrictcode" /> |
| | | <result property="hospitaldistrictname" column="hospitaldistrictname" /> |
| | | <result property="icd10code" column="icd10code" /> |
| | | <result property="diagname" column="diagname" /> |
| | | <result property="starttime" column="starttime" /> |
| | | <result property="endtime" column="endtime" /> |
| | | <result property="deptcode" column="deptcode" /> |
| | | <result property="deptname" column="deptname" /> |
| | | <result property="roomno" column="roomno" /> |
| | | <result property="bedno" column="bedno" /> |
| | | <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="patid" column="patid" /> |
| | | <result property="leavediagname" column="leavediagname" /> |
| | | <result property="leaveicd10code" column="leaveicd10code" /> |
| | | <result property="drcode" column="drcode" /> |
| | | <result property="drname" column="drname" /> |
| | | <result property="schemestatus" column="schemestatus" /> |
| | | <result property="generalschemestatus" column="generalschemestatus" /> |
| | | <result property="leaveldeptcode" column="leaveldeptcode" /> |
| | | <result property="leaveldeptname" column="leaveldeptname" /> |
| | | <result property="hospitaldistrictid" column="hospitaldistrictid" /> |
| | | <result property="leavehospitaldistrictcode" column="leavehospitaldistrictcode" /> |
| | | <result property="leavehospitaldistrictname" column="leavehospitaldistrictname" /> |
| | | <result property="leavehospitaldistrictid" column="leavehospitaldistrictid" /> |
| | | <result property="deptid" column="deptid" /> |
| | | <result property="leaveldeptid" column="leaveldeptid" /> |
| | | <result property="schemetime" column="schemetime" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectPatMedInhospVo"> |
| | | select inhospid, serialnum, hospitalname, hospitalcode, hospitaldistrictcode, hospitaldistrictname, icd10code, diagname, starttime, endtime, deptcode, deptname, roomno, bedno, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, patid, leavediagname, leaveicd10code, drcode, drname, schemestatus, generalschemestatus, leaveldeptcode, leaveldeptname, hospitaldistrictid, leavehospitaldistrictcode, leavehospitaldistrictname, leavehospitaldistrictid, deptid, leaveldeptid, schemetime from pat_med_inhosp |
| | | </sql> |
| | | |
| | | <select id="selectPatMedInhospList" parameterType="PatMedInhosp" resultMap="PatMedInhospResult"> |
| | | <include refid="selectPatMedInhospVo"/> |
| | | <where> |
| | | <if test="hospitalname != null and hospitalname != ''"> and hospitalname like concat('%', #{hospitalname}, '%')</if> |
| | | <if test="hospitaldistrictname != null and hospitaldistrictname != ''"> and hospitaldistrictname like concat('%', #{hospitaldistrictname}, '%')</if> |
| | | <if test="endtime != null "> and endtime = #{endtime}</if> |
| | | <if test="leavediagname != null and leavediagname != ''"> and leavediagname like concat('%', #{leavediagname}, '%')</if> |
| | | <if test="drname != null and drname != ''"> and drname like concat('%', #{drname}, '%')</if> |
| | | <if test="leaveldeptname != null and leaveldeptname != ''"> and leaveldeptname like concat('%', #{leaveldeptname}, '%')</if> |
| | | <if test="leavehospitaldistrictname != null and leavehospitaldistrictname != ''"> and leavehospitaldistrictname like concat('%', #{leavehospitaldistrictname}, '%')</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectPatMedInhospByInhospid" parameterType="Long" resultMap="PatMedInhospResult"> |
| | | <include refid="selectPatMedInhospVo"/> |
| | | where inhospid = #{inhospid} |
| | | </select> |
| | | |
| | | <insert id="insertPatMedInhosp" parameterType="PatMedInhosp" useGeneratedKeys="true" keyProperty="inhospid"> |
| | | insert into pat_med_inhosp |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="serialnum != null">serialnum,</if> |
| | | <if test="hospitalname != null">hospitalname,</if> |
| | | <if test="hospitalcode != null">hospitalcode,</if> |
| | | <if test="hospitaldistrictcode != null">hospitaldistrictcode,</if> |
| | | <if test="hospitaldistrictname != null">hospitaldistrictname,</if> |
| | | <if test="icd10code != null">icd10code,</if> |
| | | <if test="diagname != null">diagname,</if> |
| | | <if test="starttime != null">starttime,</if> |
| | | <if test="endtime != null">endtime,</if> |
| | | <if test="deptcode != null">deptcode,</if> |
| | | <if test="deptname != null">deptname,</if> |
| | | <if test="roomno != null">roomno,</if> |
| | | <if test="bedno != null">bedno,</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="patid != null">patid,</if> |
| | | <if test="leavediagname != null">leavediagname,</if> |
| | | <if test="leaveicd10code != null">leaveicd10code,</if> |
| | | <if test="drcode != null">drcode,</if> |
| | | <if test="drname != null">drname,</if> |
| | | <if test="schemestatus != null">schemestatus,</if> |
| | | <if test="generalschemestatus != null">generalschemestatus,</if> |
| | | <if test="leaveldeptcode != null">leaveldeptcode,</if> |
| | | <if test="leaveldeptname != null">leaveldeptname,</if> |
| | | <if test="hospitaldistrictid != null">hospitaldistrictid,</if> |
| | | <if test="leavehospitaldistrictcode != null">leavehospitaldistrictcode,</if> |
| | | <if test="leavehospitaldistrictname != null">leavehospitaldistrictname,</if> |
| | | <if test="leavehospitaldistrictid != null">leavehospitaldistrictid,</if> |
| | | <if test="deptid != null">deptid,</if> |
| | | <if test="leaveldeptid != null">leaveldeptid,</if> |
| | | <if test="schemetime != null">schemetime,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="serialnum != null">#{serialnum},</if> |
| | | <if test="hospitalname != null">#{hospitalname},</if> |
| | | <if test="hospitalcode != null">#{hospitalcode},</if> |
| | | <if test="hospitaldistrictcode != null">#{hospitaldistrictcode},</if> |
| | | <if test="hospitaldistrictname != null">#{hospitaldistrictname},</if> |
| | | <if test="icd10code != null">#{icd10code},</if> |
| | | <if test="diagname != null">#{diagname},</if> |
| | | <if test="starttime != null">#{starttime},</if> |
| | | <if test="endtime != null">#{endtime},</if> |
| | | <if test="deptcode != null">#{deptcode},</if> |
| | | <if test="deptname != null">#{deptname},</if> |
| | | <if test="roomno != null">#{roomno},</if> |
| | | <if test="bedno != null">#{bedno},</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="patid != null">#{patid},</if> |
| | | <if test="leavediagname != null">#{leavediagname},</if> |
| | | <if test="leaveicd10code != null">#{leaveicd10code},</if> |
| | | <if test="drcode != null">#{drcode},</if> |
| | | <if test="drname != null">#{drname},</if> |
| | | <if test="schemestatus != null">#{schemestatus},</if> |
| | | <if test="generalschemestatus != null">#{generalschemestatus},</if> |
| | | <if test="leaveldeptcode != null">#{leaveldeptcode},</if> |
| | | <if test="leaveldeptname != null">#{leaveldeptname},</if> |
| | | <if test="hospitaldistrictid != null">#{hospitaldistrictid},</if> |
| | | <if test="leavehospitaldistrictcode != null">#{leavehospitaldistrictcode},</if> |
| | | <if test="leavehospitaldistrictname != null">#{leavehospitaldistrictname},</if> |
| | | <if test="leavehospitaldistrictid != null">#{leavehospitaldistrictid},</if> |
| | | <if test="deptid != null">#{deptid},</if> |
| | | <if test="leaveldeptid != null">#{leaveldeptid},</if> |
| | | <if test="schemetime != null">#{schemetime},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updatePatMedInhosp" parameterType="PatMedInhosp"> |
| | | update pat_med_inhosp |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="serialnum != null">serialnum = #{serialnum},</if> |
| | | <if test="hospitalname != null">hospitalname = #{hospitalname},</if> |
| | | <if test="hospitalcode != null">hospitalcode = #{hospitalcode},</if> |
| | | <if test="hospitaldistrictcode != null">hospitaldistrictcode = #{hospitaldistrictcode},</if> |
| | | <if test="hospitaldistrictname != null">hospitaldistrictname = #{hospitaldistrictname},</if> |
| | | <if test="icd10code != null">icd10code = #{icd10code},</if> |
| | | <if test="diagname != null">diagname = #{diagname},</if> |
| | | <if test="starttime != null">starttime = #{starttime},</if> |
| | | <if test="endtime != null">endtime = #{endtime},</if> |
| | | <if test="deptcode != null">deptcode = #{deptcode},</if> |
| | | <if test="deptname != null">deptname = #{deptname},</if> |
| | | <if test="roomno != null">roomno = #{roomno},</if> |
| | | <if test="bedno != null">bedno = #{bedno},</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="patid != null">patid = #{patid},</if> |
| | | <if test="leavediagname != null">leavediagname = #{leavediagname},</if> |
| | | <if test="leaveicd10code != null">leaveicd10code = #{leaveicd10code},</if> |
| | | <if test="drcode != null">drcode = #{drcode},</if> |
| | | <if test="drname != null">drname = #{drname},</if> |
| | | <if test="schemestatus != null">schemestatus = #{schemestatus},</if> |
| | | <if test="generalschemestatus != null">generalschemestatus = #{generalschemestatus},</if> |
| | | <if test="leaveldeptcode != null">leaveldeptcode = #{leaveldeptcode},</if> |
| | | <if test="leaveldeptname != null">leaveldeptname = #{leaveldeptname},</if> |
| | | <if test="hospitaldistrictid != null">hospitaldistrictid = #{hospitaldistrictid},</if> |
| | | <if test="leavehospitaldistrictcode != null">leavehospitaldistrictcode = #{leavehospitaldistrictcode},</if> |
| | | <if test="leavehospitaldistrictname != null">leavehospitaldistrictname = #{leavehospitaldistrictname},</if> |
| | | <if test="leavehospitaldistrictid != null">leavehospitaldistrictid = #{leavehospitaldistrictid},</if> |
| | | <if test="deptid != null">deptid = #{deptid},</if> |
| | | <if test="leaveldeptid != null">leaveldeptid = #{leaveldeptid},</if> |
| | | <if test="schemetime != null">schemetime = #{schemetime},</if> |
| | | </trim> |
| | | where inhospid = #{inhospid} |
| | | </update> |
| | | |
| | | <delete id="deletePatMedInhospByInhospid" parameterType="Long"> |
| | | delete from pat_med_inhosp where inhospid = #{inhospid} |
| | | </delete> |
| | | |
| | | <delete id="deletePatMedInhospByInhospids" parameterType="String"> |
| | | delete from pat_med_inhosp where inhospid in |
| | | <foreach item="inhospid" collection="array" open="(" separator="," close=")"> |
| | | #{inhospid} |
| | | </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.PatMedOuthospMapper"> |
| | | |
| | | <resultMap type="PatMedOuthosp" id="PatMedOuthospResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="serialnum" column="serialnum" /> |
| | | <result property="patid" column="patid" /> |
| | | <result property="hospitalname" column="hospitalname" /> |
| | | <result property="hospitalcode" column="hospitalcode" /> |
| | | <result property="icd10code" column="icd10code" /> |
| | | <result property="diagname" column="diagname" /> |
| | | <result property="deptcode" column="deptcode" /> |
| | | <result property="deptname" column="deptname" /> |
| | | <result property="drcode" column="drcode" /> |
| | | <result property="drname" column="drname" /> |
| | | <result property="admitdate" column="admitdate" /> |
| | | <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="schemestatus" column="schemestatus" /> |
| | | <result property="deptid" column="deptid" /> |
| | | <result property="schemetime" column="schemetime" /> |
| | | <result property="hpi" column="hpi" /> |
| | | <result property="mainsuit" column="mainsuit" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectPatMedOuthospVo"> |
| | | select id, serialnum, patid, hospitalname, hospitalcode, icd10code, diagname, deptcode, deptname, drcode, drname, admitdate, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, schemestatus, deptid, schemetime, hpi, mainsuit from pat_med_outhosp |
| | | </sql> |
| | | |
| | | <select id="selectPatMedOuthospList" parameterType="PatMedOuthosp" resultMap="PatMedOuthospResult"> |
| | | <include refid="selectPatMedOuthospVo"/> |
| | | <where> |
| | | <if test="hospitalname != null and hospitalname != ''"> and hospitalname like concat('%', #{hospitalname}, '%')</if> |
| | | <if test="deptname != null and deptname != ''"> and deptname like concat('%', #{deptname}, '%')</if> |
| | | <if test="drname != null and drname != ''"> and drname like concat('%', #{drname}, '%')</if> |
| | | <if test="admitdate != null "> and admitdate = #{admitdate}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectPatMedOuthospById" parameterType="Long" resultMap="PatMedOuthospResult"> |
| | | <include refid="selectPatMedOuthospVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertPatMedOuthosp" parameterType="PatMedOuthosp" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into pat_med_outhosp |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="serialnum != null">serialnum,</if> |
| | | <if test="patid != null">patid,</if> |
| | | <if test="hospitalname != null">hospitalname,</if> |
| | | <if test="hospitalcode != null">hospitalcode,</if> |
| | | <if test="icd10code != null">icd10code,</if> |
| | | <if test="diagname != null">diagname,</if> |
| | | <if test="deptcode != null">deptcode,</if> |
| | | <if test="deptname != null">deptname,</if> |
| | | <if test="drcode != null">drcode,</if> |
| | | <if test="drname != null">drname,</if> |
| | | <if test="admitdate != null">admitdate,</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="schemestatus != null">schemestatus,</if> |
| | | <if test="deptid != null">deptid,</if> |
| | | <if test="schemetime != null">schemetime,</if> |
| | | <if test="hpi != null">hpi,</if> |
| | | <if test="mainsuit != null">mainsuit,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="serialnum != null">#{serialnum},</if> |
| | | <if test="patid != null">#{patid},</if> |
| | | <if test="hospitalname != null">#{hospitalname},</if> |
| | | <if test="hospitalcode != null">#{hospitalcode},</if> |
| | | <if test="icd10code != null">#{icd10code},</if> |
| | | <if test="diagname != null">#{diagname},</if> |
| | | <if test="deptcode != null">#{deptcode},</if> |
| | | <if test="deptname != null">#{deptname},</if> |
| | | <if test="drcode != null">#{drcode},</if> |
| | | <if test="drname != null">#{drname},</if> |
| | | <if test="admitdate != null">#{admitdate},</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="schemestatus != null">#{schemestatus},</if> |
| | | <if test="deptid != null">#{deptid},</if> |
| | | <if test="schemetime != null">#{schemetime},</if> |
| | | <if test="hpi != null">#{hpi},</if> |
| | | <if test="mainsuit != null">#{mainsuit},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updatePatMedOuthosp" parameterType="PatMedOuthosp"> |
| | | update pat_med_outhosp |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="serialnum != null">serialnum = #{serialnum},</if> |
| | | <if test="patid != null">patid = #{patid},</if> |
| | | <if test="hospitalname != null">hospitalname = #{hospitalname},</if> |
| | | <if test="hospitalcode != null">hospitalcode = #{hospitalcode},</if> |
| | | <if test="icd10code != null">icd10code = #{icd10code},</if> |
| | | <if test="diagname != null">diagname = #{diagname},</if> |
| | | <if test="deptcode != null">deptcode = #{deptcode},</if> |
| | | <if test="deptname != null">deptname = #{deptname},</if> |
| | | <if test="drcode != null">drcode = #{drcode},</if> |
| | | <if test="drname != null">drname = #{drname},</if> |
| | | <if test="admitdate != null">admitdate = #{admitdate},</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="schemestatus != null">schemestatus = #{schemestatus},</if> |
| | | <if test="deptid != null">deptid = #{deptid},</if> |
| | | <if test="schemetime != null">schemetime = #{schemetime},</if> |
| | | <if test="hpi != null">hpi = #{hpi},</if> |
| | | <if test="mainsuit != null">mainsuit = #{mainsuit},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deletePatMedOuthospById" parameterType="Long"> |
| | | delete from pat_med_outhosp where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deletePatMedOuthospByIds" parameterType="String"> |
| | | delete from pat_med_outhosp where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.PatMedPhysicalMapper"> |
| | | |
| | | <resultMap type="PatMedPhysical" id="PatMedPhysicalResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="serialnum" column="serialnum" /> |
| | | <result property="patid" column="patid" /> |
| | | <result property="drcode" column="drcode" /> |
| | | <result property="drname" column="drname" /> |
| | | <result property="hospitalcode" column="hospitalcode" /> |
| | | <result property="hospitalname" column="hospitalname" /> |
| | | <result property="physicaldate" column="physicaldate" /> |
| | | <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="deptcode" column="deptcode" /> |
| | | <result property="deptname" column="deptname" /> |
| | | <result property="projectname" column="projectname" /> |
| | | <result property="projectcode" column="projectcode" /> |
| | | <result property="state" column="state" /> |
| | | <result property="schemestatus" column="schemestatus" /> |
| | | <result property="generalschemestatus" column="generalschemestatus" /> |
| | | <result property="deptid" column="deptid" /> |
| | | <result property="projectid" column="projectid" /> |
| | | <result property="schemetime" column="schemetime" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectPatMedPhysicalVo"> |
| | | select id, serialnum, patid, drcode, drname, hospitalcode, hospitalname, physicaldate, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, deptcode, deptname, projectname, projectcode, state, schemestatus, generalschemestatus, deptid, projectid, schemetime from pat_med_physical |
| | | </sql> |
| | | |
| | | <select id="selectPatMedPhysicalList" parameterType="PatMedPhysical" resultMap="PatMedPhysicalResult"> |
| | | <include refid="selectPatMedPhysicalVo"/> |
| | | <where> |
| | | <if test="hospitalname != null and hospitalname != ''"> and hospitalname like concat('%', #{hospitalname}, '%')</if> |
| | | <if test="physicaldate != null "> and physicaldate = #{physicaldate}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="deptname != null and deptname != ''"> and deptname like concat('%', #{deptname}, '%')</if> |
| | | <if test="projectname != null and projectname != ''"> and projectname like concat('%', #{projectname}, '%')</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectPatMedPhysicalById" parameterType="Long" resultMap="PatMedPhysicalResult"> |
| | | <include refid="selectPatMedPhysicalVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertPatMedPhysical" parameterType="PatMedPhysical" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into pat_med_physical |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="serialnum != null">serialnum,</if> |
| | | <if test="patid != null">patid,</if> |
| | | <if test="drcode != null">drcode,</if> |
| | | <if test="drname != null">drname,</if> |
| | | <if test="hospitalcode != null">hospitalcode,</if> |
| | | <if test="hospitalname != null">hospitalname,</if> |
| | | <if test="physicaldate != null">physicaldate,</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="deptcode != null">deptcode,</if> |
| | | <if test="deptname != null">deptname,</if> |
| | | <if test="projectname != null">projectname,</if> |
| | | <if test="projectcode != null">projectcode,</if> |
| | | <if test="state != null">state,</if> |
| | | <if test="schemestatus != null">schemestatus,</if> |
| | | <if test="generalschemestatus != null">generalschemestatus,</if> |
| | | <if test="deptid != null">deptid,</if> |
| | | <if test="projectid != null">projectid,</if> |
| | | <if test="schemetime != null">schemetime,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="serialnum != null">#{serialnum},</if> |
| | | <if test="patid != null">#{patid},</if> |
| | | <if test="drcode != null">#{drcode},</if> |
| | | <if test="drname != null">#{drname},</if> |
| | | <if test="hospitalcode != null">#{hospitalcode},</if> |
| | | <if test="hospitalname != null">#{hospitalname},</if> |
| | | <if test="physicaldate != null">#{physicaldate},</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="deptcode != null">#{deptcode},</if> |
| | | <if test="deptname != null">#{deptname},</if> |
| | | <if test="projectname != null">#{projectname},</if> |
| | | <if test="projectcode != null">#{projectcode},</if> |
| | | <if test="state != null">#{state},</if> |
| | | <if test="schemestatus != null">#{schemestatus},</if> |
| | | <if test="generalschemestatus != null">#{generalschemestatus},</if> |
| | | <if test="deptid != null">#{deptid},</if> |
| | | <if test="projectid != null">#{projectid},</if> |
| | | <if test="schemetime != null">#{schemetime},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updatePatMedPhysical" parameterType="PatMedPhysical"> |
| | | update pat_med_physical |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="serialnum != null">serialnum = #{serialnum},</if> |
| | | <if test="patid != null">patid = #{patid},</if> |
| | | <if test="drcode != null">drcode = #{drcode},</if> |
| | | <if test="drname != null">drname = #{drname},</if> |
| | | <if test="hospitalcode != null">hospitalcode = #{hospitalcode},</if> |
| | | <if test="hospitalname != null">hospitalname = #{hospitalname},</if> |
| | | <if test="physicaldate != null">physicaldate = #{physicaldate},</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="deptcode != null">deptcode = #{deptcode},</if> |
| | | <if test="deptname != null">deptname = #{deptname},</if> |
| | | <if test="projectname != null">projectname = #{projectname},</if> |
| | | <if test="projectcode != null">projectcode = #{projectcode},</if> |
| | | <if test="state != null">state = #{state},</if> |
| | | <if test="schemestatus != null">schemestatus = #{schemestatus},</if> |
| | | <if test="generalschemestatus != null">generalschemestatus = #{generalschemestatus},</if> |
| | | <if test="deptid != null">deptid = #{deptid},</if> |
| | | <if test="projectid != null">projectid = #{projectid},</if> |
| | | <if test="schemetime != null">schemetime = #{schemetime},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deletePatMedPhysicalById" parameterType="Long"> |
| | | delete from pat_med_physical where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deletePatMedPhysicalByIds" parameterType="String"> |
| | | delete from pat_med_physical where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.ruoyi.smartor.mapper.SchemeAutofinshruleMapper"> |
| | | |
| | | <resultMap type="SchemeAutofinshrule" id="SchemeAutofinshruleResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="schemeid" column="schemeid" /> |
| | | <result property="ruletype" column="ruletype" /> |
| | | <result property="rulevalue" column="rulevalue" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSchemeAutofinshruleVo"> |
| | | select id, schemeid, ruletype, rulevalue, orgid, del_flag, create_by, create_time, update_by, update_time, isupload, upload_time from scheme_autofinshrule |
| | | </sql> |
| | | |
| | | <select id="selectSchemeAutofinshruleList" parameterType="SchemeAutofinshrule" resultMap="SchemeAutofinshruleResult"> |
| | | <include refid="selectSchemeAutofinshruleVo"/> |
| | | <where> |
| | | <if test="schemeid != null "> and schemeid = #{schemeid}</if> |
| | | <if test="ruletype != null "> and ruletype = #{ruletype}</if> |
| | | <if test="rulevalue != null and rulevalue != ''"> and rulevalue = #{rulevalue}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSchemeAutofinshruleById" parameterType="Long" resultMap="SchemeAutofinshruleResult"> |
| | | <include refid="selectSchemeAutofinshruleVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeAutofinshrule" parameterType="SchemeAutofinshrule" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_autofinshrule |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid,</if> |
| | | <if test="ruletype != null">ruletype,</if> |
| | | <if test="rulevalue != null">rulevalue,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">#{schemeid},</if> |
| | | <if test="ruletype != null">#{ruletype},</if> |
| | | <if test="rulevalue != null">#{rulevalue},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSchemeAutofinshrule" parameterType="SchemeAutofinshrule"> |
| | | update scheme_autofinshrule |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid = #{schemeid},</if> |
| | | <if test="ruletype != null">ruletype = #{ruletype},</if> |
| | | <if test="rulevalue != null">rulevalue = #{rulevalue},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeAutofinshruleById" parameterType="Long"> |
| | | delete from scheme_autofinshrule where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeAutofinshruleByIds" parameterType="String"> |
| | | delete from scheme_autofinshrule where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemeCategoryMapper"> |
| | | |
| | | <resultMap type="SchemeCategory" id="SchemeCategoryResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="categoryname" column="categoryname" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="iscurrency" column="iscurrency" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSchemeCategoryVo"> |
| | | select id, categoryname, orgid, iscurrency, del_flag, create_by, create_time, update_by, update_time, isupload, upload_time from scheme_category |
| | | </sql> |
| | | |
| | | <select id="selectSchemeCategoryList" parameterType="SchemeCategory" resultMap="SchemeCategoryResult"> |
| | | <include refid="selectSchemeCategoryVo"/> |
| | | <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="iscurrency != null "> and iscurrency = #{iscurrency}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSchemeCategoryById" parameterType="Long" resultMap="SchemeCategoryResult"> |
| | | <include refid="selectSchemeCategoryVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeCategory" parameterType="SchemeCategory" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_category |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="categoryname != null">categoryname,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="iscurrency != null">iscurrency,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="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="iscurrency != null">#{iscurrency},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSchemeCategory" parameterType="SchemeCategory"> |
| | | update scheme_category |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="categoryname != null">categoryname = #{categoryname},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="iscurrency != null">iscurrency = #{iscurrency},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeCategoryById" parameterType="Long"> |
| | | delete from scheme_category where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeCategoryByIds" parameterType="String"> |
| | | delete from scheme_category where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemeLocallibraryMapper"> |
| | | |
| | | <resultMap type="SchemeLocallibrary" id="SchemeLocallibraryResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="schemecategoryid" column="schemecategoryid" /> |
| | | <result property="schemename" column="schemename" /> |
| | | <result property="description" column="description" /> |
| | | <result property="templateid" column="templateid" /> |
| | | <result property="version" column="version" /> |
| | | <result property="schemecode" column="schemecode" /> |
| | | <result property="centerlibraryid" column="centerlibraryid" /> |
| | | <result property="patientsource" column="patientsource" /> |
| | | <result property="belongdeptid" column="belongdeptid" /> |
| | | <result property="ruledept" column="ruledept" /> |
| | | <result property="belongwardid" column="belongwardid" /> |
| | | <result property="ruleward" column="ruleward" /> |
| | | <result property="repeathandle" column="repeathandle" /> |
| | | <result property="expirehandle" column="expirehandle" /> |
| | | <result property="autofinsh" column="autofinsh" /> |
| | | <result property="baselinetime" column="baselinetime" /> |
| | | <result property="triggerornot" column="triggerornot" /> |
| | | <result property="isenable" column="isenable" /> |
| | | <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="state" column="state" /> |
| | | <result property="openBy" column="open_by" /> |
| | | <result property="openTime" column="open_time" /> |
| | | <result property="centerlibrarycode" column="centerlibrarycode" /> |
| | | <result property="islocal" column="islocal" /> |
| | | <result property="iscurrency" column="iscurrency" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSchemeLocallibraryVo"> |
| | | select id, schemecategoryid, schemename, description, templateid, version, schemecode, centerlibraryid, patientsource, belongdeptid, ruledept, belongwardid, ruleward, repeathandle, expirehandle, autofinsh, baselinetime, triggerornot, isenable, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, state, open_by, open_time, centerlibrarycode, islocal, iscurrency from scheme_locallibrary |
| | | </sql> |
| | | |
| | | <select id="selectSchemeLocallibraryList" parameterType="SchemeLocallibrary" resultMap="SchemeLocallibraryResult"> |
| | | <include refid="selectSchemeLocallibraryVo"/> |
| | | <where> |
| | | <if test="schemecategoryid != null "> and schemecategoryid = #{schemecategoryid}</if> |
| | | <if test="schemename != null and schemename != ''"> and schemename like concat('%', #{schemename}, '%')</if> |
| | | <if test="description != null and description != ''"> and description = #{description}</if> |
| | | <if test="templateid != null "> and templateid = #{templateid}</if> |
| | | <if test="version != null "> and version = #{version}</if> |
| | | <if test="schemecode != null and schemecode != ''"> and schemecode = #{schemecode}</if> |
| | | <if test="centerlibraryid != null "> and centerlibraryid = #{centerlibraryid}</if> |
| | | <if test="patientsource != null "> and patientsource = #{patientsource}</if> |
| | | <if test="belongdeptid != null and belongdeptid != ''"> and belongdeptid = #{belongdeptid}</if> |
| | | <if test="ruledept != null "> and ruledept = #{ruledept}</if> |
| | | <if test="belongwardid != null and belongwardid != ''"> and belongwardid = #{belongwardid}</if> |
| | | <if test="ruleward != null "> and ruleward = #{ruleward}</if> |
| | | <if test="repeathandle != null "> and repeathandle = #{repeathandle}</if> |
| | | <if test="expirehandle != null "> and expirehandle = #{expirehandle}</if> |
| | | <if test="autofinsh != null "> and autofinsh = #{autofinsh}</if> |
| | | <if test="baselinetime != null "> and baselinetime = #{baselinetime}</if> |
| | | <if test="triggerornot != null "> and triggerornot = #{triggerornot}</if> |
| | | <if test="isenable != null "> and isenable = #{isenable}</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="state != null "> and state = #{state}</if> |
| | | <if test="openBy != null and openBy != ''"> and open_by = #{openBy}</if> |
| | | <if test="openTime != null "> and open_time = #{openTime}</if> |
| | | <if test="centerlibrarycode != null and centerlibrarycode != ''"> and centerlibrarycode = #{centerlibrarycode}</if> |
| | | <if test="islocal != null "> and islocal = #{islocal}</if> |
| | | <if test="iscurrency != null "> and iscurrency = #{iscurrency}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSchemeLocallibraryById" parameterType="Long" resultMap="SchemeLocallibraryResult"> |
| | | <include refid="selectSchemeLocallibraryVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeLocallibrary" parameterType="SchemeLocallibrary" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_locallibrary |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="schemecategoryid != null">schemecategoryid,</if> |
| | | <if test="schemename != null">schemename,</if> |
| | | <if test="description != null">description,</if> |
| | | <if test="templateid != null">templateid,</if> |
| | | <if test="version != null">version,</if> |
| | | <if test="schemecode != null">schemecode,</if> |
| | | <if test="centerlibraryid != null">centerlibraryid,</if> |
| | | <if test="patientsource != null">patientsource,</if> |
| | | <if test="belongdeptid != null">belongdeptid,</if> |
| | | <if test="ruledept != null">ruledept,</if> |
| | | <if test="belongwardid != null">belongwardid,</if> |
| | | <if test="ruleward != null">ruleward,</if> |
| | | <if test="repeathandle != null">repeathandle,</if> |
| | | <if test="expirehandle != null">expirehandle,</if> |
| | | <if test="autofinsh != null">autofinsh,</if> |
| | | <if test="baselinetime != null">baselinetime,</if> |
| | | <if test="triggerornot != null">triggerornot,</if> |
| | | <if test="isenable != null">isenable,</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="state != null">state,</if> |
| | | <if test="openBy != null">open_by,</if> |
| | | <if test="openTime != null">open_time,</if> |
| | | <if test="centerlibrarycode != null">centerlibrarycode,</if> |
| | | <if test="islocal != null">islocal,</if> |
| | | <if test="iscurrency != null">iscurrency,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="schemecategoryid != null">#{schemecategoryid},</if> |
| | | <if test="schemename != null">#{schemename},</if> |
| | | <if test="description != null">#{description},</if> |
| | | <if test="templateid != null">#{templateid},</if> |
| | | <if test="version != null">#{version},</if> |
| | | <if test="schemecode != null">#{schemecode},</if> |
| | | <if test="centerlibraryid != null">#{centerlibraryid},</if> |
| | | <if test="patientsource != null">#{patientsource},</if> |
| | | <if test="belongdeptid != null">#{belongdeptid},</if> |
| | | <if test="ruledept != null">#{ruledept},</if> |
| | | <if test="belongwardid != null">#{belongwardid},</if> |
| | | <if test="ruleward != null">#{ruleward},</if> |
| | | <if test="repeathandle != null">#{repeathandle},</if> |
| | | <if test="expirehandle != null">#{expirehandle},</if> |
| | | <if test="autofinsh != null">#{autofinsh},</if> |
| | | <if test="baselinetime != null">#{baselinetime},</if> |
| | | <if test="triggerornot != null">#{triggerornot},</if> |
| | | <if test="isenable != null">#{isenable},</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="state != null">#{state},</if> |
| | | <if test="openBy != null">#{openBy},</if> |
| | | <if test="openTime != null">#{openTime},</if> |
| | | <if test="centerlibrarycode != null">#{centerlibrarycode},</if> |
| | | <if test="islocal != null">#{islocal},</if> |
| | | <if test="iscurrency != null">#{iscurrency},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSchemeLocallibrary" parameterType="SchemeLocallibrary"> |
| | | update scheme_locallibrary |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="schemecategoryid != null">schemecategoryid = #{schemecategoryid},</if> |
| | | <if test="schemename != null">schemename = #{schemename},</if> |
| | | <if test="description != null">description = #{description},</if> |
| | | <if test="templateid != null">templateid = #{templateid},</if> |
| | | <if test="version != null">version = #{version},</if> |
| | | <if test="schemecode != null">schemecode = #{schemecode},</if> |
| | | <if test="centerlibraryid != null">centerlibraryid = #{centerlibraryid},</if> |
| | | <if test="patientsource != null">patientsource = #{patientsource},</if> |
| | | <if test="belongdeptid != null">belongdeptid = #{belongdeptid},</if> |
| | | <if test="ruledept != null">ruledept = #{ruledept},</if> |
| | | <if test="belongwardid != null">belongwardid = #{belongwardid},</if> |
| | | <if test="ruleward != null">ruleward = #{ruleward},</if> |
| | | <if test="repeathandle != null">repeathandle = #{repeathandle},</if> |
| | | <if test="expirehandle != null">expirehandle = #{expirehandle},</if> |
| | | <if test="autofinsh != null">autofinsh = #{autofinsh},</if> |
| | | <if test="baselinetime != null">baselinetime = #{baselinetime},</if> |
| | | <if test="triggerornot != null">triggerornot = #{triggerornot},</if> |
| | | <if test="isenable != null">isenable = #{isenable},</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="state != null">state = #{state},</if> |
| | | <if test="openBy != null">open_by = #{openBy},</if> |
| | | <if test="openTime != null">open_time = #{openTime},</if> |
| | | <if test="centerlibrarycode != null">centerlibrarycode = #{centerlibrarycode},</if> |
| | | <if test="islocal != null">islocal = #{islocal},</if> |
| | | <if test="iscurrency != null">iscurrency = #{iscurrency},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeLocallibraryById" parameterType="Long"> |
| | | delete from scheme_locallibrary where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeLocallibraryByIds" parameterType="String"> |
| | | delete from scheme_locallibrary where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemePlanMapper"> |
| | | |
| | | <resultMap type="SchemePlan" id="SchemePlanResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="schemeid" column="schemeid" /> |
| | | <result property="schemecode" column="schemecode" /> |
| | | <result property="patientid" column="patientid" /> |
| | | <result property="serialnum" column="serialnum" /> |
| | | <result property="visitid" column="visitid" /> |
| | | <result property="visittype" column="visittype" /> |
| | | <result property="state" column="state" /> |
| | | <result property="finshtime" column="finshtime" /> |
| | | <result property="sourcetype" column="sourcetype" /> |
| | | <result property="patientsource" column="patientsource" /> |
| | | <result property="finshtype" column="finshtype" /> |
| | | <result property="finshdesc" column="finshdesc" /> |
| | | <result property="basetime" column="basetime" /> |
| | | <result property="orgid" column="orgid" /> |
| | | <result property="relationid" column="relationid" /> |
| | | <result property="delFlag" column="del_flag" /> |
| | | <result property="createBy" column="create_by" /> |
| | | <result property="createTime" column="create_time" /> |
| | | <result property="updateBy" column="update_by" /> |
| | | <result property="updateTime" column="update_time" /> |
| | | <result property="isupload" column="isupload" /> |
| | | <result property="uploadTime" column="upload_time" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSchemePlanVo"> |
| | | select id, schemeid, schemecode, patientid, serialnum, visitid, visittype, state, finshtime, sourcetype, patientsource, finshtype, finshdesc, basetime, orgid, relationid, del_flag, create_by, create_time, update_by, update_time, isupload, upload_time from scheme_plan |
| | | </sql> |
| | | |
| | | <select id="selectSchemePlanList" parameterType="SchemePlan" resultMap="SchemePlanResult"> |
| | | <include refid="selectSchemePlanVo"/> |
| | | <where> |
| | | <if test="schemeid != null "> and schemeid = #{schemeid}</if> |
| | | <if test="schemecode != null and schemecode != ''"> and schemecode = #{schemecode}</if> |
| | | <if test="patientid != null "> and patientid = #{patientid}</if> |
| | | <if test="serialnum != null and serialnum != ''"> and serialnum = #{serialnum}</if> |
| | | <if test="visitid != null "> and visitid = #{visitid}</if> |
| | | <if test="visittype != null "> and visittype = #{visittype}</if> |
| | | <if test="state != null "> and state = #{state}</if> |
| | | <if test="finshtime != null "> and finshtime = #{finshtime}</if> |
| | | <if test="sourcetype != null "> and sourcetype = #{sourcetype}</if> |
| | | <if test="patientsource != null "> and patientsource = #{patientsource}</if> |
| | | <if test="finshtype != null "> and finshtype = #{finshtype}</if> |
| | | <if test="finshdesc != null and finshdesc != ''"> and finshdesc = #{finshdesc}</if> |
| | | <if test="basetime != null "> and basetime = #{basetime}</if> |
| | | <if test="orgid != null and orgid != ''"> and orgid = #{orgid}</if> |
| | | <if test="relationid != null "> and relationid = #{relationid}</if> |
| | | <if test="isupload != null "> and isupload = #{isupload}</if> |
| | | <if test="uploadTime != null "> and upload_time = #{uploadTime}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSchemePlanById" parameterType="Long" resultMap="SchemePlanResult"> |
| | | <include refid="selectSchemePlanVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemePlan" parameterType="SchemePlan" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_plan |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid,</if> |
| | | <if test="schemecode != null">schemecode,</if> |
| | | <if test="patientid != null">patientid,</if> |
| | | <if test="serialnum != null">serialnum,</if> |
| | | <if test="visitid != null">visitid,</if> |
| | | <if test="visittype != null">visittype,</if> |
| | | <if test="state != null">state,</if> |
| | | <if test="finshtime != null">finshtime,</if> |
| | | <if test="sourcetype != null">sourcetype,</if> |
| | | <if test="patientsource != null">patientsource,</if> |
| | | <if test="finshtype != null">finshtype,</if> |
| | | <if test="finshdesc != null">finshdesc,</if> |
| | | <if test="basetime != null">basetime,</if> |
| | | <if test="orgid != null">orgid,</if> |
| | | <if test="relationid != null">relationid,</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag,</if> |
| | | <if test="createBy != null">create_by,</if> |
| | | <if test="createTime != null">create_time,</if> |
| | | <if test="updateBy != null">update_by,</if> |
| | | <if test="updateTime != null">update_time,</if> |
| | | <if test="isupload != null">isupload,</if> |
| | | <if test="uploadTime != null">upload_time,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">#{schemeid},</if> |
| | | <if test="schemecode != null">#{schemecode},</if> |
| | | <if test="patientid != null">#{patientid},</if> |
| | | <if test="serialnum != null">#{serialnum},</if> |
| | | <if test="visitid != null">#{visitid},</if> |
| | | <if test="visittype != null">#{visittype},</if> |
| | | <if test="state != null">#{state},</if> |
| | | <if test="finshtime != null">#{finshtime},</if> |
| | | <if test="sourcetype != null">#{sourcetype},</if> |
| | | <if test="patientsource != null">#{patientsource},</if> |
| | | <if test="finshtype != null">#{finshtype},</if> |
| | | <if test="finshdesc != null">#{finshdesc},</if> |
| | | <if test="basetime != null">#{basetime},</if> |
| | | <if test="orgid != null">#{orgid},</if> |
| | | <if test="relationid != null">#{relationid},</if> |
| | | <if test="delFlag != null and delFlag != ''">#{delFlag},</if> |
| | | <if test="createBy != null">#{createBy},</if> |
| | | <if test="createTime != null">#{createTime},</if> |
| | | <if test="updateBy != null">#{updateBy},</if> |
| | | <if test="updateTime != null">#{updateTime},</if> |
| | | <if test="isupload != null">#{isupload},</if> |
| | | <if test="uploadTime != null">#{uploadTime},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSchemePlan" parameterType="SchemePlan"> |
| | | update scheme_plan |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid = #{schemeid},</if> |
| | | <if test="schemecode != null">schemecode = #{schemecode},</if> |
| | | <if test="patientid != null">patientid = #{patientid},</if> |
| | | <if test="serialnum != null">serialnum = #{serialnum},</if> |
| | | <if test="visitid != null">visitid = #{visitid},</if> |
| | | <if test="visittype != null">visittype = #{visittype},</if> |
| | | <if test="state != null">state = #{state},</if> |
| | | <if test="finshtime != null">finshtime = #{finshtime},</if> |
| | | <if test="sourcetype != null">sourcetype = #{sourcetype},</if> |
| | | <if test="patientsource != null">patientsource = #{patientsource},</if> |
| | | <if test="finshtype != null">finshtype = #{finshtype},</if> |
| | | <if test="finshdesc != null">finshdesc = #{finshdesc},</if> |
| | | <if test="basetime != null">basetime = #{basetime},</if> |
| | | <if test="orgid != null">orgid = #{orgid},</if> |
| | | <if test="relationid != null">relationid = #{relationid},</if> |
| | | <if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if> |
| | | <if test="createBy != null">create_by = #{createBy},</if> |
| | | <if test="createTime != null">create_time = #{createTime},</if> |
| | | <if test="updateBy != null">update_by = #{updateBy},</if> |
| | | <if test="updateTime != null">update_time = #{updateTime},</if> |
| | | <if test="isupload != null">isupload = #{isupload},</if> |
| | | <if test="uploadTime != null">upload_time = #{uploadTime},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemePlanById" parameterType="Long"> |
| | | delete from scheme_plan where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemePlanByIds" parameterType="String"> |
| | | delete from scheme_plan where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemeTaskMapper"> |
| | | |
| | | <resultMap type="SchemeTask" id="SchemeTaskResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="schemeid" column="schemeid" /> |
| | | <result property="schemeplanid" column="schemeplanid" /> |
| | | <result property="patientid" column="patientid" /> |
| | | <result property="state" column="state" /> |
| | | <result property="baselinetime" column="baselinetime" /> |
| | | <result property="plantime" column="plantime" /> |
| | | <result property="actualtime" column="actualtime" /> |
| | | <result property="overtime" column="overtime" /> |
| | | <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="patientsource" column="patientsource" /> |
| | | <result property="taskconfigid" column="taskconfigid" /> |
| | | <result property="relationid" column="relationid" /> |
| | | <result property="relationname" column="relationname" /> |
| | | <result property="content" column="content" /> |
| | | <result property="tipscontent" column="tipscontent" /> |
| | | <result property="tasktype" column="tasktype" /> |
| | | <result property="finshtime" column="finshtime" /> |
| | | <result property="finshtype" column="finshtype" /> |
| | | <result property="finshdesc" column="finshdesc" /> |
| | | <result property="termvaliditytime" column="termvaliditytime" /> |
| | | <result property="schemestatus" column="schemestatus" /> |
| | | <result property="visitid" column="visitid" /> |
| | | <result property="visittype" column="visittype" /> |
| | | <result property="tasksource" column="tasksource" /> |
| | | <result property="relationtype" column="relationtype" /> |
| | | <result property="isartificial" column="isartificial" /> |
| | | <result property="overduetipstime" column="overduetipstime" /> |
| | | <result property="isabnormal" column="isabnormal" /> |
| | | <result property="artificialtag" column="artificialtag" /> |
| | | <result property="relationcode" column="relationcode" /> |
| | | <result property="schemecode" column="schemecode" /> |
| | | <result property="lastplantime" column="lastplantime" /> |
| | | <result property="istest" column="istest" /> |
| | | <result property="firstplantime" column="firstplantime" /> |
| | | <result property="repeatsecond" column="repeatsecond" /> |
| | | <result property="isrepeat" column="isrepeat" /> |
| | | <result property="ismanual" column="ismanual" /> |
| | | <result property="losstime" column="losstime" /> |
| | | <result property="relationlistid" column="relationlistid" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSchemeTaskVo"> |
| | | select id, schemeid, schemeplanid, patientid, state, baselinetime, plantime, actualtime, overtime, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, patientsource, taskconfigid, relationid, relationname, content, tipscontent, tasktype, finshtime, finshtype, finshdesc, termvaliditytime, schemestatus, visitid, visittype, tasksource, relationtype, isartificial, overduetipstime, isabnormal, artificialtag, relationcode, schemecode, lastplantime, istest, firstplantime, repeatsecond, isrepeat, ismanual, losstime, relationlistid from scheme_task |
| | | </sql> |
| | | |
| | | <select id="selectSchemeTaskList" parameterType="SchemeTask" resultMap="SchemeTaskResult"> |
| | | <include refid="selectSchemeTaskVo"/> |
| | | <where> |
| | | <if test="schemeid != null "> and schemeid = #{schemeid}</if> |
| | | <if test="schemeplanid != null "> and schemeplanid = #{schemeplanid}</if> |
| | | <if test="patientid != null "> and patientid = #{patientid}</if> |
| | | <if test="state != null "> and state = #{state}</if> |
| | | <if test="baselinetime != null "> and baselinetime = #{baselinetime}</if> |
| | | <if test="plantime != null "> and plantime = #{plantime}</if> |
| | | <if test="actualtime != null "> and actualtime = #{actualtime}</if> |
| | | <if test="overtime != null "> and overtime = #{overtime}</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="patientsource != null "> and patientsource = #{patientsource}</if> |
| | | <if test="taskconfigid != null and taskconfigid != ''"> and taskconfigid = #{taskconfigid}</if> |
| | | <if test="relationid != null "> and relationid = #{relationid}</if> |
| | | <if test="relationname != null and relationname != ''"> and relationname like concat('%', #{relationname}, '%')</if> |
| | | <if test="content != null and content != ''"> and content = #{content}</if> |
| | | <if test="tipscontent != null and tipscontent != ''"> and tipscontent = #{tipscontent}</if> |
| | | <if test="tasktype != null "> and tasktype = #{tasktype}</if> |
| | | <if test="finshtime != null "> and finshtime = #{finshtime}</if> |
| | | <if test="finshtype != null "> and finshtype = #{finshtype}</if> |
| | | <if test="finshdesc != null and finshdesc != ''"> and finshdesc = #{finshdesc}</if> |
| | | <if test="termvaliditytime != null "> and termvaliditytime = #{termvaliditytime}</if> |
| | | <if test="schemestatus != null "> and schemestatus = #{schemestatus}</if> |
| | | <if test="visitid != null "> and visitid = #{visitid}</if> |
| | | <if test="visittype != null "> and visittype = #{visittype}</if> |
| | | <if test="tasksource != null "> and tasksource = #{tasksource}</if> |
| | | <if test="relationtype != null "> and relationtype = #{relationtype}</if> |
| | | <if test="isartificial != null "> and isartificial = #{isartificial}</if> |
| | | <if test="overduetipstime != null "> and overduetipstime = #{overduetipstime}</if> |
| | | <if test="isabnormal != null "> and isabnormal = #{isabnormal}</if> |
| | | <if test="artificialtag != null "> and artificialtag = #{artificialtag}</if> |
| | | <if test="relationcode != null and relationcode != ''"> and relationcode = #{relationcode}</if> |
| | | <if test="schemecode != null and schemecode != ''"> and schemecode = #{schemecode}</if> |
| | | <if test="lastplantime != null "> and lastplantime = #{lastplantime}</if> |
| | | <if test="istest != null "> and istest = #{istest}</if> |
| | | <if test="firstplantime != null "> and firstplantime = #{firstplantime}</if> |
| | | <if test="repeatsecond != null "> and repeatsecond = #{repeatsecond}</if> |
| | | <if test="isrepeat != null "> and isrepeat = #{isrepeat}</if> |
| | | <if test="ismanual != null "> and ismanual = #{ismanual}</if> |
| | | <if test="losstime != null "> and losstime = #{losstime}</if> |
| | | <if test="relationlistid != null and relationlistid != ''"> and relationlistid = #{relationlistid}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSchemeTaskById" parameterType="Long" resultMap="SchemeTaskResult"> |
| | | <include refid="selectSchemeTaskVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeTask" parameterType="SchemeTask" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_task |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid,</if> |
| | | <if test="schemeplanid != null">schemeplanid,</if> |
| | | <if test="patientid != null">patientid,</if> |
| | | <if test="state != null">state,</if> |
| | | <if test="baselinetime != null">baselinetime,</if> |
| | | <if test="plantime != null">plantime,</if> |
| | | <if test="actualtime != null">actualtime,</if> |
| | | <if test="overtime != null">overtime,</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="patientsource != null">patientsource,</if> |
| | | <if test="taskconfigid != null">taskconfigid,</if> |
| | | <if test="relationid != null">relationid,</if> |
| | | <if test="relationname != null">relationname,</if> |
| | | <if test="content != null">content,</if> |
| | | <if test="tipscontent != null">tipscontent,</if> |
| | | <if test="tasktype != null">tasktype,</if> |
| | | <if test="finshtime != null">finshtime,</if> |
| | | <if test="finshtype != null">finshtype,</if> |
| | | <if test="finshdesc != null">finshdesc,</if> |
| | | <if test="termvaliditytime != null">termvaliditytime,</if> |
| | | <if test="schemestatus != null">schemestatus,</if> |
| | | <if test="visitid != null">visitid,</if> |
| | | <if test="visittype != null">visittype,</if> |
| | | <if test="tasksource != null">tasksource,</if> |
| | | <if test="relationtype != null">relationtype,</if> |
| | | <if test="isartificial != null">isartificial,</if> |
| | | <if test="overduetipstime != null">overduetipstime,</if> |
| | | <if test="isabnormal != null">isabnormal,</if> |
| | | <if test="artificialtag != null">artificialtag,</if> |
| | | <if test="relationcode != null">relationcode,</if> |
| | | <if test="schemecode != null">schemecode,</if> |
| | | <if test="lastplantime != null">lastplantime,</if> |
| | | <if test="istest != null">istest,</if> |
| | | <if test="firstplantime != null">firstplantime,</if> |
| | | <if test="repeatsecond != null">repeatsecond,</if> |
| | | <if test="isrepeat != null">isrepeat,</if> |
| | | <if test="ismanual != null">ismanual,</if> |
| | | <if test="losstime != null">losstime,</if> |
| | | <if test="relationlistid != null">relationlistid,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">#{schemeid},</if> |
| | | <if test="schemeplanid != null">#{schemeplanid},</if> |
| | | <if test="patientid != null">#{patientid},</if> |
| | | <if test="state != null">#{state},</if> |
| | | <if test="baselinetime != null">#{baselinetime},</if> |
| | | <if test="plantime != null">#{plantime},</if> |
| | | <if test="actualtime != null">#{actualtime},</if> |
| | | <if test="overtime != null">#{overtime},</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="patientsource != null">#{patientsource},</if> |
| | | <if test="taskconfigid != null">#{taskconfigid},</if> |
| | | <if test="relationid != null">#{relationid},</if> |
| | | <if test="relationname != null">#{relationname},</if> |
| | | <if test="content != null">#{content},</if> |
| | | <if test="tipscontent != null">#{tipscontent},</if> |
| | | <if test="tasktype != null">#{tasktype},</if> |
| | | <if test="finshtime != null">#{finshtime},</if> |
| | | <if test="finshtype != null">#{finshtype},</if> |
| | | <if test="finshdesc != null">#{finshdesc},</if> |
| | | <if test="termvaliditytime != null">#{termvaliditytime},</if> |
| | | <if test="schemestatus != null">#{schemestatus},</if> |
| | | <if test="visitid != null">#{visitid},</if> |
| | | <if test="visittype != null">#{visittype},</if> |
| | | <if test="tasksource != null">#{tasksource},</if> |
| | | <if test="relationtype != null">#{relationtype},</if> |
| | | <if test="isartificial != null">#{isartificial},</if> |
| | | <if test="overduetipstime != null">#{overduetipstime},</if> |
| | | <if test="isabnormal != null">#{isabnormal},</if> |
| | | <if test="artificialtag != null">#{artificialtag},</if> |
| | | <if test="relationcode != null">#{relationcode},</if> |
| | | <if test="schemecode != null">#{schemecode},</if> |
| | | <if test="lastplantime != null">#{lastplantime},</if> |
| | | <if test="istest != null">#{istest},</if> |
| | | <if test="firstplantime != null">#{firstplantime},</if> |
| | | <if test="repeatsecond != null">#{repeatsecond},</if> |
| | | <if test="isrepeat != null">#{isrepeat},</if> |
| | | <if test="ismanual != null">#{ismanual},</if> |
| | | <if test="losstime != null">#{losstime},</if> |
| | | <if test="relationlistid != null">#{relationlistid},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSchemeTask" parameterType="SchemeTask"> |
| | | update scheme_task |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid = #{schemeid},</if> |
| | | <if test="schemeplanid != null">schemeplanid = #{schemeplanid},</if> |
| | | <if test="patientid != null">patientid = #{patientid},</if> |
| | | <if test="state != null">state = #{state},</if> |
| | | <if test="baselinetime != null">baselinetime = #{baselinetime},</if> |
| | | <if test="plantime != null">plantime = #{plantime},</if> |
| | | <if test="actualtime != null">actualtime = #{actualtime},</if> |
| | | <if test="overtime != null">overtime = #{overtime},</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="patientsource != null">patientsource = #{patientsource},</if> |
| | | <if test="taskconfigid != null">taskconfigid = #{taskconfigid},</if> |
| | | <if test="relationid != null">relationid = #{relationid},</if> |
| | | <if test="relationname != null">relationname = #{relationname},</if> |
| | | <if test="content != null">content = #{content},</if> |
| | | <if test="tipscontent != null">tipscontent = #{tipscontent},</if> |
| | | <if test="tasktype != null">tasktype = #{tasktype},</if> |
| | | <if test="finshtime != null">finshtime = #{finshtime},</if> |
| | | <if test="finshtype != null">finshtype = #{finshtype},</if> |
| | | <if test="finshdesc != null">finshdesc = #{finshdesc},</if> |
| | | <if test="termvaliditytime != null">termvaliditytime = #{termvaliditytime},</if> |
| | | <if test="schemestatus != null">schemestatus = #{schemestatus},</if> |
| | | <if test="visitid != null">visitid = #{visitid},</if> |
| | | <if test="visittype != null">visittype = #{visittype},</if> |
| | | <if test="tasksource != null">tasksource = #{tasksource},</if> |
| | | <if test="relationtype != null">relationtype = #{relationtype},</if> |
| | | <if test="isartificial != null">isartificial = #{isartificial},</if> |
| | | <if test="overduetipstime != null">overduetipstime = #{overduetipstime},</if> |
| | | <if test="isabnormal != null">isabnormal = #{isabnormal},</if> |
| | | <if test="artificialtag != null">artificialtag = #{artificialtag},</if> |
| | | <if test="relationcode != null">relationcode = #{relationcode},</if> |
| | | <if test="schemecode != null">schemecode = #{schemecode},</if> |
| | | <if test="lastplantime != null">lastplantime = #{lastplantime},</if> |
| | | <if test="istest != null">istest = #{istest},</if> |
| | | <if test="firstplantime != null">firstplantime = #{firstplantime},</if> |
| | | <if test="repeatsecond != null">repeatsecond = #{repeatsecond},</if> |
| | | <if test="isrepeat != null">isrepeat = #{isrepeat},</if> |
| | | <if test="ismanual != null">ismanual = #{ismanual},</if> |
| | | <if test="losstime != null">losstime = #{losstime},</if> |
| | | <if test="relationlistid != null">relationlistid = #{relationlistid},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeTaskById" parameterType="Long"> |
| | | delete from scheme_task where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeTaskByIds" parameterType="String"> |
| | | delete from scheme_task where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemeTaskconfigMapper"> |
| | | |
| | | <resultMap type="SchemeTaskconfig" id="SchemeTaskconfigResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="schemeid" column="schemeid" /> |
| | | <result property="triggersceneid" column="triggersceneid" /> |
| | | <result property="triggerruleid" column="triggerruleid" /> |
| | | <result property="tasktype" column="tasktype" /> |
| | | <result property="iscycle" column="iscycle" /> |
| | | <result property="planexecutevalue" column="planexecutevalue" /> |
| | | <result property="planexecuteunit" column="planexecuteunit" /> |
| | | <result property="planexecutetime" column="planexecutetime" /> |
| | | <result property="planexecutetype" column="planexecutetype" /> |
| | | <result property="isrealtime" column="isrealtime" /> |
| | | <result property="cyclefrequency" column="cyclefrequency" /> |
| | | <result property="cyclefrequencyunit" column="cyclefrequencyunit" /> |
| | | <result property="cyclefrequencycount" column="cyclefrequencycount" /> |
| | | <result property="termvalidityday" column="termvalidityday" /> |
| | | <result property="termvalidityrule" column="termvalidityrule" /> |
| | | <result property="termvaliditytipsday" column="termvaliditytipsday" /> |
| | | <result property="termvaliditytipstime" column="termvaliditytipstime" /> |
| | | <result property="relationid" column="relationid" /> |
| | | <result property="content" column="content" /> |
| | | <result property="tipscontent" column="tipscontent" /> |
| | | <result property="limitedday" column="limitedday" /> |
| | | <result property="overdueday" column="overdueday" /> |
| | | <result property="overduetipsday" column="overduetipsday" /> |
| | | <result property="lossday" column="lossday" /> |
| | | <result property="executetype" column="executetype" /> |
| | | <result property="executetemplate" column="executetemplate" /> |
| | | <result property="executetemplateextra" column="executetemplateextra" /> |
| | | <result property="executeorder" column="executeorder" /> |
| | | <result property="executevoicetype" column="executevoicetype" /> |
| | | <result property="executevoicecontent" column="executevoicecontent" /> |
| | | <result property="exeutetipspersonid" column="exeutetipspersonid" /> |
| | | <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="islocal" column="islocal" /> |
| | | <result property="relationtype" column="relationtype" /> |
| | | <result property="voicemanufacturers" column="voicemanufacturers" /> |
| | | <result property="voiceconfig" column="voiceconfig" /> |
| | | <result property="completecondition" column="completecondition" /> |
| | | <result property="completeconditionstate" column="completeconditionstate" /> |
| | | <result property="relationlistid" column="relationlistid" /> |
| | | <result property="relationcode" column="relationcode" /> |
| | | <result property="isrepeat" column="isrepeat" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSchemeTaskconfigVo"> |
| | | select id, schemeid, triggersceneid, triggerruleid, tasktype, iscycle, planexecutevalue, planexecuteunit, planexecutetime, planexecutetype, isrealtime, cyclefrequency, cyclefrequencyunit, cyclefrequencycount, termvalidityday, termvalidityrule, termvaliditytipsday, termvaliditytipstime, relationid, content, tipscontent, limitedday, overdueday, overduetipsday, lossday, executetype, executetemplate, executetemplateextra, executeorder, executevoicetype, executevoicecontent, exeutetipspersonid, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, islocal, relationtype, voicemanufacturers, voiceconfig, completecondition, completeconditionstate, relationlistid, relationcode, isrepeat from scheme_taskconfig |
| | | </sql> |
| | | |
| | | <select id="selectSchemeTaskconfigList" parameterType="SchemeTaskconfig" resultMap="SchemeTaskconfigResult"> |
| | | <include refid="selectSchemeTaskconfigVo"/> |
| | | <where> |
| | | <if test="schemeid != null "> and schemeid = #{schemeid}</if> |
| | | <if test="triggersceneid != null "> and triggersceneid = #{triggersceneid}</if> |
| | | <if test="triggerruleid != null "> and triggerruleid = #{triggerruleid}</if> |
| | | <if test="tasktype != null "> and tasktype = #{tasktype}</if> |
| | | <if test="iscycle != null "> and iscycle = #{iscycle}</if> |
| | | <if test="planexecutevalue != null "> and planexecutevalue = #{planexecutevalue}</if> |
| | | <if test="planexecuteunit != null "> and planexecuteunit = #{planexecuteunit}</if> |
| | | <if test="planexecutetime != null and planexecutetime != ''"> and planexecutetime = #{planexecutetime}</if> |
| | | <if test="planexecutetype != null "> and planexecutetype = #{planexecutetype}</if> |
| | | <if test="isrealtime != null "> and isrealtime = #{isrealtime}</if> |
| | | <if test="cyclefrequency != null "> and cyclefrequency = #{cyclefrequency}</if> |
| | | <if test="cyclefrequencyunit != null "> and cyclefrequencyunit = #{cyclefrequencyunit}</if> |
| | | <if test="cyclefrequencycount != null "> and cyclefrequencycount = #{cyclefrequencycount}</if> |
| | | <if test="termvalidityday != null "> and termvalidityday = #{termvalidityday}</if> |
| | | <if test="termvalidityrule != null "> and termvalidityrule = #{termvalidityrule}</if> |
| | | <if test="termvaliditytipsday != null "> and termvaliditytipsday = #{termvaliditytipsday}</if> |
| | | <if test="termvaliditytipstime != null and termvaliditytipstime != ''"> and termvaliditytipstime = #{termvaliditytipstime}</if> |
| | | <if test="relationid != null "> and relationid = #{relationid}</if> |
| | | <if test="content != null and content != ''"> and content = #{content}</if> |
| | | <if test="tipscontent != null and tipscontent != ''"> and tipscontent = #{tipscontent}</if> |
| | | <if test="limitedday != null "> and limitedday = #{limitedday}</if> |
| | | <if test="overdueday != null "> and overdueday = #{overdueday}</if> |
| | | <if test="overduetipsday != null "> and overduetipsday = #{overduetipsday}</if> |
| | | <if test="lossday != null "> and lossday = #{lossday}</if> |
| | | <if test="executetype != null "> and executetype = #{executetype}</if> |
| | | <if test="executetemplate != null "> and executetemplate = #{executetemplate}</if> |
| | | <if test="executetemplateextra != null "> and executetemplateextra = #{executetemplateextra}</if> |
| | | <if test="executeorder != null "> and executeorder = #{executeorder}</if> |
| | | <if test="executevoicetype != null and executevoicetype != ''"> and executevoicetype = #{executevoicetype}</if> |
| | | <if test="executevoicecontent != null and executevoicecontent != ''"> and executevoicecontent = #{executevoicecontent}</if> |
| | | <if test="exeutetipspersonid != null and exeutetipspersonid != ''"> and exeutetipspersonid = #{exeutetipspersonid}</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="islocal != null "> and islocal = #{islocal}</if> |
| | | <if test="relationtype != null "> and relationtype = #{relationtype}</if> |
| | | <if test="voicemanufacturers != null "> and voicemanufacturers = #{voicemanufacturers}</if> |
| | | <if test="voiceconfig != null and voiceconfig != ''"> and voiceconfig = #{voiceconfig}</if> |
| | | <if test="completecondition != null "> and completecondition = #{completecondition}</if> |
| | | <if test="completeconditionstate != null "> and completeconditionstate = #{completeconditionstate}</if> |
| | | <if test="relationlistid != null and relationlistid != ''"> and relationlistid = #{relationlistid}</if> |
| | | <if test="relationcode != null and relationcode != ''"> and relationcode = #{relationcode}</if> |
| | | <if test="isrepeat != null "> and isrepeat = #{isrepeat}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSchemeTaskconfigById" parameterType="Long" resultMap="SchemeTaskconfigResult"> |
| | | <include refid="selectSchemeTaskconfigVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeTaskconfig" parameterType="SchemeTaskconfig" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_taskconfig |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid,</if> |
| | | <if test="triggersceneid != null">triggersceneid,</if> |
| | | <if test="triggerruleid != null">triggerruleid,</if> |
| | | <if test="tasktype != null">tasktype,</if> |
| | | <if test="iscycle != null">iscycle,</if> |
| | | <if test="planexecutevalue != null">planexecutevalue,</if> |
| | | <if test="planexecuteunit != null">planexecuteunit,</if> |
| | | <if test="planexecutetime != null">planexecutetime,</if> |
| | | <if test="planexecutetype != null">planexecutetype,</if> |
| | | <if test="isrealtime != null">isrealtime,</if> |
| | | <if test="cyclefrequency != null">cyclefrequency,</if> |
| | | <if test="cyclefrequencyunit != null">cyclefrequencyunit,</if> |
| | | <if test="cyclefrequencycount != null">cyclefrequencycount,</if> |
| | | <if test="termvalidityday != null">termvalidityday,</if> |
| | | <if test="termvalidityrule != null">termvalidityrule,</if> |
| | | <if test="termvaliditytipsday != null">termvaliditytipsday,</if> |
| | | <if test="termvaliditytipstime != null">termvaliditytipstime,</if> |
| | | <if test="relationid != null">relationid,</if> |
| | | <if test="content != null">content,</if> |
| | | <if test="tipscontent != null">tipscontent,</if> |
| | | <if test="limitedday != null">limitedday,</if> |
| | | <if test="overdueday != null">overdueday,</if> |
| | | <if test="overduetipsday != null">overduetipsday,</if> |
| | | <if test="lossday != null">lossday,</if> |
| | | <if test="executetype != null">executetype,</if> |
| | | <if test="executetemplate != null">executetemplate,</if> |
| | | <if test="executetemplateextra != null">executetemplateextra,</if> |
| | | <if test="executeorder != null">executeorder,</if> |
| | | <if test="executevoicetype != null">executevoicetype,</if> |
| | | <if test="executevoicecontent != null">executevoicecontent,</if> |
| | | <if test="exeutetipspersonid != null">exeutetipspersonid,</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="islocal != null">islocal,</if> |
| | | <if test="relationtype != null">relationtype,</if> |
| | | <if test="voicemanufacturers != null">voicemanufacturers,</if> |
| | | <if test="voiceconfig != null">voiceconfig,</if> |
| | | <if test="completecondition != null">completecondition,</if> |
| | | <if test="completeconditionstate != null">completeconditionstate,</if> |
| | | <if test="relationlistid != null">relationlistid,</if> |
| | | <if test="relationcode != null">relationcode,</if> |
| | | <if test="isrepeat != null">isrepeat,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">#{schemeid},</if> |
| | | <if test="triggersceneid != null">#{triggersceneid},</if> |
| | | <if test="triggerruleid != null">#{triggerruleid},</if> |
| | | <if test="tasktype != null">#{tasktype},</if> |
| | | <if test="iscycle != null">#{iscycle},</if> |
| | | <if test="planexecutevalue != null">#{planexecutevalue},</if> |
| | | <if test="planexecuteunit != null">#{planexecuteunit},</if> |
| | | <if test="planexecutetime != null">#{planexecutetime},</if> |
| | | <if test="planexecutetype != null">#{planexecutetype},</if> |
| | | <if test="isrealtime != null">#{isrealtime},</if> |
| | | <if test="cyclefrequency != null">#{cyclefrequency},</if> |
| | | <if test="cyclefrequencyunit != null">#{cyclefrequencyunit},</if> |
| | | <if test="cyclefrequencycount != null">#{cyclefrequencycount},</if> |
| | | <if test="termvalidityday != null">#{termvalidityday},</if> |
| | | <if test="termvalidityrule != null">#{termvalidityrule},</if> |
| | | <if test="termvaliditytipsday != null">#{termvaliditytipsday},</if> |
| | | <if test="termvaliditytipstime != null">#{termvaliditytipstime},</if> |
| | | <if test="relationid != null">#{relationid},</if> |
| | | <if test="content != null">#{content},</if> |
| | | <if test="tipscontent != null">#{tipscontent},</if> |
| | | <if test="limitedday != null">#{limitedday},</if> |
| | | <if test="overdueday != null">#{overdueday},</if> |
| | | <if test="overduetipsday != null">#{overduetipsday},</if> |
| | | <if test="lossday != null">#{lossday},</if> |
| | | <if test="executetype != null">#{executetype},</if> |
| | | <if test="executetemplate != null">#{executetemplate},</if> |
| | | <if test="executetemplateextra != null">#{executetemplateextra},</if> |
| | | <if test="executeorder != null">#{executeorder},</if> |
| | | <if test="executevoicetype != null">#{executevoicetype},</if> |
| | | <if test="executevoicecontent != null">#{executevoicecontent},</if> |
| | | <if test="exeutetipspersonid != null">#{exeutetipspersonid},</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="islocal != null">#{islocal},</if> |
| | | <if test="relationtype != null">#{relationtype},</if> |
| | | <if test="voicemanufacturers != null">#{voicemanufacturers},</if> |
| | | <if test="voiceconfig != null">#{voiceconfig},</if> |
| | | <if test="completecondition != null">#{completecondition},</if> |
| | | <if test="completeconditionstate != null">#{completeconditionstate},</if> |
| | | <if test="relationlistid != null">#{relationlistid},</if> |
| | | <if test="relationcode != null">#{relationcode},</if> |
| | | <if test="isrepeat != null">#{isrepeat},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSchemeTaskconfig" parameterType="SchemeTaskconfig"> |
| | | update scheme_taskconfig |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid = #{schemeid},</if> |
| | | <if test="triggersceneid != null">triggersceneid = #{triggersceneid},</if> |
| | | <if test="triggerruleid != null">triggerruleid = #{triggerruleid},</if> |
| | | <if test="tasktype != null">tasktype = #{tasktype},</if> |
| | | <if test="iscycle != null">iscycle = #{iscycle},</if> |
| | | <if test="planexecutevalue != null">planexecutevalue = #{planexecutevalue},</if> |
| | | <if test="planexecuteunit != null">planexecuteunit = #{planexecuteunit},</if> |
| | | <if test="planexecutetime != null">planexecutetime = #{planexecutetime},</if> |
| | | <if test="planexecutetype != null">planexecutetype = #{planexecutetype},</if> |
| | | <if test="isrealtime != null">isrealtime = #{isrealtime},</if> |
| | | <if test="cyclefrequency != null">cyclefrequency = #{cyclefrequency},</if> |
| | | <if test="cyclefrequencyunit != null">cyclefrequencyunit = #{cyclefrequencyunit},</if> |
| | | <if test="cyclefrequencycount != null">cyclefrequencycount = #{cyclefrequencycount},</if> |
| | | <if test="termvalidityday != null">termvalidityday = #{termvalidityday},</if> |
| | | <if test="termvalidityrule != null">termvalidityrule = #{termvalidityrule},</if> |
| | | <if test="termvaliditytipsday != null">termvaliditytipsday = #{termvaliditytipsday},</if> |
| | | <if test="termvaliditytipstime != null">termvaliditytipstime = #{termvaliditytipstime},</if> |
| | | <if test="relationid != null">relationid = #{relationid},</if> |
| | | <if test="content != null">content = #{content},</if> |
| | | <if test="tipscontent != null">tipscontent = #{tipscontent},</if> |
| | | <if test="limitedday != null">limitedday = #{limitedday},</if> |
| | | <if test="overdueday != null">overdueday = #{overdueday},</if> |
| | | <if test="overduetipsday != null">overduetipsday = #{overduetipsday},</if> |
| | | <if test="lossday != null">lossday = #{lossday},</if> |
| | | <if test="executetype != null">executetype = #{executetype},</if> |
| | | <if test="executetemplate != null">executetemplate = #{executetemplate},</if> |
| | | <if test="executetemplateextra != null">executetemplateextra = #{executetemplateextra},</if> |
| | | <if test="executeorder != null">executeorder = #{executeorder},</if> |
| | | <if test="executevoicetype != null">executevoicetype = #{executevoicetype},</if> |
| | | <if test="executevoicecontent != null">executevoicecontent = #{executevoicecontent},</if> |
| | | <if test="exeutetipspersonid != null">exeutetipspersonid = #{exeutetipspersonid},</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="islocal != null">islocal = #{islocal},</if> |
| | | <if test="relationtype != null">relationtype = #{relationtype},</if> |
| | | <if test="voicemanufacturers != null">voicemanufacturers = #{voicemanufacturers},</if> |
| | | <if test="voiceconfig != null">voiceconfig = #{voiceconfig},</if> |
| | | <if test="completecondition != null">completecondition = #{completecondition},</if> |
| | | <if test="completeconditionstate != null">completeconditionstate = #{completeconditionstate},</if> |
| | | <if test="relationlistid != null">relationlistid = #{relationlistid},</if> |
| | | <if test="relationcode != null">relationcode = #{relationcode},</if> |
| | | <if test="isrepeat != null">isrepeat = #{isrepeat},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeTaskconfigById" parameterType="Long"> |
| | | delete from scheme_taskconfig where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeTaskconfigByIds" parameterType="String"> |
| | | delete from scheme_taskconfig where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemeTaskrecordCalldetailMapper"> |
| | | |
| | | <resultMap type="SchemeTaskrecordCalldetail" id="SchemeTaskrecordCalldetailResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="uuid" column="uuid" /> |
| | | <result property="phone" column="phone" /> |
| | | <result property="operate" column="operate" /> |
| | | <result property="displayno" column="displayno" /> |
| | | <result property="inbound" column="inbound" /> |
| | | <result property="incoming" column="incoming" /> |
| | | <result property="assigntime" column="assigntime" /> |
| | | <result property="starttime" column="starttime" /> |
| | | <result property="answertime" column="answertime" /> |
| | | <result property="silent" column="silent" /> |
| | | <result property="dtmfKey" column="dtmf_key" /> |
| | | <result property="musicpath" column="musicpath" /> |
| | | <result property="sentindex" column="sentindex" /> |
| | | <result property="sentbegin" column="sentbegin" /> |
| | | <result property="asrtext" column="asrtext" /> |
| | | <result property="begintime" column="begintime" /> |
| | | <result property="endtime" column="endtime" /> |
| | | <result property="sentend" column="sentend" /> |
| | | <result property="recordpath" column="recordpath" /> |
| | | <result property="recordurl" column="recordurl" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="taskrecordid" column="taskrecordid" /> |
| | | <result property="flowiid" column="flowiid" /> |
| | | <result property="flownodeid" column="flownodeid" /> |
| | | <result property="corpustext" column="corpustext" /> |
| | | <result property="corpusvoice" column="corpusvoice" /> |
| | | <result property="intentvalue" column="intentvalue" /> |
| | | <result property="matchedtext" column="matchedtext" /> |
| | | <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="selectSchemeTaskrecordCalldetailVo"> |
| | | select id, uuid, phone, operate, displayno, inbound, incoming, assigntime, starttime, answertime, silent, dtmf_key, musicpath, sentindex, sentbegin, asrtext, begintime, endtime, sentend, recordpath, recordurl, sceneid, taskrecordid, flowiid, flownodeid, corpustext, corpusvoice, intentvalue, matchedtext, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from scheme_taskrecord_calldetail |
| | | </sql> |
| | | |
| | | <select id="selectSchemeTaskrecordCalldetailList" parameterType="SchemeTaskrecordCalldetail" resultMap="SchemeTaskrecordCalldetailResult"> |
| | | <include refid="selectSchemeTaskrecordCalldetailVo"/> |
| | | <where> |
| | | <if test="uuid != null and uuid != ''"> and uuid = #{uuid}</if> |
| | | <if test="phone != null and phone != ''"> and phone = #{phone}</if> |
| | | <if test="operate != null and operate != ''"> and operate = #{operate}</if> |
| | | <if test="displayno != null and displayno != ''"> and displayno = #{displayno}</if> |
| | | <if test="inbound != null "> and inbound = #{inbound}</if> |
| | | <if test="incoming != null "> and incoming = #{incoming}</if> |
| | | <if test="assigntime != null "> and assigntime = #{assigntime}</if> |
| | | <if test="starttime != null "> and starttime = #{starttime}</if> |
| | | <if test="answertime != null "> and answertime = #{answertime}</if> |
| | | <if test="silent != null "> and silent = #{silent}</if> |
| | | <if test="dtmfKey != null "> and dtmf_key = #{dtmfKey}</if> |
| | | <if test="musicpath != null and musicpath != ''"> and musicpath = #{musicpath}</if> |
| | | <if test="sentindex != null "> and sentindex = #{sentindex}</if> |
| | | <if test="sentbegin != null "> and sentbegin = #{sentbegin}</if> |
| | | <if test="asrtext != null and asrtext != ''"> and asrtext = #{asrtext}</if> |
| | | <if test="begintime != null "> and begintime = #{begintime}</if> |
| | | <if test="endtime != null "> and endtime = #{endtime}</if> |
| | | <if test="sentend != null "> and sentend = #{sentend}</if> |
| | | <if test="recordpath != null and recordpath != ''"> and recordpath = #{recordpath}</if> |
| | | <if test="recordurl != null and recordurl != ''"> and recordurl = #{recordurl}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="taskrecordid != null "> and taskrecordid = #{taskrecordid}</if> |
| | | <if test="flowiid != null "> and flowiid = #{flowiid}</if> |
| | | <if test="flownodeid != null "> and flownodeid = #{flownodeid}</if> |
| | | <if test="corpustext != null and corpustext != ''"> and corpustext = #{corpustext}</if> |
| | | <if test="corpusvoice != null and corpusvoice != ''"> and corpusvoice = #{corpusvoice}</if> |
| | | <if test="intentvalue != null and intentvalue != ''"> and intentvalue = #{intentvalue}</if> |
| | | <if test="matchedtext != null and matchedtext != ''"> and matchedtext = #{matchedtext}</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="selectSchemeTaskrecordCalldetailById" parameterType="Long" resultMap="SchemeTaskrecordCalldetailResult"> |
| | | <include refid="selectSchemeTaskrecordCalldetailVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeTaskrecordCalldetail" parameterType="SchemeTaskrecordCalldetail" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_taskrecord_calldetail |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="uuid != null">uuid,</if> |
| | | <if test="phone != null">phone,</if> |
| | | <if test="operate != null">operate,</if> |
| | | <if test="displayno != null">displayno,</if> |
| | | <if test="inbound != null">inbound,</if> |
| | | <if test="incoming != null">incoming,</if> |
| | | <if test="assigntime != null">assigntime,</if> |
| | | <if test="starttime != null">starttime,</if> |
| | | <if test="answertime != null">answertime,</if> |
| | | <if test="silent != null">silent,</if> |
| | | <if test="dtmfKey != null">dtmf_key,</if> |
| | | <if test="musicpath != null">musicpath,</if> |
| | | <if test="sentindex != null">sentindex,</if> |
| | | <if test="sentbegin != null">sentbegin,</if> |
| | | <if test="asrtext != null">asrtext,</if> |
| | | <if test="begintime != null">begintime,</if> |
| | | <if test="endtime != null">endtime,</if> |
| | | <if test="sentend != null">sentend,</if> |
| | | <if test="recordpath != null">recordpath,</if> |
| | | <if test="recordurl != null">recordurl,</if> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | <if test="taskrecordid != null">taskrecordid,</if> |
| | | <if test="flowiid != null">flowiid,</if> |
| | | <if test="flownodeid != null">flownodeid,</if> |
| | | <if test="corpustext != null">corpustext,</if> |
| | | <if test="corpusvoice != null">corpusvoice,</if> |
| | | <if test="intentvalue != null">intentvalue,</if> |
| | | <if test="matchedtext != null">matchedtext,</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="uuid != null">#{uuid},</if> |
| | | <if test="phone != null">#{phone},</if> |
| | | <if test="operate != null">#{operate},</if> |
| | | <if test="displayno != null">#{displayno},</if> |
| | | <if test="inbound != null">#{inbound},</if> |
| | | <if test="incoming != null">#{incoming},</if> |
| | | <if test="assigntime != null">#{assigntime},</if> |
| | | <if test="starttime != null">#{starttime},</if> |
| | | <if test="answertime != null">#{answertime},</if> |
| | | <if test="silent != null">#{silent},</if> |
| | | <if test="dtmfKey != null">#{dtmfKey},</if> |
| | | <if test="musicpath != null">#{musicpath},</if> |
| | | <if test="sentindex != null">#{sentindex},</if> |
| | | <if test="sentbegin != null">#{sentbegin},</if> |
| | | <if test="asrtext != null">#{asrtext},</if> |
| | | <if test="begintime != null">#{begintime},</if> |
| | | <if test="endtime != null">#{endtime},</if> |
| | | <if test="sentend != null">#{sentend},</if> |
| | | <if test="recordpath != null">#{recordpath},</if> |
| | | <if test="recordurl != null">#{recordurl},</if> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | <if test="taskrecordid != null">#{taskrecordid},</if> |
| | | <if test="flowiid != null">#{flowiid},</if> |
| | | <if test="flownodeid != null">#{flownodeid},</if> |
| | | <if test="corpustext != null">#{corpustext},</if> |
| | | <if test="corpusvoice != null">#{corpusvoice},</if> |
| | | <if test="intentvalue != null">#{intentvalue},</if> |
| | | <if test="matchedtext != null">#{matchedtext},</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="updateSchemeTaskrecordCalldetail" parameterType="SchemeTaskrecordCalldetail"> |
| | | update scheme_taskrecord_calldetail |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="uuid != null">uuid = #{uuid},</if> |
| | | <if test="phone != null">phone = #{phone},</if> |
| | | <if test="operate != null">operate = #{operate},</if> |
| | | <if test="displayno != null">displayno = #{displayno},</if> |
| | | <if test="inbound != null">inbound = #{inbound},</if> |
| | | <if test="incoming != null">incoming = #{incoming},</if> |
| | | <if test="assigntime != null">assigntime = #{assigntime},</if> |
| | | <if test="starttime != null">starttime = #{starttime},</if> |
| | | <if test="answertime != null">answertime = #{answertime},</if> |
| | | <if test="silent != null">silent = #{silent},</if> |
| | | <if test="dtmfKey != null">dtmf_key = #{dtmfKey},</if> |
| | | <if test="musicpath != null">musicpath = #{musicpath},</if> |
| | | <if test="sentindex != null">sentindex = #{sentindex},</if> |
| | | <if test="sentbegin != null">sentbegin = #{sentbegin},</if> |
| | | <if test="asrtext != null">asrtext = #{asrtext},</if> |
| | | <if test="begintime != null">begintime = #{begintime},</if> |
| | | <if test="endtime != null">endtime = #{endtime},</if> |
| | | <if test="sentend != null">sentend = #{sentend},</if> |
| | | <if test="recordpath != null">recordpath = #{recordpath},</if> |
| | | <if test="recordurl != null">recordurl = #{recordurl},</if> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="taskrecordid != null">taskrecordid = #{taskrecordid},</if> |
| | | <if test="flowiid != null">flowiid = #{flowiid},</if> |
| | | <if test="flownodeid != null">flownodeid = #{flownodeid},</if> |
| | | <if test="corpustext != null">corpustext = #{corpustext},</if> |
| | | <if test="corpusvoice != null">corpusvoice = #{corpusvoice},</if> |
| | | <if test="intentvalue != null">intentvalue = #{intentvalue},</if> |
| | | <if test="matchedtext != null">matchedtext = #{matchedtext},</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 id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeTaskrecordCalldetailById" parameterType="Long"> |
| | | delete from scheme_taskrecord_calldetail where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeTaskrecordCalldetailByIds" parameterType="String"> |
| | | delete from scheme_taskrecord_calldetail where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemeTaskrecordMapper"> |
| | | |
| | | <resultMap type="SchemeTaskrecord" id="SchemeTaskrecordResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="recordtype" column="recordtype" /> |
| | | <result property="taskid" column="taskid" /> |
| | | <result property="result" column="result" /> |
| | | <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="relationid" column="relationid" /> |
| | | <result property="channeltype" column="channeltype" /> |
| | | <result property="sendtime" column="sendtime" /> |
| | | <result property="operator" column="operator" /> |
| | | <result property="replytime" column="replytime" /> |
| | | <result property="reviewtime" column="reviewtime" /> |
| | | <result property="state" column="state" /> |
| | | <result property="reviewstate" column="reviewstate" /> |
| | | <result property="sceneid" column="sceneid" /> |
| | | <result property="uuid" column="uuid" /> |
| | | <result property="sendphone" column="sendphone" /> |
| | | <result property="isagain" column="isagain" /> |
| | | <result property="seatsid" column="seatsid" /> |
| | | <result property="handletype" column="handletype" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSchemeTaskrecordVo"> |
| | | select id, recordtype, taskid, result, remark, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, relationid, channeltype, sendtime, operator, replytime, reviewtime, state, reviewstate, sceneid, uuid, sendphone, isagain, seatsid, handletype from scheme_taskrecord |
| | | </sql> |
| | | |
| | | <select id="selectSchemeTaskrecordList" parameterType="SchemeTaskrecord" resultMap="SchemeTaskrecordResult"> |
| | | <include refid="selectSchemeTaskrecordVo"/> |
| | | <where> |
| | | <if test="recordtype != null "> and recordtype = #{recordtype}</if> |
| | | <if test="taskid != null "> and taskid = #{taskid}</if> |
| | | <if test="result != null and result != ''"> and result = #{result}</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="relationid != null "> and relationid = #{relationid}</if> |
| | | <if test="channeltype != null "> and channeltype = #{channeltype}</if> |
| | | <if test="sendtime != null "> and sendtime = #{sendtime}</if> |
| | | <if test="operator != null and operator != ''"> and operator = #{operator}</if> |
| | | <if test="replytime != null "> and replytime = #{replytime}</if> |
| | | <if test="reviewtime != null "> and reviewtime = #{reviewtime}</if> |
| | | <if test="state != null "> and state = #{state}</if> |
| | | <if test="reviewstate != null "> and reviewstate = #{reviewstate}</if> |
| | | <if test="sceneid != null "> and sceneid = #{sceneid}</if> |
| | | <if test="uuid != null and uuid != ''"> and uuid = #{uuid}</if> |
| | | <if test="sendphone != null and sendphone != ''"> and sendphone = #{sendphone}</if> |
| | | <if test="isagain != null "> and isagain = #{isagain}</if> |
| | | <if test="seatsid != null "> and seatsid = #{seatsid}</if> |
| | | <if test="handletype != null "> and handletype = #{handletype}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSchemeTaskrecordById" parameterType="Long" resultMap="SchemeTaskrecordResult"> |
| | | <include refid="selectSchemeTaskrecordVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeTaskrecord" parameterType="SchemeTaskrecord" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_taskrecord |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="recordtype != null">recordtype,</if> |
| | | <if test="taskid != null">taskid,</if> |
| | | <if test="result != null">result,</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="relationid != null">relationid,</if> |
| | | <if test="channeltype != null">channeltype,</if> |
| | | <if test="sendtime != null">sendtime,</if> |
| | | <if test="operator != null">operator,</if> |
| | | <if test="replytime != null">replytime,</if> |
| | | <if test="reviewtime != null">reviewtime,</if> |
| | | <if test="state != null">state,</if> |
| | | <if test="reviewstate != null">reviewstate,</if> |
| | | <if test="sceneid != null">sceneid,</if> |
| | | <if test="uuid != null">uuid,</if> |
| | | <if test="sendphone != null">sendphone,</if> |
| | | <if test="isagain != null">isagain,</if> |
| | | <if test="seatsid != null">seatsid,</if> |
| | | <if test="handletype != null">handletype,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="recordtype != null">#{recordtype},</if> |
| | | <if test="taskid != null">#{taskid},</if> |
| | | <if test="result != null">#{result},</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="relationid != null">#{relationid},</if> |
| | | <if test="channeltype != null">#{channeltype},</if> |
| | | <if test="sendtime != null">#{sendtime},</if> |
| | | <if test="operator != null">#{operator},</if> |
| | | <if test="replytime != null">#{replytime},</if> |
| | | <if test="reviewtime != null">#{reviewtime},</if> |
| | | <if test="state != null">#{state},</if> |
| | | <if test="reviewstate != null">#{reviewstate},</if> |
| | | <if test="sceneid != null">#{sceneid},</if> |
| | | <if test="uuid != null">#{uuid},</if> |
| | | <if test="sendphone != null">#{sendphone},</if> |
| | | <if test="isagain != null">#{isagain},</if> |
| | | <if test="seatsid != null">#{seatsid},</if> |
| | | <if test="handletype != null">#{handletype},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSchemeTaskrecord" parameterType="SchemeTaskrecord"> |
| | | update scheme_taskrecord |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="recordtype != null">recordtype = #{recordtype},</if> |
| | | <if test="taskid != null">taskid = #{taskid},</if> |
| | | <if test="result != null">result = #{result},</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="relationid != null">relationid = #{relationid},</if> |
| | | <if test="channeltype != null">channeltype = #{channeltype},</if> |
| | | <if test="sendtime != null">sendtime = #{sendtime},</if> |
| | | <if test="operator != null">operator = #{operator},</if> |
| | | <if test="replytime != null">replytime = #{replytime},</if> |
| | | <if test="reviewtime != null">reviewtime = #{reviewtime},</if> |
| | | <if test="state != null">state = #{state},</if> |
| | | <if test="reviewstate != null">reviewstate = #{reviewstate},</if> |
| | | <if test="sceneid != null">sceneid = #{sceneid},</if> |
| | | <if test="uuid != null">uuid = #{uuid},</if> |
| | | <if test="sendphone != null">sendphone = #{sendphone},</if> |
| | | <if test="isagain != null">isagain = #{isagain},</if> |
| | | <if test="seatsid != null">seatsid = #{seatsid},</if> |
| | | <if test="handletype != null">handletype = #{handletype},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeTaskrecordById" parameterType="Long"> |
| | | delete from scheme_taskrecord where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeTaskrecordByIds" parameterType="String"> |
| | | delete from scheme_taskrecord where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemeTaskrepeatconfigMapper"> |
| | | |
| | | <resultMap type="SchemeTaskrepeatconfig" id="SchemeTaskrepeatconfigResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="schemeid" column="schemeid" /> |
| | | <result property="triggersceneid" column="triggersceneid" /> |
| | | <result property="triggerruleid" column="triggerruleid" /> |
| | | <result property="taskconfigid" column="taskconfigid" /> |
| | | <result property="executetype" column="executetype" /> |
| | | <result property="executefailtype" column="executefailtype" /> |
| | | <result property="executefailvalue" column="executefailvalue" /> |
| | | <result property="executefailunit" column="executefailunit" /> |
| | | <result property="executetemplate" column="executetemplate" /> |
| | | <result property="executetemplateextra" column="executetemplateextra" /> |
| | | <result property="executeorder" column="executeorder" /> |
| | | <result property="executevoicetype" column="executevoicetype" /> |
| | | <result property="executevoicecontent" column="executevoicecontent" /> |
| | | <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="selectSchemeTaskrepeatconfigVo"> |
| | | select id, schemeid, triggersceneid, triggerruleid, taskconfigid, executetype, executefailtype, executefailvalue, executefailunit, executetemplate, executetemplateextra, executeorder, executevoicetype, executevoicecontent, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time from scheme_taskrepeatconfig |
| | | </sql> |
| | | |
| | | <select id="selectSchemeTaskrepeatconfigList" parameterType="SchemeTaskrepeatconfig" resultMap="SchemeTaskrepeatconfigResult"> |
| | | <include refid="selectSchemeTaskrepeatconfigVo"/> |
| | | <where> |
| | | <if test="schemeid != null "> and schemeid = #{schemeid}</if> |
| | | <if test="triggersceneid != null "> and triggersceneid = #{triggersceneid}</if> |
| | | <if test="triggerruleid != null "> and triggerruleid = #{triggerruleid}</if> |
| | | <if test="taskconfigid != null "> and taskconfigid = #{taskconfigid}</if> |
| | | <if test="executetype != null "> and executetype = #{executetype}</if> |
| | | <if test="executefailtype != null "> and executefailtype = #{executefailtype}</if> |
| | | <if test="executefailvalue != null "> and executefailvalue = #{executefailvalue}</if> |
| | | <if test="executefailunit != null "> and executefailunit = #{executefailunit}</if> |
| | | <if test="executetemplate != null "> and executetemplate = #{executetemplate}</if> |
| | | <if test="executetemplateextra != null "> and executetemplateextra = #{executetemplateextra}</if> |
| | | <if test="executeorder != null "> and executeorder = #{executeorder}</if> |
| | | <if test="executevoicetype != null and executevoicetype != ''"> and executevoicetype = #{executevoicetype}</if> |
| | | <if test="executevoicecontent != null and executevoicecontent != ''"> and executevoicecontent = #{executevoicecontent}</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="selectSchemeTaskrepeatconfigById" parameterType="Long" resultMap="SchemeTaskrepeatconfigResult"> |
| | | <include refid="selectSchemeTaskrepeatconfigVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeTaskrepeatconfig" parameterType="SchemeTaskrepeatconfig" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_taskrepeatconfig |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid,</if> |
| | | <if test="triggersceneid != null">triggersceneid,</if> |
| | | <if test="triggerruleid != null">triggerruleid,</if> |
| | | <if test="taskconfigid != null">taskconfigid,</if> |
| | | <if test="executetype != null">executetype,</if> |
| | | <if test="executefailtype != null">executefailtype,</if> |
| | | <if test="executefailvalue != null">executefailvalue,</if> |
| | | <if test="executefailunit != null">executefailunit,</if> |
| | | <if test="executetemplate != null">executetemplate,</if> |
| | | <if test="executetemplateextra != null">executetemplateextra,</if> |
| | | <if test="executeorder != null">executeorder,</if> |
| | | <if test="executevoicetype != null">executevoicetype,</if> |
| | | <if test="executevoicecontent != null">executevoicecontent,</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="schemeid != null">#{schemeid},</if> |
| | | <if test="triggersceneid != null">#{triggersceneid},</if> |
| | | <if test="triggerruleid != null">#{triggerruleid},</if> |
| | | <if test="taskconfigid != null">#{taskconfigid},</if> |
| | | <if test="executetype != null">#{executetype},</if> |
| | | <if test="executefailtype != null">#{executefailtype},</if> |
| | | <if test="executefailvalue != null">#{executefailvalue},</if> |
| | | <if test="executefailunit != null">#{executefailunit},</if> |
| | | <if test="executetemplate != null">#{executetemplate},</if> |
| | | <if test="executetemplateextra != null">#{executetemplateextra},</if> |
| | | <if test="executeorder != null">#{executeorder},</if> |
| | | <if test="executevoicetype != null">#{executevoicetype},</if> |
| | | <if test="executevoicecontent != null">#{executevoicecontent},</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="updateSchemeTaskrepeatconfig" parameterType="SchemeTaskrepeatconfig"> |
| | | update scheme_taskrepeatconfig |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid = #{schemeid},</if> |
| | | <if test="triggersceneid != null">triggersceneid = #{triggersceneid},</if> |
| | | <if test="triggerruleid != null">triggerruleid = #{triggerruleid},</if> |
| | | <if test="taskconfigid != null">taskconfigid = #{taskconfigid},</if> |
| | | <if test="executetype != null">executetype = #{executetype},</if> |
| | | <if test="executefailtype != null">executefailtype = #{executefailtype},</if> |
| | | <if test="executefailvalue != null">executefailvalue = #{executefailvalue},</if> |
| | | <if test="executefailunit != null">executefailunit = #{executefailunit},</if> |
| | | <if test="executetemplate != null">executetemplate = #{executetemplate},</if> |
| | | <if test="executetemplateextra != null">executetemplateextra = #{executetemplateextra},</if> |
| | | <if test="executeorder != null">executeorder = #{executeorder},</if> |
| | | <if test="executevoicetype != null">executevoicetype = #{executevoicetype},</if> |
| | | <if test="executevoicecontent != null">executevoicecontent = #{executevoicecontent},</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 id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeTaskrepeatconfigById" parameterType="Long"> |
| | | delete from scheme_taskrepeatconfig where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeTaskrepeatconfigByIds" parameterType="String"> |
| | | delete from scheme_taskrepeatconfig where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemeTriggerruleMapper"> |
| | | |
| | | <resultMap type="SchemeTriggerrule" id="SchemeTriggerruleResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="conditionstype" column="conditionstype" /> |
| | | <result property="orand" column="orand" /> |
| | | <result property="ruleconditions" column="ruleconditions" /> |
| | | <result property="parentresultconditionsid" column="parentresultconditionsid" /> |
| | | <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="schemeid" column="schemeid" /> |
| | | <result property="triggersceneid" column="triggersceneid" /> |
| | | <result property="conditionstypesecord" column="conditionstypesecord" /> |
| | | <result property="conditionstypethree" column="conditionstypethree" /> |
| | | <result property="verifyrule" column="verifyrule" /> |
| | | <result property="extraruleconditions" column="extraruleconditions" /> |
| | | <result property="extraverifyrule" column="extraverifyrule" /> |
| | | <result property="number" column="number" /> |
| | | <result property="groupnumber" column="groupnumber" /> |
| | | <result property="grouporand" column="grouporand" /> |
| | | <result property="isrequired" column="isrequired" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSchemeTriggerruleVo"> |
| | | select id, conditionstype, orand, ruleconditions, parentresultconditionsid, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, schemeid, triggersceneid, conditionstypesecord, conditionstypethree, verifyrule, extraruleconditions, extraverifyrule, number, groupnumber, grouporand, isrequired from scheme_triggerrule |
| | | </sql> |
| | | |
| | | <select id="selectSchemeTriggerruleList" parameterType="SchemeTriggerrule" resultMap="SchemeTriggerruleResult"> |
| | | <include refid="selectSchemeTriggerruleVo"/> |
| | | <where> |
| | | <if test="conditionstype != null "> and conditionstype = #{conditionstype}</if> |
| | | <if test="orand != null "> and orand = #{orand}</if> |
| | | <if test="ruleconditions != null and ruleconditions != ''"> and ruleconditions = #{ruleconditions}</if> |
| | | <if test="parentresultconditionsid != null and parentresultconditionsid != ''"> and parentresultconditionsid = #{parentresultconditionsid}</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="schemeid != null "> and schemeid = #{schemeid}</if> |
| | | <if test="triggersceneid != null "> and triggersceneid = #{triggersceneid}</if> |
| | | <if test="conditionstypesecord != null "> and conditionstypesecord = #{conditionstypesecord}</if> |
| | | <if test="conditionstypethree != null and conditionstypethree != ''"> and conditionstypethree = #{conditionstypethree}</if> |
| | | <if test="verifyrule != null and verifyrule != ''"> and verifyrule = #{verifyrule}</if> |
| | | <if test="extraruleconditions != null and extraruleconditions != ''"> and extraruleconditions = #{extraruleconditions}</if> |
| | | <if test="extraverifyrule != null and extraverifyrule != ''"> and extraverifyrule = #{extraverifyrule}</if> |
| | | <if test="number != null "> and number = #{number}</if> |
| | | <if test="groupnumber != null "> and groupnumber = #{groupnumber}</if> |
| | | <if test="grouporand != null "> and grouporand = #{grouporand}</if> |
| | | <if test="isrequired != null "> and isrequired = #{isrequired}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSchemeTriggerruleById" parameterType="Long" resultMap="SchemeTriggerruleResult"> |
| | | <include refid="selectSchemeTriggerruleVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeTriggerrule" parameterType="SchemeTriggerrule" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_triggerrule |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="conditionstype != null">conditionstype,</if> |
| | | <if test="orand != null">orand,</if> |
| | | <if test="ruleconditions != null">ruleconditions,</if> |
| | | <if test="parentresultconditionsid != null">parentresultconditionsid,</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="schemeid != null">schemeid,</if> |
| | | <if test="triggersceneid != null">triggersceneid,</if> |
| | | <if test="conditionstypesecord != null">conditionstypesecord,</if> |
| | | <if test="conditionstypethree != null">conditionstypethree,</if> |
| | | <if test="verifyrule != null">verifyrule,</if> |
| | | <if test="extraruleconditions != null">extraruleconditions,</if> |
| | | <if test="extraverifyrule != null">extraverifyrule,</if> |
| | | <if test="number != null">number,</if> |
| | | <if test="groupnumber != null">groupnumber,</if> |
| | | <if test="grouporand != null">grouporand,</if> |
| | | <if test="isrequired != null">isrequired,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="conditionstype != null">#{conditionstype},</if> |
| | | <if test="orand != null">#{orand},</if> |
| | | <if test="ruleconditions != null">#{ruleconditions},</if> |
| | | <if test="parentresultconditionsid != null">#{parentresultconditionsid},</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="schemeid != null">#{schemeid},</if> |
| | | <if test="triggersceneid != null">#{triggersceneid},</if> |
| | | <if test="conditionstypesecord != null">#{conditionstypesecord},</if> |
| | | <if test="conditionstypethree != null">#{conditionstypethree},</if> |
| | | <if test="verifyrule != null">#{verifyrule},</if> |
| | | <if test="extraruleconditions != null">#{extraruleconditions},</if> |
| | | <if test="extraverifyrule != null">#{extraverifyrule},</if> |
| | | <if test="number != null">#{number},</if> |
| | | <if test="groupnumber != null">#{groupnumber},</if> |
| | | <if test="grouporand != null">#{grouporand},</if> |
| | | <if test="isrequired != null">#{isrequired},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSchemeTriggerrule" parameterType="SchemeTriggerrule"> |
| | | update scheme_triggerrule |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="conditionstype != null">conditionstype = #{conditionstype},</if> |
| | | <if test="orand != null">orand = #{orand},</if> |
| | | <if test="ruleconditions != null">ruleconditions = #{ruleconditions},</if> |
| | | <if test="parentresultconditionsid != null">parentresultconditionsid = #{parentresultconditionsid},</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="schemeid != null">schemeid = #{schemeid},</if> |
| | | <if test="triggersceneid != null">triggersceneid = #{triggersceneid},</if> |
| | | <if test="conditionstypesecord != null">conditionstypesecord = #{conditionstypesecord},</if> |
| | | <if test="conditionstypethree != null">conditionstypethree = #{conditionstypethree},</if> |
| | | <if test="verifyrule != null">verifyrule = #{verifyrule},</if> |
| | | <if test="extraruleconditions != null">extraruleconditions = #{extraruleconditions},</if> |
| | | <if test="extraverifyrule != null">extraverifyrule = #{extraverifyrule},</if> |
| | | <if test="number != null">number = #{number},</if> |
| | | <if test="groupnumber != null">groupnumber = #{groupnumber},</if> |
| | | <if test="grouporand != null">grouporand = #{grouporand},</if> |
| | | <if test="isrequired != null">isrequired = #{isrequired},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeTriggerruleById" parameterType="Long"> |
| | | delete from scheme_triggerrule where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeTriggerruleByIds" parameterType="String"> |
| | | delete from scheme_triggerrule where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |
¶Ô±ÈÐÂÎļþ |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.smartor.mapper.SchemeTriggersceneMapper"> |
| | | |
| | | <resultMap type="SchemeTriggerscene" id="SchemeTriggersceneResult"> |
| | | <result property="id" column="id" /> |
| | | <result property="schemeid" column="schemeid" /> |
| | | <result property="baselinetime" column="baselinetime" /> |
| | | <result property="triggerornot" column="triggerornot" /> |
| | | <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="ismain" column="ismain" /> |
| | | </resultMap> |
| | | |
| | | <sql id="selectSchemeTriggersceneVo"> |
| | | select id, schemeid, baselinetime, triggerornot, orgid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, ismain from scheme_triggerscene |
| | | </sql> |
| | | |
| | | <select id="selectSchemeTriggersceneList" parameterType="SchemeTriggerscene" resultMap="SchemeTriggersceneResult"> |
| | | <include refid="selectSchemeTriggersceneVo"/> |
| | | <where> |
| | | <if test="schemeid != null "> and schemeid = #{schemeid}</if> |
| | | <if test="baselinetime != null "> and baselinetime = #{baselinetime}</if> |
| | | <if test="triggerornot != null "> and triggerornot = #{triggerornot}</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="ismain != null "> and ismain = #{ismain}</if> |
| | | </where> |
| | | </select> |
| | | |
| | | <select id="selectSchemeTriggersceneById" parameterType="Long" resultMap="SchemeTriggersceneResult"> |
| | | <include refid="selectSchemeTriggersceneVo"/> |
| | | where id = #{id} |
| | | </select> |
| | | |
| | | <insert id="insertSchemeTriggerscene" parameterType="SchemeTriggerscene" useGeneratedKeys="true" keyProperty="id"> |
| | | insert into scheme_triggerscene |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid,</if> |
| | | <if test="baselinetime != null">baselinetime,</if> |
| | | <if test="triggerornot != null">triggerornot,</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="ismain != null">ismain,</if> |
| | | </trim> |
| | | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| | | <if test="schemeid != null">#{schemeid},</if> |
| | | <if test="baselinetime != null">#{baselinetime},</if> |
| | | <if test="triggerornot != null">#{triggerornot},</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="ismain != null">#{ismain},</if> |
| | | </trim> |
| | | </insert> |
| | | |
| | | <update id="updateSchemeTriggerscene" parameterType="SchemeTriggerscene"> |
| | | update scheme_triggerscene |
| | | <trim prefix="SET" suffixOverrides=","> |
| | | <if test="schemeid != null">schemeid = #{schemeid},</if> |
| | | <if test="baselinetime != null">baselinetime = #{baselinetime},</if> |
| | | <if test="triggerornot != null">triggerornot = #{triggerornot},</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="ismain != null">ismain = #{ismain},</if> |
| | | </trim> |
| | | where id = #{id} |
| | | </update> |
| | | |
| | | <delete id="deleteSchemeTriggersceneById" parameterType="Long"> |
| | | delete from scheme_triggerscene where id = #{id} |
| | | </delete> |
| | | |
| | | <delete id="deleteSchemeTriggersceneByIds" parameterType="String"> |
| | | delete from scheme_triggerscene where id in |
| | | <foreach item="id" collection="array" open="(" separator="," close=")"> |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | </mapper> |