Commit fe69fcd0 by jiang'yun

修改

parent 1db5fb94
......@@ -37,7 +37,7 @@ public class SjDcfxDzfcController extends BaseController
/**
* 查询设计-地层分析—地质分层列表
*/
@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:list')")
//@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:list')")
@GetMapping("/list")
public TableDataInfo list(SjDcfxDzfc sjDcfxDzfc)
{
......@@ -49,7 +49,7 @@ public class SjDcfxDzfcController extends BaseController
/**
* 导出设计-地层分析—地质分层列表
*/
@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:export')")
//@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:export')")
@Log(title = "设计-地层分析—地质分层", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjDcfxDzfc sjDcfxDzfc)
......@@ -62,7 +62,7 @@ public class SjDcfxDzfcController extends BaseController
/**
* 获取设计-地层分析—地质分层详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:query')")
//@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjDcfxDzfcController extends BaseController
/**
* 新增设计-地层分析—地质分层
*/
@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:add')")
//@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:add')")
@Log(title = "设计-地层分析—地质分层", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjDcfxDzfc sjDcfxDzfc)
......@@ -83,7 +83,7 @@ public class SjDcfxDzfcController extends BaseController
/**
* 修改设计-地层分析—地质分层
*/
@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:edit')")
@Log(title = "设计-地层分析—地质分层", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjDcfxDzfc sjDcfxDzfc)
......@@ -94,7 +94,7 @@ public class SjDcfxDzfcController extends BaseController
/**
* 删除设计-地层分析—地质分层
*/
@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjDcfxDzfc:remove')")
@Log(title = "设计-地层分析—地质分层", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjDzfcController extends BaseController
/**
* 查询地质分层列表
*/
@PreAuthorize("@ss.hasPermi('system:sjDzfc:list')")
//@PreAuthorize("@ss.hasPermi('system:sjDzfc:list')")
@GetMapping("/list")
public TableDataInfo list(SjDzfc sjDzfc)
{
......@@ -49,7 +49,7 @@ public class SjDzfcController extends BaseController
/**
* 导出地质分层列表
*/
@PreAuthorize("@ss.hasPermi('system:sjDzfc:export')")
//@PreAuthorize("@ss.hasPermi('system:sjDzfc:export')")
@Log(title = "地质分层", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjDzfc sjDzfc)
......@@ -62,7 +62,7 @@ public class SjDzfcController extends BaseController
/**
* 获取地质分层详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjDzfc:query')")
//@PreAuthorize("@ss.hasPermi('system:sjDzfc:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjDzfcController extends BaseController
/**
* 新增地质分层
*/
@PreAuthorize("@ss.hasPermi('system:sjDzfc:add')")
//@PreAuthorize("@ss.hasPermi('system:sjDzfc:add')")
@Log(title = "地质分层", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjDzfc sjDzfc)
......@@ -83,7 +83,7 @@ public class SjDzfcController extends BaseController
/**
* 修改地质分层
*/
@PreAuthorize("@ss.hasPermi('system:sjDzfc:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjDzfc:edit')")
@Log(title = "地质分层", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjDzfc sjDzfc)
......@@ -94,7 +94,7 @@ public class SjDzfcController extends BaseController
/**
* 删除地质分层
*/
@PreAuthorize("@ss.hasPermi('system:sjDzfc:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjDzfc:remove')")
@Log(title = "地质分层", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjFlController extends BaseController
/**
* 查询设计-附录列表
*/
@PreAuthorize("@ss.hasPermi('system:sjFl:list')")
//@PreAuthorize("@ss.hasPermi('system:sjFl:list')")
@GetMapping("/list")
public TableDataInfo list(SjFl sjFl)
{
......@@ -61,7 +61,7 @@ public class SjFlController extends BaseController
/**
* 导出设计-附录列表
*/
@PreAuthorize("@ss.hasPermi('system:sjFl:export')")
//@PreAuthorize("@ss.hasPermi('system:sjFl:export')")
@Log(title = "设计-附录", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjFl sjFl)
......@@ -74,7 +74,7 @@ public class SjFlController extends BaseController
/**
* 获取设计-附录详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjFl:query')")
//@PreAuthorize("@ss.hasPermi('system:sjFl:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -84,7 +84,7 @@ public class SjFlController extends BaseController
/**
* 新增设计-附录
*/
@PreAuthorize("@ss.hasPermi('system:sjFl:add')")
//@PreAuthorize("@ss.hasPermi('system:sjFl:add')")
@Log(title = "设计-附录", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjFl sjFl)
......@@ -95,7 +95,7 @@ public class SjFlController extends BaseController
/**
* 修改设计-附录
*/
@PreAuthorize("@ss.hasPermi('system:sjFl:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjFl:edit')")
@Log(title = "设计-附录", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjFl sjFl)
......@@ -106,7 +106,7 @@ public class SjFlController extends BaseController
/**
* 删除设计-附录
*/
@PreAuthorize("@ss.hasPermi('system:sjFl:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjFl:remove')")
@Log(title = "设计-附录", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjGztzController extends BaseController
/**
* 查询设计信息-构造特征列表
*/
@PreAuthorize("@ss.hasPermi('system:sjGztz:list')")
//@PreAuthorize("@ss.hasPermi('system:sjGztz:list')")
@GetMapping("/list")
public TableDataInfo list(SjGztz sjGztz)
{
......@@ -49,7 +49,7 @@ public class SjGztzController extends BaseController
/**
* 导出设计信息-构造特征列表
*/
@PreAuthorize("@ss.hasPermi('system:sjGztz:export')")
//@PreAuthorize("@ss.hasPermi('system:sjGztz:export')")
@Log(title = "设计信息-构造特征", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjGztz sjGztz)
......@@ -62,7 +62,7 @@ public class SjGztzController extends BaseController
/**
* 获取设计信息-构造特征详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjGztz:query')")
//@PreAuthorize("@ss.hasPermi('system:sjGztz:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjGztzController extends BaseController
/**
* 新增设计信息-构造特征
*/
@PreAuthorize("@ss.hasPermi('system:sjGztz:add')")
//@PreAuthorize("@ss.hasPermi('system:sjGztz:add')")
@Log(title = "设计信息-构造特征", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjGztz sjGztz)
......@@ -83,7 +83,7 @@ public class SjGztzController extends BaseController
/**
* 修改设计信息-构造特征
*/
@PreAuthorize("@ss.hasPermi('system:sjGztz:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjGztz:edit')")
@Log(title = "设计信息-构造特征", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjGztz sjGztz)
......@@ -94,7 +94,7 @@ public class SjGztzController extends BaseController
/**
* 删除设计信息-构造特征
*/
@PreAuthorize("@ss.hasPermi('system:sjGztz:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjGztz:remove')")
@Log(title = "设计信息-构造特征", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjH2sController extends BaseController
/**
* 查询设计信息-H2S列表
*/
@PreAuthorize("@ss.hasPermi('system:sjH2s:list')")
//@PreAuthorize("@ss.hasPermi('system:sjH2s:list')")
@GetMapping("/list")
public TableDataInfo list(SjH2s sjH2s)
{
......@@ -49,7 +49,7 @@ public class SjH2sController extends BaseController
/**
* 导出设计信息-H2S列表
*/
@PreAuthorize("@ss.hasPermi('system:sjH2s:export')")
//@PreAuthorize("@ss.hasPermi('system:sjH2s:export')")
@Log(title = "设计信息-H2S", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjH2s sjH2s)
......@@ -62,7 +62,7 @@ public class SjH2sController extends BaseController
/**
* 获取设计信息-H2S详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjH2s:query')")
//@PreAuthorize("@ss.hasPermi('system:sjH2s:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjH2sController extends BaseController
/**
* 新增设计信息-H2S
*/
@PreAuthorize("@ss.hasPermi('system:sjH2s:add')")
//@PreAuthorize("@ss.hasPermi('system:sjH2s:add')")
@Log(title = "设计信息-H2S", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjH2s sjH2s)
......@@ -83,7 +83,7 @@ public class SjH2sController extends BaseController
/**
* 修改设计信息-H2S
*/
@PreAuthorize("@ss.hasPermi('system:sjH2s:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjH2s:edit')")
@Log(title = "设计信息-H2S", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjH2s sjH2s)
......@@ -94,7 +94,7 @@ public class SjH2sController extends BaseController
/**
* 删除设计信息-H2S
*/
@PreAuthorize("@ss.hasPermi('system:sjH2s:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjH2s:remove')")
@Log(title = "设计信息-H2S", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjHseController extends BaseController
/**
* 查询设计-HSE专篇列表
*/
@PreAuthorize("@ss.hasPermi('system:sjHse:list')")
//@PreAuthorize("@ss.hasPermi('system:sjHse:list')")
@GetMapping("/list")
public TableDataInfo list(SjHse sjHse)
{
......@@ -60,7 +60,7 @@ public class SjHseController extends BaseController
/**
* 导出设计-HSE专篇列表
*/
@PreAuthorize("@ss.hasPermi('system:sjHse:export')")
//@PreAuthorize("@ss.hasPermi('system:sjHse:export')")
@Log(title = "设计-HSE专篇", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjHse sjHse)
......@@ -73,7 +73,7 @@ public class SjHseController extends BaseController
/**
* 获取设计-HSE专篇详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjHse:query')")
//@PreAuthorize("@ss.hasPermi('system:sjHse:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -83,7 +83,7 @@ public class SjHseController extends BaseController
/**
* 新增设计-HSE专篇
*/
@PreAuthorize("@ss.hasPermi('system:sjHse:add')")
//@PreAuthorize("@ss.hasPermi('system:sjHse:add')")
@Log(title = "设计-HSE专篇", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjHse sjHse)
......@@ -94,7 +94,7 @@ public class SjHseController extends BaseController
/**
* 修改设计-HSE专篇
*/
@PreAuthorize("@ss.hasPermi('system:sjHse:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjHse:edit')")
@Log(title = "设计-HSE专篇", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjHse sjHse)
......@@ -105,7 +105,7 @@ public class SjHseController extends BaseController
/**
* 删除设计-HSE专篇
*/
@PreAuthorize("@ss.hasPermi('system:sjHse:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjHse:remove')")
@Log(title = "设计-HSE专篇", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjJhzqController extends BaseController
/**
* 查询设计-计划周期列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJhzq:list')")
////@PreAuthorize("@ss.hasPermi('system:sjJhzq:list')")
@GetMapping("/list")
public TableDataInfo list(SjJhzq sjJhzq)
{
......@@ -49,7 +49,7 @@ public class SjJhzqController extends BaseController
/**
* 导出设计-计划周期列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJhzq:export')")
////@PreAuthorize("@ss.hasPermi('system:sjJhzq:export')")
@Log(title = "设计-计划周期", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjJhzq sjJhzq)
......@@ -62,7 +62,7 @@ public class SjJhzqController extends BaseController
/**
* 获取设计-计划周期详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjJhzq:query')")
////@PreAuthorize("@ss.hasPermi('system:sjJhzq:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjJhzqController extends BaseController
/**
* 新增设计-计划周期
*/
@PreAuthorize("@ss.hasPermi('system:sjJhzq:add')")
////@PreAuthorize("@ss.hasPermi('system:sjJhzq:add')")
@Log(title = "设计-计划周期", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjJhzq sjJhzq)
......@@ -83,7 +83,7 @@ public class SjJhzqController extends BaseController
/**
* 修改设计-计划周期
*/
@PreAuthorize("@ss.hasPermi('system:sjJhzq:edit')")
////@PreAuthorize("@ss.hasPermi('system:sjJhzq:edit')")
@Log(title = "设计-计划周期", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjJhzq sjJhzq)
......@@ -94,7 +94,7 @@ public class SjJhzqController extends BaseController
/**
* 删除设计-计划周期
*/
@PreAuthorize("@ss.hasPermi('system:sjJhzq:remove')")
////@PreAuthorize("@ss.hasPermi('system:sjJhzq:remove')")
@Log(title = "设计-计划周期", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -39,7 +39,7 @@ public class SjJkzpController extends BaseController
/**
* 查询设计-井控专篇列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJkzp:list')")
//@PreAuthorize("@ss.hasPermi('system:sjJkzp:list')")
@GetMapping("/list")
public TableDataInfo list(SjJkzp sjJkzp)
{
......@@ -62,7 +62,7 @@ public class SjJkzpController extends BaseController
/**
* 导出设计-井控专篇列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJkzp:export')")
//@PreAuthorize("@ss.hasPermi('system:sjJkzp:export')")
@Log(title = "设计-井控专篇", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjJkzp sjJkzp)
......@@ -75,7 +75,7 @@ public class SjJkzpController extends BaseController
/**
* 获取设计-井控专篇详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjJkzp:query')")
//@PreAuthorize("@ss.hasPermi('system:sjJkzp:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -85,7 +85,7 @@ public class SjJkzpController extends BaseController
/**
* 新增设计-井控专篇
*/
@PreAuthorize("@ss.hasPermi('system:sjJkzp:add')")
//@PreAuthorize("@ss.hasPermi('system:sjJkzp:add')")
@Log(title = "设计-井控专篇", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjJkzp sjJkzp)
......@@ -96,7 +96,7 @@ public class SjJkzpController extends BaseController
/**
* 修改设计-井控专篇
*/
@PreAuthorize("@ss.hasPermi('system:sjJkzp:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjJkzp:edit')")
@Log(title = "设计-井控专篇", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjJkzp sjJkzp)
......@@ -107,7 +107,7 @@ public class SjJkzpController extends BaseController
/**
* 删除设计-井控专篇
*/
@PreAuthorize("@ss.hasPermi('system:sjJkzp:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjJkzp:remove')")
@Log(title = "设计-井控专篇", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -42,7 +42,7 @@ public class SjJsjgController extends BaseController
/**
* 查询设计信息-井身结构列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJsjg:list')")
//@PreAuthorize("@ss.hasPermi('system:sjJsjg:list')")
@GetMapping("/list")
public TableDataInfo list(SjJsjg sjJsjg)
{
......@@ -54,7 +54,7 @@ public class SjJsjgController extends BaseController
/**
* 导出设计信息-井身结构列表
*/
// @PreAuthorize("@ss.hasPermi('system:sjJsjg:export')")
// //@PreAuthorize("@ss.hasPermi('system:sjJsjg:export')")
@Log(title = "设计信息-井身结构", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjJsjg sjJsjg)
......@@ -67,7 +67,7 @@ public class SjJsjgController extends BaseController
/**
* 获取设计信息-井身结构详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjJsjg:query')")
//@PreAuthorize("@ss.hasPermi('system:sjJsjg:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -77,7 +77,7 @@ public class SjJsjgController extends BaseController
/**
* 新增设计信息-井身结构
*/
@PreAuthorize("@ss.hasPermi('system:sjJsjg:add')")
//@PreAuthorize("@ss.hasPermi('system:sjJsjg:add')")
@Log(title = "设计信息-井身结构", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjJsjg sjJsjg)
......@@ -88,7 +88,7 @@ public class SjJsjgController extends BaseController
/**
* 修改设计信息-井身结构
*/
@PreAuthorize("@ss.hasPermi('system:sjJsjg:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjJsjg:edit')")
@Log(title = "设计信息-井身结构", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjJsjg sjJsjg)
......@@ -99,7 +99,7 @@ public class SjJsjgController extends BaseController
/**
* 删除设计信息-井身结构
*/
@PreAuthorize("@ss.hasPermi('system:sjJsjg:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjJsjg:remove')")
@Log(title = "设计信息-井身结构", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......@@ -132,7 +132,7 @@ public class SjJsjgController extends BaseController
/**
* 导入数据
*/
// @PreAuthorize("@ss.hasPermi('system:sjJsjg:importData')")
// //@PreAuthorize("@ss.hasPermi('system:sjJsjg:importData')")
@PostMapping("/importData")
@ResponseBody
public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception
......
......@@ -37,7 +37,7 @@ public class SjJygjGdfdcsController extends BaseController
/**
* 查询设计信息-井眼轨迹_轨道分段参数列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:list')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:list')")
@GetMapping("/list")
public TableDataInfo list(SjJygjGdfdcs sjJygjGdfdcs)
{
......@@ -49,7 +49,7 @@ public class SjJygjGdfdcsController extends BaseController
/**
* 导出设计信息-井眼轨迹_轨道分段参数列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:export')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:export')")
@Log(title = "设计信息-井眼轨迹_轨道分段参数", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjJygjGdfdcs sjJygjGdfdcs)
......@@ -62,7 +62,7 @@ public class SjJygjGdfdcsController extends BaseController
/**
* 获取设计信息-井眼轨迹_轨道分段参数详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:query')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjJygjGdfdcsController extends BaseController
/**
* 新增设计信息-井眼轨迹_轨道分段参数
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:add')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:add')")
@Log(title = "设计信息-井眼轨迹_轨道分段参数", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjJygjGdfdcs sjJygjGdfdcs)
......@@ -83,7 +83,7 @@ public class SjJygjGdfdcsController extends BaseController
/**
* 修改设计信息-井眼轨迹_轨道分段参数
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:edit')")
@Log(title = "设计信息-井眼轨迹_轨道分段参数", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjJygjGdfdcs sjJygjGdfdcs)
......@@ -94,7 +94,7 @@ public class SjJygjGdfdcsController extends BaseController
/**
* 删除设计信息-井眼轨迹_轨道分段参数
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdfdcs:remove')")
@Log(title = "设计信息-井眼轨迹_轨道分段参数", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -40,7 +40,7 @@ public class SjJygjGdsjgdcsController extends BaseController
/**
* 查询设计信息-井眼轨迹_轨道设计各点参数列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:list')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:list')")
@GetMapping("/list")
public TableDataInfo list(SjJygjGdsjgdcs sjJygjGdsjgdcs)
{
......@@ -52,7 +52,7 @@ public class SjJygjGdsjgdcsController extends BaseController
/**
* 导出设计信息-井眼轨迹_轨道设计各点参数列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:export')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:export')")
@Log(title = "设计信息-井眼轨迹_轨道设计各点参数", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjJygjGdsjgdcs sjJygjGdsjgdcs)
......@@ -65,7 +65,7 @@ public class SjJygjGdsjgdcsController extends BaseController
/**
* 获取设计信息-井眼轨迹_轨道设计各点参数详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:query')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -75,7 +75,7 @@ public class SjJygjGdsjgdcsController extends BaseController
/**
* 新增设计信息-井眼轨迹_轨道设计各点参数
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:add')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:add')")
@Log(title = "设计信息-井眼轨迹_轨道设计各点参数", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjJygjGdsjgdcs sjJygjGdsjgdcs)
......@@ -86,7 +86,7 @@ public class SjJygjGdsjgdcsController extends BaseController
/**
* 修改设计信息-井眼轨迹_轨道设计各点参数
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:edit')")
@Log(title = "设计信息-井眼轨迹_轨道设计各点参数", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjJygjGdsjgdcs sjJygjGdsjgdcs)
......@@ -97,7 +97,7 @@ public class SjJygjGdsjgdcsController extends BaseController
/**
* 删除设计信息-井眼轨迹_轨道设计各点参数
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjGdsjgdcs:remove')")
@Log(title = "设计信息-井眼轨迹_轨道设计各点参数", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjJygjInfoController extends BaseController
/**
* 查询设计信息-井眼轨迹信息列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:list')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:list')")
@GetMapping("/list")
public TableDataInfo list(SjJygjInfo sjJygjInfo)
{
......@@ -49,7 +49,7 @@ public class SjJygjInfoController extends BaseController
/**
* 导出设计信息-井眼轨迹信息列表
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:export')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:export')")
@Log(title = "设计信息-井眼轨迹信息", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjJygjInfo sjJygjInfo)
......@@ -62,7 +62,7 @@ public class SjJygjInfoController extends BaseController
/**
* 获取设计信息-井眼轨迹信息详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:query')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjJygjInfoController extends BaseController
/**
* 新增设计信息-井眼轨迹信息
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:add')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:add')")
@Log(title = "设计信息-井眼轨迹信息", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjJygjInfo sjJygjInfo)
......@@ -83,7 +83,7 @@ public class SjJygjInfoController extends BaseController
/**
* 修改设计信息-井眼轨迹信息
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:edit')")
@Log(title = "设计信息-井眼轨迹信息", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjJygjInfo sjJygjInfo)
......@@ -94,7 +94,7 @@ public class SjJygjInfoController extends BaseController
/**
* 删除设计信息-井眼轨迹信息
*/
@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjJygjInfo:remove')")
@Log(title = "设计信息-井眼轨迹信息", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjLjjwController extends BaseController
/**
* 查询设计-邻井井位列表
*/
@PreAuthorize("@ss.hasPermi('system:sjLjjw:list')")
//@PreAuthorize("@ss.hasPermi('system:sjLjjw:list')")
@GetMapping("/list")
public TableDataInfo list(SjLjjw sjLjjw)
{
......@@ -49,7 +49,7 @@ public class SjLjjwController extends BaseController
/**
* 导出设计-邻井井位列表
*/
@PreAuthorize("@ss.hasPermi('system:sjLjjw:export')")
//@PreAuthorize("@ss.hasPermi('system:sjLjjw:export')")
@Log(title = "设计-邻井井位", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjLjjw sjLjjw)
......@@ -62,7 +62,7 @@ public class SjLjjwController extends BaseController
/**
* 获取设计-邻井井位详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjLjjw:query')")
//@PreAuthorize("@ss.hasPermi('system:sjLjjw:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjLjjwController extends BaseController
/**
* 新增设计-邻井井位
*/
@PreAuthorize("@ss.hasPermi('system:sjLjjw:add')")
//@PreAuthorize("@ss.hasPermi('system:sjLjjw:add')")
@Log(title = "设计-邻井井位", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjLjjw sjLjjw)
......@@ -89,7 +89,7 @@ public class SjLjjwController extends BaseController
/**
* 修改设计-邻井井位
*/
@PreAuthorize("@ss.hasPermi('system:sjLjjw:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjLjjw:edit')")
@Log(title = "设计-邻井井位", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjLjjw sjLjjw)
......@@ -100,7 +100,7 @@ public class SjLjjwController extends BaseController
/**
* 删除设计-邻井井位
*/
@PreAuthorize("@ss.hasPermi('system:sjLjjw:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjLjjw:remove')")
@Log(title = "设计-邻井井位", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjLjsmController extends BaseController
/**
* 查询设计信息-邻井扫描列表
*/
@PreAuthorize("@ss.hasPermi('system:sjLjsm:list')")
//@PreAuthorize("@ss.hasPermi('system:sjLjsm:list')")
@GetMapping("/list")
public TableDataInfo list(SjLjsm sjLjsm)
{
......@@ -49,7 +49,7 @@ public class SjLjsmController extends BaseController
/**
* 导出设计信息-邻井扫描列表
*/
@PreAuthorize("@ss.hasPermi('system:sjLjsm:export')")
//@PreAuthorize("@ss.hasPermi('system:sjLjsm:export')")
@Log(title = "设计信息-邻井扫描", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjLjsm sjLjsm)
......@@ -62,7 +62,7 @@ public class SjLjsmController extends BaseController
/**
* 获取设计信息-邻井扫描详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjLjsm:query')")
//@PreAuthorize("@ss.hasPermi('system:sjLjsm:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjLjsmController extends BaseController
/**
* 新增设计信息-邻井扫描
*/
@PreAuthorize("@ss.hasPermi('system:sjLjsm:add')")
//@PreAuthorize("@ss.hasPermi('system:sjLjsm:add')")
@Log(title = "设计信息-邻井扫描", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjLjsm sjLjsm)
......@@ -83,7 +83,7 @@ public class SjLjsmController extends BaseController
/**
* 修改设计信息-邻井扫描
*/
@PreAuthorize("@ss.hasPermi('system:sjLjsm:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjLjsm:edit')")
@Log(title = "设计信息-邻井扫描", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjLjsm sjLjsm)
......@@ -94,7 +94,7 @@ public class SjLjsmController extends BaseController
/**
* 删除设计信息-邻井扫描
*/
@PreAuthorize("@ss.hasPermi('system:sjLjsm:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjLjsm:remove')")
@Log(title = "设计信息-邻井扫描", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjQkztfxController extends BaseController
/**
* 查询设计-区块钻头分析列表
*/
@PreAuthorize("@ss.hasPermi('system:sjQkztfx:list')")
//@PreAuthorize("@ss.hasPermi('system:sjQkztfx:list')")
@GetMapping("/list")
public TableDataInfo list(SjQkztfx sjQkztfx)
{
......@@ -49,7 +49,7 @@ public class SjQkztfxController extends BaseController
/**
* 导出设计-区块钻头分析列表
*/
@PreAuthorize("@ss.hasPermi('system:sjQkztfx:export')")
//@PreAuthorize("@ss.hasPermi('system:sjQkztfx:export')")
@Log(title = "设计-区块钻头分析", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjQkztfx sjQkztfx)
......@@ -62,7 +62,7 @@ public class SjQkztfxController extends BaseController
/**
* 获取设计-区块钻头分析详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjQkztfx:query')")
//@PreAuthorize("@ss.hasPermi('system:sjQkztfx:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjQkztfxController extends BaseController
/**
* 新增设计-区块钻头分析
*/
@PreAuthorize("@ss.hasPermi('system:sjQkztfx:add')")
//@PreAuthorize("@ss.hasPermi('system:sjQkztfx:add')")
@Log(title = "设计-区块钻头分析", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjQkztfx sjQkztfx)
......@@ -83,7 +83,7 @@ public class SjQkztfxController extends BaseController
/**
* 修改设计-区块钻头分析
*/
@PreAuthorize("@ss.hasPermi('system:sjQkztfx:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjQkztfx:edit')")
@Log(title = "设计-区块钻头分析", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjQkztfx sjQkztfx)
......@@ -94,7 +94,7 @@ public class SjQkztfxController extends BaseController
/**
* 删除设计-区块钻头分析
*/
@PreAuthorize("@ss.hasPermi('system:sjQkztfx:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjQkztfx:remove')")
@Log(title = "设计-区块钻头分析", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjSzfxjgController extends BaseController
/**
* 查询设计-实钻分析结果列表
*/
@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:list')")
//@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:list')")
@GetMapping("/list")
public TableDataInfo list(SjSzfxjg sjSzfxjg)
{
......@@ -49,7 +49,7 @@ public class SjSzfxjgController extends BaseController
/**
* 导出设计-实钻分析结果列表
*/
@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:export')")
//@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:export')")
@Log(title = "设计-实钻分析结果", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjSzfxjg sjSzfxjg)
......@@ -62,7 +62,7 @@ public class SjSzfxjgController extends BaseController
/**
* 获取设计-实钻分析结果详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:query')")
//@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjSzfxjgController extends BaseController
/**
* 新增设计-实钻分析结果
*/
@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:add')")
//@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:add')")
@Log(title = "设计-实钻分析结果", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjSzfxjg sjSzfxjg)
......@@ -83,7 +83,7 @@ public class SjSzfxjgController extends BaseController
/**
* 修改设计-实钻分析结果
*/
@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:edit')")
@Log(title = "设计-实钻分析结果", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjSzfxjg sjSzfxjg)
......@@ -94,7 +94,7 @@ public class SjSzfxjgController extends BaseController
/**
* 删除设计-实钻分析结果
*/
@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjSzfxjg:remove')")
@Log(title = "设计-实钻分析结果", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjTgTgqdjhController extends BaseController
/**
* 查询设计信息-套管柱强度校核列表
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:list')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:list')")
@GetMapping("/list")
public TableDataInfo list(SjTgTgqdjh sjTgTgqdjh)
{
......@@ -49,7 +49,7 @@ public class SjTgTgqdjhController extends BaseController
/**
* 导出设计信息-套管柱强度校核列表
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:export')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:export')")
@Log(title = "设计信息-套管柱强度校核", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjTgTgqdjh sjTgTgqdjh)
......@@ -62,7 +62,7 @@ public class SjTgTgqdjhController extends BaseController
/**
* 获取设计信息-套管柱强度校核详细信息
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:query')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjTgTgqdjhController extends BaseController
/**
* 新增设计信息-套管柱强度校核
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:add')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:add')")
@Log(title = "设计信息-套管柱强度校核", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjTgTgqdjh sjTgTgqdjh)
......@@ -83,7 +83,7 @@ public class SjTgTgqdjhController extends BaseController
/**
* 修改设计信息-套管柱强度校核
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:edit')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:edit')")
@Log(title = "设计信息-套管柱强度校核", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjTgTgqdjh sjTgTgqdjh)
......@@ -94,7 +94,7 @@ public class SjTgTgqdjhController extends BaseController
/**
* 删除设计信息-套管柱强度校核
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:remove')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgqdjh:remove')")
@Log(title = "设计信息-套管柱强度校核", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjTgTgxnsjController extends BaseController
/**
* 查询设计信息-套管性能数据列表
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:list')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:list')")
@GetMapping("/list")
public TableDataInfo list(SjTgTgxnsj sjTgTgxnsj)
{
......@@ -49,7 +49,7 @@ public class SjTgTgxnsjController extends BaseController
/**
* 导出设计信息-套管性能数据列表
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:export')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:export')")
@Log(title = "设计信息-套管性能数据", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjTgTgxnsj sjTgTgxnsj)
......@@ -62,7 +62,7 @@ public class SjTgTgxnsjController extends BaseController
/**
* 获取设计信息-套管性能数据详细信息
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:query')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjTgTgxnsjController extends BaseController
/**
* 新增设计信息-套管性能数据
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:add')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:add')")
@Log(title = "设计信息-套管性能数据", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjTgTgxnsj sjTgTgxnsj)
......@@ -83,7 +83,7 @@ public class SjTgTgxnsjController extends BaseController
/**
* 修改设计信息-套管性能数据
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:edit')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:edit')")
@Log(title = "设计信息-套管性能数据", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjTgTgxnsj sjTgTgxnsj)
......@@ -94,7 +94,7 @@ public class SjTgTgxnsjController extends BaseController
/**
* 删除设计信息-套管性能数据
*/
//@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:remove')")
////@PreAuthorize("@ss.hasPermi('system:sjTgTgxnsj:remove')")
@Log(title = "设计信息-套管性能数据", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjZqfxController extends BaseController
/**
* 查询设计-周期分析列表
*/
@PreAuthorize("@ss.hasPermi('system:sjZqfx:list')")
//@PreAuthorize("@ss.hasPermi('system:sjZqfx:list')")
@GetMapping("/list")
public TableDataInfo list(SjZqfx sjZqfx)
{
......@@ -49,7 +49,7 @@ public class SjZqfxController extends BaseController
/**
* 导出设计-周期分析列表
*/
@PreAuthorize("@ss.hasPermi('system:sjZqfx:export')")
//@PreAuthorize("@ss.hasPermi('system:sjZqfx:export')")
@Log(title = "设计-周期分析", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjZqfx sjZqfx)
......@@ -62,7 +62,7 @@ public class SjZqfxController extends BaseController
/**
* 获取设计-周期分析详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjZqfx:query')")
//@PreAuthorize("@ss.hasPermi('system:sjZqfx:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjZqfxController extends BaseController
/**
* 新增设计-周期分析
*/
@PreAuthorize("@ss.hasPermi('system:sjZqfx:add')")
//@PreAuthorize("@ss.hasPermi('system:sjZqfx:add')")
@Log(title = "设计-周期分析", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjZqfx sjZqfx)
......@@ -83,7 +83,7 @@ public class SjZqfxController extends BaseController
/**
* 修改设计-周期分析
*/
@PreAuthorize("@ss.hasPermi('system:sjZqfx:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjZqfx:edit')")
@Log(title = "设计-周期分析", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjZqfx sjZqfx)
......@@ -94,7 +94,7 @@ public class SjZqfxController extends BaseController
/**
* 删除设计-周期分析
*/
@PreAuthorize("@ss.hasPermi('system:sjZqfx:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjZqfx:remove')")
@Log(title = "设计-周期分析", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
package com.ruoyi.project.zjsgfa.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.framework.aspectj.lang.annotation.Log;
import com.ruoyi.framework.aspectj.lang.enums.BusinessType;
import com.ruoyi.project.zjsgfa.domain.SjZsjqk;
import com.ruoyi.project.zjsgfa.service.ISjZsjqkService;
import com.ruoyi.framework.web.controller.BaseController;
import com.ruoyi.framework.web.domain.AjaxResult;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.framework.web.page.TableDataInfo;
/**
* 设计-注水井情况Controller
*
* @author ruoyi
* @date 2025-08-05
*/
@RestController
@RequestMapping("/system/sjZsjqk")
public class SjZsjqkController extends BaseController
{
@Autowired
private ISjZsjqkService sjZsjqkService;
/**
* 查询设计-注水井情况列表
*/
//@PreAuthorize("@ss.hasPermi('system:sjZsjqk:list')")
@GetMapping("/list")
public TableDataInfo list(SjZsjqk sjZsjqk)
{
startPage();
List<SjZsjqk> list = sjZsjqkService.selectSjZsjqkList(sjZsjqk);
return getDataTable(list);
}
/**
* 导出设计-注水井情况列表
*/
//@PreAuthorize("@ss.hasPermi('system:sjZsjqk:export')")
@Log(title = "设计-注水井情况", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjZsjqk sjZsjqk)
{
List<SjZsjqk> list = sjZsjqkService.selectSjZsjqkList(sjZsjqk);
ExcelUtil<SjZsjqk> util = new ExcelUtil<SjZsjqk>(SjZsjqk.class);
util.exportExcel(response, list, "设计-注水井情况数据");
}
/**
* 获取设计-注水井情况详细信息
*/
//@PreAuthorize("@ss.hasPermi('system:sjZsjqk:query')")
@GetMapping(value = "/{sjjh}")
public AjaxResult getInfo(@PathVariable("sjjh") String sjjh)
{
return success(sjZsjqkService.selectSjZsjqkBySjjh(sjjh));
}
/**
* 新增设计-注水井情况
*/
//@PreAuthorize("@ss.hasPermi('system:sjZsjqk:add')")
@Log(title = "设计-注水井情况", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjZsjqk sjZsjqk)
{
return toAjax(sjZsjqkService.insertSjZsjqk(sjZsjqk));
}
/**
* 修改设计-注水井情况
*/
//@PreAuthorize("@ss.hasPermi('system:sjZsjqk:edit')")
@Log(title = "设计-注水井情况", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjZsjqk sjZsjqk)
{
return toAjax(sjZsjqkService.updateSjZsjqk(sjZsjqk));
}
/**
* 删除设计-注水井情况
*/
//@PreAuthorize("@ss.hasPermi('system:sjZsjqk:remove')")
@Log(title = "设计-注水井情况", businessType = BusinessType.DELETE)
@DeleteMapping("/{sjjhs}")
public AjaxResult remove(@PathVariable String[] sjjhs)
{
return toAjax(sjZsjqkService.deleteSjZsjqkBySjjhs(sjjhs));
}
}
......@@ -37,7 +37,7 @@ public class SjZtgjsjController extends BaseController
/**
* 查询设计-钻头关键数据分析列表
*/
@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:list')")
//@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:list')")
@GetMapping("/list")
public TableDataInfo list(SjZtgjsj sjZtgjsj)
{
......@@ -49,7 +49,7 @@ public class SjZtgjsjController extends BaseController
/**
* 导出设计-钻头关键数据分析列表
*/
@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:export')")
//@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:export')")
@Log(title = "设计-钻头关键数据分析", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjZtgjsj sjZtgjsj)
......@@ -62,7 +62,7 @@ public class SjZtgjsjController extends BaseController
/**
* 获取设计-钻头关键数据分析详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:query')")
//@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjZtgjsjController extends BaseController
/**
* 新增设计-钻头关键数据分析
*/
@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:add')")
//@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:add')")
@Log(title = "设计-钻头关键数据分析", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjZtgjsj sjZtgjsj)
......@@ -83,7 +83,7 @@ public class SjZtgjsjController extends BaseController
/**
* 修改设计-钻头关键数据分析
*/
@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:edit')")
@Log(title = "设计-钻头关键数据分析", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjZtgjsj sjZtgjsj)
......@@ -94,7 +94,7 @@ public class SjZtgjsjController extends BaseController
/**
* 删除设计-钻头关键数据分析
*/
@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjZtgjsj:remove')")
@Log(title = "设计-钻头关键数据分析", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
......@@ -37,7 +37,7 @@ public class SjZysxController extends BaseController
/**
* 查询设计信息-注意事项列表
*/
@PreAuthorize("@ss.hasPermi('system:sjZysx:list')")
//@PreAuthorize("@ss.hasPermi('system:sjZysx:list')")
@GetMapping("/list")
public TableDataInfo list(SjZysx sjZysx)
{
......@@ -49,7 +49,7 @@ public class SjZysxController extends BaseController
/**
* 导出设计信息-注意事项列表
*/
@PreAuthorize("@ss.hasPermi('system:sjZysx:export')")
//@PreAuthorize("@ss.hasPermi('system:sjZysx:export')")
@Log(title = "设计信息-注意事项", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, SjZysx sjZysx)
......@@ -62,7 +62,7 @@ public class SjZysxController extends BaseController
/**
* 获取设计信息-注意事项详细信息
*/
@PreAuthorize("@ss.hasPermi('system:sjZysx:query')")
//@PreAuthorize("@ss.hasPermi('system:sjZysx:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id)
{
......@@ -72,7 +72,7 @@ public class SjZysxController extends BaseController
/**
* 新增设计信息-注意事项
*/
@PreAuthorize("@ss.hasPermi('system:sjZysx:add')")
//@PreAuthorize("@ss.hasPermi('system:sjZysx:add')")
@Log(title = "设计信息-注意事项", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody SjZysx sjZysx)
......@@ -83,7 +83,7 @@ public class SjZysxController extends BaseController
/**
* 修改设计信息-注意事项
*/
@PreAuthorize("@ss.hasPermi('system:sjZysx:edit')")
//@PreAuthorize("@ss.hasPermi('system:sjZysx:edit')")
@Log(title = "设计信息-注意事项", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody SjZysx sjZysx)
......@@ -94,7 +94,7 @@ public class SjZysxController extends BaseController
/**
* 删除设计信息-注意事项
*/
@PreAuthorize("@ss.hasPermi('system:sjZysx:remove')")
//@PreAuthorize("@ss.hasPermi('system:sjZysx:remove')")
@Log(title = "设计信息-注意事项", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids)
......
package com.ruoyi.project.zjsgfa.domain;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
/**
* 设计-注水井情况对象 sj_zsjqk
*
* @author ruoyi
* @date 2025-08-05
*/
public class SjZsjqk extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 实际井号 */
@Excel(name = "实际井号")
private String sjjh;
/** 井号 */
@Excel(name = "井号")
private String jh;
/** 井号编码(中文井号) */
@Excel(name = "井号编码", readConverterExp = "中=文井号")
private String jhbm;
/** 注入类型 */
@Excel(name = "注入类型")
private String zqlxmc;
/** 注水层位 */
@Excel(name = "注水层位")
private String cwmc;
/** 深度范围 */
@Excel(name = "深度范围")
private String sdfw;
/** 井口压力 */
@Excel(name = "井口压力")
private Double jkyl;
/** 地层压力 */
@Excel(name = "地层压力")
private Double dcyl;
/** 日注量 */
@Excel(name = "日注量")
private Double rzl;
/** 累计注入量 */
@Excel(name = "累计注入量")
private Double ljzrl;
/** 注入状态 */
@Excel(name = "注入状态")
private String zrzt;
/** 井口距离 */
@Excel(name = "井口距离")
private Double jkjl;
/** 井底距离 */
@Excel(name = "井底距离")
private Double jdjl;
/** 是否停驻 */
@Excel(name = "是否停驻")
private String sftz;
public void setSjjh(String sjjh)
{
this.sjjh = sjjh;
}
public String getSjjh()
{
return sjjh;
}
public void setJh(String jh)
{
this.jh = jh;
}
public String getJh()
{
return jh;
}
public void setJhbm(String jhbm)
{
this.jhbm = jhbm;
}
public String getJhbm()
{
return jhbm;
}
public void setZqlxmc(String zqlxmc)
{
this.zqlxmc = zqlxmc;
}
public String getZqlxmc()
{
return zqlxmc;
}
public void setCwmc(String cwmc)
{
this.cwmc = cwmc;
}
public String getCwmc()
{
return cwmc;
}
public void setSdfw(String sdfw)
{
this.sdfw = sdfw;
}
public String getSdfw()
{
return sdfw;
}
public void setJkyl(Double jkyl)
{
this.jkyl = jkyl;
}
public Double getJkyl()
{
return jkyl;
}
public void setDcyl(Double dcyl)
{
this.dcyl = dcyl;
}
public Double getDcyl()
{
return dcyl;
}
public void setRzl(Double rzl)
{
this.rzl = rzl;
}
public Double getRzl()
{
return rzl;
}
public void setLjzrl(Double ljzrl)
{
this.ljzrl = ljzrl;
}
public Double getLjzrl()
{
return ljzrl;
}
public void setZrzt(String zrzt)
{
this.zrzt = zrzt;
}
public String getZrzt()
{
return zrzt;
}
public void setJkjl(Double jkjl)
{
this.jkjl = jkjl;
}
public Double getJkjl()
{
return jkjl;
}
public void setJdjl(Double jdjl)
{
this.jdjl = jdjl;
}
public Double getJdjl()
{
return jdjl;
}
public void setSftz(String sftz)
{
this.sftz = sftz;
}
public String getSftz()
{
return sftz;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("sjjh", getSjjh())
.append("jh", getJh())
.append("jhbm", getJhbm())
.append("zqlxmc", getZqlxmc())
.append("cwmc", getCwmc())
.append("sdfw", getSdfw())
.append("jkyl", getJkyl())
.append("dcyl", getDcyl())
.append("rzl", getRzl())
.append("ljzrl", getLjzrl())
.append("zrzt", getZrzt())
.append("jkjl", getJkjl())
.append("jdjl", getJdjl())
.append("sftz", getSftz())
.toString();
}
}
package com.ruoyi.project.zjsgfa.mapper;
import java.util.List;
import com.ruoyi.project.zjsgfa.domain.SjZsjqk;
/**
* 设计-注水井情况Mapper接口
*
* @author ruoyi
* @date 2025-08-05
*/
public interface SjZsjqkMapper
{
/**
* 查询设计-注水井情况
*
* @param sjjh 设计-注水井情况主键
* @return 设计-注水井情况
*/
public SjZsjqk selectSjZsjqkBySjjh(String sjjh);
/**
* 查询设计-注水井情况列表
*
* @param sjZsjqk 设计-注水井情况
* @return 设计-注水井情况集合
*/
public List<SjZsjqk> selectSjZsjqkList(SjZsjqk sjZsjqk);
/**
* 新增设计-注水井情况
*
* @param sjZsjqk 设计-注水井情况
* @return 结果
*/
public int insertSjZsjqk(SjZsjqk sjZsjqk);
/**
* 修改设计-注水井情况
*
* @param sjZsjqk 设计-注水井情况
* @return 结果
*/
public int updateSjZsjqk(SjZsjqk sjZsjqk);
/**
* 删除设计-注水井情况
*
* @param sjjh 设计-注水井情况主键
* @return 结果
*/
public int deleteSjZsjqkBySjjh(String sjjh);
/**
* 批量删除设计-注水井情况
*
* @param sjjhs 需要删除的数据主键集合
* @return 结果
*/
public int deleteSjZsjqkBySjjhs(String[] sjjhs);
}
package com.ruoyi.project.zjsgfa.service;
import java.util.List;
import com.ruoyi.project.zjsgfa.domain.SjZsjqk;
/**
* 设计-注水井情况Service接口
*
* @author ruoyi
* @date 2025-08-05
*/
public interface ISjZsjqkService
{
/**
* 查询设计-注水井情况
*
* @param sjjh 设计-注水井情况主键
* @return 设计-注水井情况
*/
public SjZsjqk selectSjZsjqkBySjjh(String sjjh);
/**
* 查询设计-注水井情况列表
*
* @param sjZsjqk 设计-注水井情况
* @return 设计-注水井情况集合
*/
public List<SjZsjqk> selectSjZsjqkList(SjZsjqk sjZsjqk);
/**
* 新增设计-注水井情况
*
* @param sjZsjqk 设计-注水井情况
* @return 结果
*/
public int insertSjZsjqk(SjZsjqk sjZsjqk);
/**
* 修改设计-注水井情况
*
* @param sjZsjqk 设计-注水井情况
* @return 结果
*/
public int updateSjZsjqk(SjZsjqk sjZsjqk);
/**
* 批量删除设计-注水井情况
*
* @param sjjhs 需要删除的设计-注水井情况主键集合
* @return 结果
*/
public int deleteSjZsjqkBySjjhs(String[] sjjhs);
/**
* 删除设计-注水井情况信息
*
* @param sjjh 设计-注水井情况主键
* @return 结果
*/
public int deleteSjZsjqkBySjjh(String sjjh);
}
package com.ruoyi.project.zjsgfa.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.project.zjsgfa.mapper.SjZsjqkMapper;
import com.ruoyi.project.zjsgfa.domain.SjZsjqk;
import com.ruoyi.project.zjsgfa.service.ISjZsjqkService;
/**
* 设计-注水井情况Service业务层处理
*
* @author ruoyi
* @date 2025-08-05
*/
@Service
public class SjZsjqkServiceImpl implements ISjZsjqkService
{
@Autowired
private SjZsjqkMapper sjZsjqkMapper;
/**
* 查询设计-注水井情况
*
* @param sjjh 设计-注水井情况主键
* @return 设计-注水井情况
*/
@Override
public SjZsjqk selectSjZsjqkBySjjh(String sjjh)
{
return sjZsjqkMapper.selectSjZsjqkBySjjh(sjjh);
}
/**
* 查询设计-注水井情况列表
*
* @param sjZsjqk 设计-注水井情况
* @return 设计-注水井情况
*/
@Override
public List<SjZsjqk> selectSjZsjqkList(SjZsjqk sjZsjqk)
{
return sjZsjqkMapper.selectSjZsjqkList(sjZsjqk);
}
/**
* 新增设计-注水井情况
*
* @param sjZsjqk 设计-注水井情况
* @return 结果
*/
@Override
public int insertSjZsjqk(SjZsjqk sjZsjqk)
{
return sjZsjqkMapper.insertSjZsjqk(sjZsjqk);
}
/**
* 修改设计-注水井情况
*
* @param sjZsjqk 设计-注水井情况
* @return 结果
*/
@Override
public int updateSjZsjqk(SjZsjqk sjZsjqk)
{
return sjZsjqkMapper.updateSjZsjqk(sjZsjqk);
}
/**
* 批量删除设计-注水井情况
*
* @param sjjhs 需要删除的设计-注水井情况主键
* @return 结果
*/
@Override
public int deleteSjZsjqkBySjjhs(String[] sjjhs)
{
return sjZsjqkMapper.deleteSjZsjqkBySjjhs(sjjhs);
}
/**
* 删除设计-注水井情况信息
*
* @param sjjh 设计-注水井情况主键
* @return 结果
*/
@Override
public int deleteSjZsjqkBySjjh(String sjjh)
{
return sjZsjqkMapper.deleteSjZsjqkBySjjh(sjjh);
}
}
......@@ -1762,6 +1762,9 @@ public class DjdcServiceImpl implements DjdcService {
List<Zsjfx> list=djdcInfoMapper.getZsjList(param);
//查询注水井情况
for(Zsjfx zsjfx:list){
if(StringUtils.isEmpty(zsjfx.getJh())){
continue;
}
//查询日报数据
Zsjrb zsjrb=djdcInfoMapper.getZsjrbList(zsjfx.getJh());
if(zsjrb!=null){
......
<?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.project.zjsgfa.mapper.SjZsjqkMapper">
<resultMap type="SjZsjqk" id="SjZsjqkResult">
<result property="sjjh" column="sjjh" />
<result property="jh" column="jh" />
<result property="jhbm" column="jhbm" />
<result property="zqlxmc" column="zqlxmc" />
<result property="cwmc" column="cwmc" />
<result property="sdfw" column="sdfw" />
<result property="jkyl" column="jkyl" />
<result property="dcyl" column="dcyl" />
<result property="rzl" column="rzl" />
<result property="ljzrl" column="ljzrl" />
<result property="zrzt" column="zrzt" />
<result property="jkjl" column="jkjl" />
<result property="jdjl" column="jdjl" />
<result property="sftz" column="sftz" />
</resultMap>
<sql id="selectSjZsjqkVo">
select sjjh, jh, jhbm, zqlxmc, cwmc, sdfw, jkyl, dcyl, rzl, ljzrl, zrzt, jkjl, jdjl, sftz from sj_zsjqk
</sql>
<select id="selectSjZsjqkList" parameterType="SjZsjqk" resultMap="SjZsjqkResult">
<include refid="selectSjZsjqkVo"/>
<where>
<if test="sjjh != null and sjjh != ''"> and sjjh = #{sjjh}</if>
<if test="jh != null and jh != ''"> and jh = #{jh}</if>
<if test="jhbm != null and jhbm != ''"> and jhbm = #{jhbm}</if>
<if test="zqlxmc != null and zqlxmc != ''"> and zqlxmc = #{zqlxmc}</if>
<if test="cwmc != null and cwmc != ''"> and cwmc = #{cwmc}</if>
<if test="sdfw != null and sdfw != ''"> and sdfw = #{sdfw}</if>
<if test="jkyl != null "> and jkyl = #{jkyl}</if>
<if test="dcyl != null "> and dcyl = #{dcyl}</if>
<if test="rzl != null "> and rzl = #{rzl}</if>
<if test="ljzrl != null "> and ljzrl = #{ljzrl}</if>
<if test="zrzt != null and zrzt != ''"> and zrzt = #{zrzt}</if>
<if test="jkjl != null "> and jkjl = #{jkjl}</if>
<if test="jdjl != null "> and jdjl = #{jdjl}</if>
<if test="sftz != null and sftz != ''"> and sftz = #{sftz}</if>
</where>
</select>
<select id="selectSjZsjqkBySjjh" parameterType="String" resultMap="SjZsjqkResult">
<include refid="selectSjZsjqkVo"/>
where sjjh = #{sjjh}
</select>
<insert id="insertSjZsjqk" parameterType="SjZsjqk">
insert into sj_zsjqk
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="sjjh != null">sjjh,</if>
<if test="jh != null">jh,</if>
<if test="jhbm != null">jhbm,</if>
<if test="zqlxmc != null">zqlxmc,</if>
<if test="cwmc != null">cwmc,</if>
<if test="sdfw != null">sdfw,</if>
<if test="jkyl != null">jkyl,</if>
<if test="dcyl != null">dcyl,</if>
<if test="rzl != null">rzl,</if>
<if test="ljzrl != null">ljzrl,</if>
<if test="zrzt != null">zrzt,</if>
<if test="jkjl != null">jkjl,</if>
<if test="jdjl != null">jdjl,</if>
<if test="sftz != null">sftz,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="sjjh != null">#{sjjh},</if>
<if test="jh != null">#{jh},</if>
<if test="jhbm != null">#{jhbm},</if>
<if test="zqlxmc != null">#{zqlxmc},</if>
<if test="cwmc != null">#{cwmc},</if>
<if test="sdfw != null">#{sdfw},</if>
<if test="jkyl != null">#{jkyl},</if>
<if test="dcyl != null">#{dcyl},</if>
<if test="rzl != null">#{rzl},</if>
<if test="ljzrl != null">#{ljzrl},</if>
<if test="zrzt != null">#{zrzt},</if>
<if test="jkjl != null">#{jkjl},</if>
<if test="jdjl != null">#{jdjl},</if>
<if test="sftz != null">#{sftz},</if>
</trim>
</insert>
<update id="updateSjZsjqk" parameterType="SjZsjqk">
update sj_zsjqk
<trim prefix="SET" suffixOverrides=",">
<if test="jh != null">jh = #{jh},</if>
<if test="jhbm != null">jhbm = #{jhbm},</if>
<if test="zqlxmc != null">zqlxmc = #{zqlxmc},</if>
<if test="cwmc != null">cwmc = #{cwmc},</if>
<if test="sdfw != null">sdfw = #{sdfw},</if>
<if test="jkyl != null">jkyl = #{jkyl},</if>
<if test="dcyl != null">dcyl = #{dcyl},</if>
<if test="rzl != null">rzl = #{rzl},</if>
<if test="ljzrl != null">ljzrl = #{ljzrl},</if>
<if test="zrzt != null">zrzt = #{zrzt},</if>
<if test="jkjl != null">jkjl = #{jkjl},</if>
<if test="jdjl != null">jdjl = #{jdjl},</if>
<if test="sftz != null">sftz = #{sftz},</if>
</trim>
where sjjh = #{sjjh}
</update>
<delete id="deleteSjZsjqkBySjjh" parameterType="String">
delete from sj_zsjqk where sjjh = #{sjjh}
</delete>
<delete id="deleteSjZsjqkBySjjhs" parameterType="String">
delete from sj_zsjqk where sjjh in
<foreach item="sjjh" collection="array" open="(" separator="," close=")">
#{sjjh}
</foreach>
</delete>
</mapper>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment