zhousq
12 months ago
16 changed files with 1679 additions and 852 deletions
@ -1,9 +1,9 @@ |
|||||
# 代码生成 |
# 代码生成 |
||||
gen: |
gen: |
||||
# 作者 |
# 作者 |
||||
author: ruoyi |
author: win |
||||
# 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool |
# 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool |
||||
packageName: com.lzbi.system |
packageName: com.lzbi |
||||
# 自动去除表前缀,默认是false |
# 自动去除表前缀,默认是false |
||||
autoRemovePre: false |
autoRemovePre: false |
||||
# 表前缀(生成类名不会包含表前缀,多个用逗号分隔) |
# 表前缀(生成类名不会包含表前缀,多个用逗号分隔) |
||||
|
@ -1,132 +1,104 @@ |
|||||
package com.lzbi.bi.controller; |
package com.lzbi.bi.controller; |
||||
|
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
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.lzbi.common.annotation.Log; |
import com.lzbi.common.annotation.Log; |
||||
import com.lzbi.common.core.controller.BaseController; |
import com.lzbi.common.core.controller.BaseController; |
||||
import com.lzbi.common.core.domain.AjaxResult; |
import com.lzbi.common.core.domain.AjaxResult; |
||||
import com.lzbi.common.core.page.TableDataInfo; |
|
||||
import com.lzbi.common.enums.BusinessType; |
import com.lzbi.common.enums.BusinessType; |
||||
import com.lzbi.common.utils.DateUtils; |
|
||||
import com.lzbi.common.utils.poi.ExcelUtil; |
|
||||
import io.swagger.annotations.Api; |
|
||||
import io.swagger.annotations.ApiOperation; |
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
|
||||
import javax.servlet.http.HttpServletResponse; |
|
||||
import javax.validation.Valid; |
|
||||
import org.springframework.web.bind.annotation.*; |
|
||||
import java.util.Arrays; |
|
||||
import java.util.List; |
|
||||
import java.util.stream.Collectors; |
|
||||
import com.lzbi.bi.domain.DcBusiTargetAdjust; |
import com.lzbi.bi.domain.DcBusiTargetAdjust; |
||||
import com.lzbi.bi.service.DcBusiTargetAdjustService; |
import com.lzbi.bi.service.IDcBusiTargetAdjustService; |
||||
|
import com.lzbi.common.utils.poi.ExcelUtil; |
||||
|
import com.lzbi.common.core.page.TableDataInfo; |
||||
|
|
||||
/** |
/** |
||||
* 资产指标调整单;(dc_busi_target_adjust)表控制层 |
* 资产指标调整单Controller |
||||
* @author : zhousq |
* |
||||
* @date : 2023-11-16 |
* @author zhousq |
||||
|
* @date 2023-11-23 |
||||
*/ |
*/ |
||||
@Api(tags = "资产指标调整单对象功能接口") |
|
||||
@RestController |
@RestController |
||||
@RequestMapping("/assetData/dcBusiTargetAdjust") |
@RequestMapping("/asset/AssetTargetAdjustBill") |
||||
public class DcBusiTargetAdjustController extends BaseController{ |
public class DcBusiTargetAdjustController extends BaseController |
||||
|
{ |
||||
@Autowired |
@Autowired |
||||
private DcBusiTargetAdjustService dcBusiTargetAdjustService; |
private IDcBusiTargetAdjustService dcBusiTargetAdjustService; |
||||
|
|
||||
/** |
/** |
||||
* 分页列表查询 |
* 查询资产指标调整单列表 |
||||
* @return 分页数据 |
|
||||
*/ |
*/ |
||||
|
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetAdjustBill:list')") |
||||
@GetMapping("/list") |
@GetMapping("/list") |
||||
public TableDataInfo list(DcBusiTargetAdjust dcBusiTargetAdjust) |
public TableDataInfo list(DcBusiTargetAdjust dcBusiTargetAdjust) |
||||
{ startPage(); |
{ |
||||
List<DcBusiTargetAdjust> list = dcBusiTargetAdjustService.selectByVo(dcBusiTargetAdjust); |
startPage(); |
||||
|
List<DcBusiTargetAdjust> list = dcBusiTargetAdjustService.selectDcBusiTargetAdjustList(dcBusiTargetAdjust); |
||||
return getDataTable(list); |
return getDataTable(list); |
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
*根据ID获取详情 |
* 导出资产指标调整单列表 |
||||
*@param id |
|
||||
@return DcBusiTargetAdjust 没有反馈空 |
|
||||
*/ |
|
||||
@ApiOperation("根据ID获取资产指标调整单详细信息") |
|
||||
@GetMapping(value = "/{id}") |
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id) { |
|
||||
return AjaxResult.success(dcBusiTargetAdjustService.getById(id)); |
|
||||
} |
|
||||
/** |
|
||||
* 资产指标调整单-新增 |
|
||||
*@param dcBusiTargetAdjust |
|
||||
*@return DcBusiTargetAdjust |
|
||||
*/ |
|
||||
@ApiOperation("新增资产指标调整单一条数据") |
|
||||
@Log(title = "", businessType = BusinessType.INSERT) |
|
||||
@PostMapping |
|
||||
public AjaxResult add(@Valid @RequestBody DcBusiTargetAdjust dcBusiTargetAdjust) { |
|
||||
//BeanValidators.validateWithException(validator, dcBusiTargetAdjust);
|
|
||||
dcBusiTargetAdjust.setCreatedBy(getUsername()); |
|
||||
dcBusiTargetAdjust.setCreatedTime(DateUtils.getNowDate()); |
|
||||
dcBusiTargetAdjust.setTenantId("0"); |
|
||||
dcBusiTargetAdjust.setUpdatedBy(getUsername()); |
|
||||
dcBusiTargetAdjust.setUpdatedTime(DateUtils.getNowDate()); |
|
||||
return toAjax(dcBusiTargetAdjustService.insertByVo(dcBusiTargetAdjust)); |
|
||||
} |
|
||||
/** |
|
||||
* 资产指标调整单-修改 |
|
||||
*@param dcBusiTargetAdjust |
|
||||
*@return DcBusiTargetAdjust |
|
||||
*/ |
*/ |
||||
@ApiOperation("资产指标调整单修改") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetAdjustBill:export')") |
||||
@Log(title = "", businessType = BusinessType.UPDATE) |
@Log(title = "资产指标调整单", businessType = BusinessType.EXPORT) |
||||
@PutMapping |
@PostMapping("/export") |
||||
public AjaxResult edit(@Valid @RequestBody DcBusiTargetAdjust dcBusiTargetAdjust) { |
public void export(HttpServletResponse response, DcBusiTargetAdjust dcBusiTargetAdjust) |
||||
//BeanValidators.validateWithException(validator, dcBusiTargetAdjust);
|
{ |
||||
dcBusiTargetAdjust.setUpdatedBy(getUsername()); |
List<DcBusiTargetAdjust> list = dcBusiTargetAdjustService.selectDcBusiTargetAdjustList(dcBusiTargetAdjust); |
||||
dcBusiTargetAdjust.setUpdatedTime(DateUtils.getNowDate()); |
ExcelUtil<DcBusiTargetAdjust> util = new ExcelUtil<DcBusiTargetAdjust>(DcBusiTargetAdjust.class); |
||||
return toAjax(dcBusiTargetAdjustService.updateById(dcBusiTargetAdjust)); |
util.exportExcel(response, list, "资产指标调整单数据"); |
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
* 通过ID删除资产指标调整单 |
* 获取资产指标调整单详细信息 |
||||
* @param |
|
||||
* @return 成功1 失败0 |
|
||||
*/ |
*/ |
||||
@ApiOperation("根据ID删除资产指标调整单") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetAdjustBill:query')") |
||||
@Log(title = "单一资产指标调整单", businessType = BusinessType.DELETE) |
@GetMapping(value = "/{id}") |
||||
@DeleteMapping("/id/{id}") |
public AjaxResult getInfo(@PathVariable("id") Long id) |
||||
public AjaxResult batchRemove(@PathVariable Long id) { |
{ |
||||
DcBusiTargetAdjust dcBusiTargetAdjust=new DcBusiTargetAdjust(); |
return success(dcBusiTargetAdjustService.selectDcBusiTargetAdjustById(id)); |
||||
dcBusiTargetAdjust.setId(id); |
|
||||
return toAjax(dcBusiTargetAdjustService.removeById( dcBusiTargetAdjust)); |
|
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
* 批量删除资产指标调整单 |
* 新增资产指标调整单 |
||||
* @param ids 数组 |
|
||||
* @return 删除的条数 |
|
||||
*/ |
*/ |
||||
@ApiOperation("批量删除资产指标调整单") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetAdjustBill:add')") |
||||
@Log(title = "批量删除资产指标调整单", businessType = BusinessType.DELETE) |
@Log(title = "资产指标调整单", businessType = BusinessType.INSERT) |
||||
@DeleteMapping("/ids/{ids}") |
@PostMapping |
||||
public AjaxResult batchRemove(@PathVariable Long[] ids) { |
public AjaxResult add(@RequestBody DcBusiTargetAdjust dcBusiTargetAdjust) |
||||
List<Long> collect = Arrays.stream(ids).collect(Collectors.toList()); |
{ |
||||
return toAjax(dcBusiTargetAdjustService.removeBatchByIds(collect)); |
return toAjax(dcBusiTargetAdjustService.insertDcBusiTargetAdjust(dcBusiTargetAdjust)); |
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
* 通过模版导入"资产指标调整单数据 |
* 修改资产指标调整单 |
||||
* |
|
||||
*/ |
*/ |
||||
@ApiOperation("资产指标调整单数据导入") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetAdjustBill:edit')") |
||||
@PostMapping("/importTemplate") |
@Log(title = "资产指标调整单", businessType = BusinessType.UPDATE) |
||||
public void importTemplate(HttpServletResponse response) { |
@PutMapping |
||||
ExcelUtil<DcBusiTargetAdjust> util = new ExcelUtil<>(DcBusiTargetAdjust.class); |
public AjaxResult edit(@RequestBody DcBusiTargetAdjust dcBusiTargetAdjust) |
||||
util.importTemplateExcel(response, "资产指标调整单导出数据"); |
{ |
||||
|
return toAjax(dcBusiTargetAdjustService.updateDcBusiTargetAdjust(dcBusiTargetAdjust)); |
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
* "资产指标调整单数据导出功能 |
* 删除资产指标调整单 |
||||
*/ |
*/ |
||||
@ApiOperation("导出资产指标调整单数据") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetAdjustBill:remove')") |
||||
@PostMapping("/export") |
@Log(title = "资产指标调整单", businessType = BusinessType.DELETE) |
||||
public void export(HttpServletResponse response, DcBusiTargetAdjust dcBusiTargetAdjust) { |
@DeleteMapping("/{ids}") |
||||
QueryWrapper<DcBusiTargetAdjust> queryWrapper = new QueryWrapper<>(); |
public AjaxResult remove(@PathVariable Long[] ids) |
||||
List<DcBusiTargetAdjust> list = dcBusiTargetAdjustService.list(queryWrapper); |
{ |
||||
ExcelUtil<DcBusiTargetAdjust> util = new ExcelUtil<>(DcBusiTargetAdjust.class); |
return toAjax(dcBusiTargetAdjustService.deleteDcBusiTargetAdjustByIds(ids)); |
||||
util.exportExcel(response, list, "导出的资产指标调整单数据"); |
|
||||
} |
} |
||||
} |
} |
||||
|
@ -1,132 +1,104 @@ |
|||||
package com.lzbi.bi.controller; |
package com.lzbi.bi.controller; |
||||
|
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
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.lzbi.common.annotation.Log; |
import com.lzbi.common.annotation.Log; |
||||
import com.lzbi.common.core.controller.BaseController; |
import com.lzbi.common.core.controller.BaseController; |
||||
import com.lzbi.common.core.domain.AjaxResult; |
import com.lzbi.common.core.domain.AjaxResult; |
||||
import com.lzbi.common.core.page.TableDataInfo; |
|
||||
import com.lzbi.common.enums.BusinessType; |
import com.lzbi.common.enums.BusinessType; |
||||
import com.lzbi.common.utils.DateUtils; |
|
||||
import com.lzbi.common.utils.poi.ExcelUtil; |
|
||||
import io.swagger.annotations.Api; |
|
||||
import io.swagger.annotations.ApiOperation; |
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
|
||||
import javax.servlet.http.HttpServletResponse; |
|
||||
import javax.validation.Valid; |
|
||||
import org.springframework.web.bind.annotation.*; |
|
||||
import java.util.Arrays; |
|
||||
import java.util.List; |
|
||||
import java.util.stream.Collectors; |
|
||||
import com.lzbi.bi.domain.DcBusiTargetDraft; |
import com.lzbi.bi.domain.DcBusiTargetDraft; |
||||
import com.lzbi.bi.service.DcBusiTargetDraftService; |
import com.lzbi.bi.service.IDcBusiTargetDraftService; |
||||
|
import com.lzbi.common.utils.poi.ExcelUtil; |
||||
|
import com.lzbi.common.core.page.TableDataInfo; |
||||
|
|
||||
/** |
/** |
||||
* 指标数据底稿表;(dc_busi_target_draft)表控制层 |
* 指标数据底稿Controller |
||||
* @author : zhousq |
* |
||||
* @date : 2023-11-16 |
* @author zhousq |
||||
|
* @date 2023-11-23 |
||||
*/ |
*/ |
||||
@Api(tags = "指标数据底稿表对象功能接口") |
|
||||
@RestController |
@RestController |
||||
@RequestMapping("/assetData/dcBusiTargetDraft") |
@RequestMapping("/asset/AssetTargetdraft") |
||||
public class DcBusiTargetDraftController extends BaseController{ |
public class DcBusiTargetDraftController extends BaseController |
||||
|
{ |
||||
@Autowired |
@Autowired |
||||
private DcBusiTargetDraftService dcBusiTargetDraftService; |
private IDcBusiTargetDraftService dcBusiTargetDraftService; |
||||
|
|
||||
/** |
/** |
||||
* 分页列表查询 |
* 查询指标数据底稿列表 |
||||
* @return 分页数据 |
|
||||
*/ |
*/ |
||||
|
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetdraft:list')") |
||||
@GetMapping("/list") |
@GetMapping("/list") |
||||
public TableDataInfo list(DcBusiTargetDraft dcBusiTargetDraft) |
public TableDataInfo list(DcBusiTargetDraft dcBusiTargetDraft) |
||||
{ startPage(); |
{ |
||||
List<DcBusiTargetDraft> list = dcBusiTargetDraftService.selectByVo(dcBusiTargetDraft); |
startPage(); |
||||
|
List<DcBusiTargetDraft> list = dcBusiTargetDraftService.selectDcBusiTargetDraftList(dcBusiTargetDraft); |
||||
return getDataTable(list); |
return getDataTable(list); |
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
*根据ID获取详情 |
* 导出指标数据底稿列表 |
||||
*@param id |
|
||||
@return DcBusiTargetDraft 没有反馈空 |
|
||||
*/ |
|
||||
@ApiOperation("根据ID获取指标数据底稿表详细信息") |
|
||||
@GetMapping(value = "/{id}") |
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id) { |
|
||||
return AjaxResult.success(dcBusiTargetDraftService.getById(id)); |
|
||||
} |
|
||||
/** |
|
||||
* 指标数据底稿表-新增 |
|
||||
*@param dcBusiTargetDraft |
|
||||
*@return DcBusiTargetDraft |
|
||||
*/ |
|
||||
@ApiOperation("新增指标数据底稿表一条数据") |
|
||||
@Log(title = "", businessType = BusinessType.INSERT) |
|
||||
@PostMapping |
|
||||
public AjaxResult add(@Valid @RequestBody DcBusiTargetDraft dcBusiTargetDraft) { |
|
||||
//BeanValidators.validateWithException(validator, dcBusiTargetDraft);
|
|
||||
dcBusiTargetDraft.setCreatedBy(getUsername()); |
|
||||
dcBusiTargetDraft.setCreatedTime(DateUtils.getNowDate()); |
|
||||
dcBusiTargetDraft.setTenantId("0"); |
|
||||
dcBusiTargetDraft.setUpdatedBy(getUsername()); |
|
||||
dcBusiTargetDraft.setUpdatedTime(DateUtils.getNowDate()); |
|
||||
return toAjax(dcBusiTargetDraftService.insertByVo(dcBusiTargetDraft)); |
|
||||
} |
|
||||
/** |
|
||||
* 指标数据底稿表-修改 |
|
||||
*@param dcBusiTargetDraft |
|
||||
*@return DcBusiTargetDraft |
|
||||
*/ |
*/ |
||||
@ApiOperation("指标数据底稿表修改") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetdraft:export')") |
||||
@Log(title = "", businessType = BusinessType.UPDATE) |
@Log(title = "指标数据底稿", businessType = BusinessType.EXPORT) |
||||
@PutMapping |
@PostMapping("/export") |
||||
public AjaxResult edit(@Valid @RequestBody DcBusiTargetDraft dcBusiTargetDraft) { |
public void export(HttpServletResponse response, DcBusiTargetDraft dcBusiTargetDraft) |
||||
//BeanValidators.validateWithException(validator, dcBusiTargetDraft);
|
{ |
||||
dcBusiTargetDraft.setUpdatedBy(getUsername()); |
List<DcBusiTargetDraft> list = dcBusiTargetDraftService.selectDcBusiTargetDraftList(dcBusiTargetDraft); |
||||
dcBusiTargetDraft.setUpdatedTime(DateUtils.getNowDate()); |
ExcelUtil<DcBusiTargetDraft> util = new ExcelUtil<DcBusiTargetDraft>(DcBusiTargetDraft.class); |
||||
return toAjax(dcBusiTargetDraftService.updateById(dcBusiTargetDraft)); |
util.exportExcel(response, list, "指标数据底稿数据"); |
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
* 通过ID删除指标数据底稿表 |
* 获取指标数据底稿详细信息 |
||||
* @param |
|
||||
* @return 成功1 失败0 |
|
||||
*/ |
*/ |
||||
@ApiOperation("根据ID删除指标数据底稿表") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetdraft:query')") |
||||
@Log(title = "单一指标数据底稿表", businessType = BusinessType.DELETE) |
@GetMapping(value = "/{id}") |
||||
@DeleteMapping("/id/{id}") |
public AjaxResult getInfo(@PathVariable("id") Long id) |
||||
public AjaxResult batchRemove(@PathVariable Long id) { |
{ |
||||
DcBusiTargetDraft dcBusiTargetDraft=new DcBusiTargetDraft(); |
return success(dcBusiTargetDraftService.selectDcBusiTargetDraftById(id)); |
||||
dcBusiTargetDraft.setId(id); |
|
||||
return toAjax(dcBusiTargetDraftService.removeById( dcBusiTargetDraft)); |
|
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
* 批量删除指标数据底稿表 |
* 新增指标数据底稿 |
||||
* @param ids 数组 |
|
||||
* @return 删除的条数 |
|
||||
*/ |
*/ |
||||
@ApiOperation("批量删除指标数据底稿表") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetdraft:add')") |
||||
@Log(title = "批量删除指标数据底稿表", businessType = BusinessType.DELETE) |
@Log(title = "指标数据底稿", businessType = BusinessType.INSERT) |
||||
@DeleteMapping("/ids/{ids}") |
@PostMapping |
||||
public AjaxResult batchRemove(@PathVariable Long[] ids) { |
public AjaxResult add(@RequestBody DcBusiTargetDraft dcBusiTargetDraft) |
||||
List<Long> collect = Arrays.stream(ids).collect(Collectors.toList()); |
{ |
||||
return toAjax(dcBusiTargetDraftService.removeBatchByIds(collect)); |
return toAjax(dcBusiTargetDraftService.insertDcBusiTargetDraft(dcBusiTargetDraft)); |
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
* 通过模版导入"指标数据底稿表数据 |
* 修改指标数据底稿 |
||||
* |
|
||||
*/ |
*/ |
||||
@ApiOperation("指标数据底稿表数据导入") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetdraft:edit')") |
||||
@PostMapping("/importTemplate") |
@Log(title = "指标数据底稿", businessType = BusinessType.UPDATE) |
||||
public void importTemplate(HttpServletResponse response) { |
@PutMapping |
||||
ExcelUtil<DcBusiTargetDraft> util = new ExcelUtil<>(DcBusiTargetDraft.class); |
public AjaxResult edit(@RequestBody DcBusiTargetDraft dcBusiTargetDraft) |
||||
util.importTemplateExcel(response, "指标数据底稿表导出数据"); |
{ |
||||
|
return toAjax(dcBusiTargetDraftService.updateDcBusiTargetDraft(dcBusiTargetDraft)); |
||||
} |
} |
||||
|
|
||||
/** |
/** |
||||
* "指标数据底稿表数据导出功能 |
* 删除指标数据底稿 |
||||
*/ |
*/ |
||||
@ApiOperation("导出指标数据底稿表数据") |
@PreAuthorize("@ss.hasPermi('assetData:AssetTargetdraft:remove')") |
||||
@PostMapping("/export") |
@Log(title = "指标数据底稿", businessType = BusinessType.DELETE) |
||||
public void export(HttpServletResponse response, DcBusiTargetDraft dcBusiTargetDraft) { |
@DeleteMapping("/{ids}") |
||||
QueryWrapper<DcBusiTargetDraft> queryWrapper = new QueryWrapper<>(); |
public AjaxResult remove(@PathVariable Long[] ids) |
||||
List<DcBusiTargetDraft> list = dcBusiTargetDraftService.list(queryWrapper); |
{ |
||||
ExcelUtil<DcBusiTargetDraft> util = new ExcelUtil<>(DcBusiTargetDraft.class); |
return toAjax(dcBusiTargetDraftService.deleteDcBusiTargetDraftByIds(ids)); |
||||
util.exportExcel(response, list, "导出的指标数据底稿表数据"); |
|
||||
} |
} |
||||
} |
} |
||||
|
@ -1,65 +1,296 @@ |
|||||
package com.lzbi.bi.domain; |
package com.lzbi.bi.domain; |
||||
|
|
||||
import com.lzbi.common.core.domain.BaseEntity; |
import java.math.BigDecimal; |
||||
import com.lzbi.module.base.BaseModuleEntity; |
|
||||
import io.swagger.annotations.ApiModel; |
|
||||
import io.swagger.annotations.ApiModelProperty; |
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
|
||||
import com.baomidou.mybatisplus.annotation.TableId; |
|
||||
import lombok.AllArgsConstructor; |
|
||||
import lombok.Data; |
|
||||
import lombok.NoArgsConstructor; |
|
||||
import lombok.experimental.Accessors; |
|
||||
|
|
||||
import java.io.Serializable; |
|
||||
import java.util.Date; |
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.lzbi.common.annotation.Excel; |
||||
|
import com.lzbi.common.core.domain.BaseEntity; |
||||
|
|
||||
/** |
/** |
||||
* 资产指标调整单; |
* 资产指标调整单对象 dc_busi_target_adjust |
||||
* @author : zhousq |
* |
||||
* @date : 2023-11-16 |
* @author zhousq |
||||
|
* @date 2023-11-23 |
||||
*/ |
*/ |
||||
@Data |
public class DcBusiTargetAdjust extends BaseEntity |
||||
@NoArgsConstructor |
{ |
||||
@AllArgsConstructor |
private static final long serialVersionUID = 1L; |
||||
@Accessors(chain = true) |
|
||||
@ApiModel(value = "资产指标调整单",description = "") |
/** 租户号 */ |
||||
@TableName("dc_busi_target_adjust") |
@Excel(name = "租户号") |
||||
public class DcBusiTargetAdjust extends BaseModuleEntity { |
private String tenantId; |
||||
|
|
||||
|
/** 乐观锁 */ |
||||
|
@Excel(name = "乐观锁") |
||||
|
private Long REVISION; |
||||
|
|
||||
|
/** 创建人 */ |
||||
|
@Excel(name = "创建人") |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** 创建时间 */ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd") |
||||
|
@Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd") |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** 更新人 */ |
||||
|
@Excel(name = "更新人") |
||||
|
private String updatedBy; |
||||
|
|
||||
|
/** 更新时间 */ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd") |
||||
|
@Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd") |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
/** 删除人 */ |
||||
|
@Excel(name = "删除人") |
||||
|
private String deleteBy; |
||||
|
|
||||
|
/** 删除时间 */ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd") |
||||
|
@Excel(name = "删除时间", width = 30, dateFormat = "yyyy-MM-dd") |
||||
|
private Date deleteTime; |
||||
|
|
||||
/** 单据号 */ |
/** 单据号 */ |
||||
@ApiModelProperty(name = "单据号",notes = "") |
@Excel(name = "单据号") |
||||
private String billSerial ; |
private String billSerial; |
||||
|
|
||||
/** 单据类别 */ |
/** 单据类别 */ |
||||
@ApiModelProperty(name = "单据类别",notes = "") |
@Excel(name = "单据类别") |
||||
private String biilType ; |
private String biilType; |
||||
|
|
||||
/** 指标编码 */ |
/** 指标编码 */ |
||||
@ApiModelProperty(name = "指标编码",notes = "") |
@Excel(name = "指标编码") |
||||
private String targetCode ; |
private String targetCode; |
||||
|
|
||||
/** 资产ID */ |
/** 资产ID */ |
||||
@ApiModelProperty(name = "资产ID",notes = "") |
@Excel(name = "资产ID") |
||||
private Integer assetId ; |
private Long assetId; |
||||
|
|
||||
/** 原始值 */ |
/** 原始值 */ |
||||
@ApiModelProperty(name = "原始值",notes = "") |
@Excel(name = "原始值") |
||||
private Double valOrginal ; |
private BigDecimal valOrginal; |
||||
|
|
||||
/** 调整值 */ |
/** 调整值 */ |
||||
@ApiModelProperty(name = "调整值",notes = "") |
@Excel(name = "调整值") |
||||
private Double valAdjust ; |
private BigDecimal valAdjust; |
||||
|
|
||||
/** 结果值 */ |
/** 结果值 */ |
||||
@ApiModelProperty(name = "结果值",notes = "") |
@Excel(name = "结果值") |
||||
private Double valResult ; |
private BigDecimal valResult; |
||||
|
|
||||
/** 主键 */ |
/** 主键 */ |
||||
@ApiModelProperty(name = "主键",notes = "") |
private Long id; |
||||
@TableId |
|
||||
private long id; |
|
||||
/** 调整目标日期 */ |
/** 调整目标日期 */ |
||||
@ApiModelProperty(name = "调整目标日期",notes = "") |
@JsonFormat(pattern = "yyyy-MM-dd") |
||||
private Date dateAdjust ; |
@Excel(name = "调整目标日期", width = 30, dateFormat = "yyyy-MM-dd") |
||||
|
private Date dateAdjust; |
||||
|
|
||||
/** 调整目标时间 */ |
/** 调整目标时间 */ |
||||
@ApiModelProperty(name = "调整目标时间",notes = "") |
@Excel(name = "调整目标时间") |
||||
private String hourAdjust ; |
private String hourAdjust; |
||||
|
|
||||
/** 调整目标日期字符串 */ |
/** 调整目标日期字符串 */ |
||||
@ApiModelProperty(name = "调整目标日期字符串",notes = "") |
@Excel(name = "调整目标日期字符串") |
||||
private String dateAdjustStr ; |
private String dateAdjustStr; |
||||
|
|
||||
|
public void setTenantId(String tenantId) |
||||
|
{ |
||||
|
this.tenantId = tenantId; |
||||
|
} |
||||
|
|
||||
|
public String getTenantId() |
||||
|
{ |
||||
|
return tenantId; |
||||
|
} |
||||
|
public void setREVISION(Long REVISION) |
||||
|
{ |
||||
|
this.REVISION = REVISION; |
||||
|
} |
||||
|
|
||||
|
public Long getREVISION() |
||||
|
{ |
||||
|
return REVISION; |
||||
|
} |
||||
|
public void setCreatedBy(String createdBy) |
||||
|
{ |
||||
|
this.createdBy = createdBy; |
||||
|
} |
||||
|
|
||||
|
public String getCreatedBy() |
||||
|
{ |
||||
|
return createdBy; |
||||
|
} |
||||
|
public void setCreatedTime(Date createdTime) |
||||
|
{ |
||||
|
this.createdTime = createdTime; |
||||
|
} |
||||
|
|
||||
|
public Date getCreatedTime() |
||||
|
{ |
||||
|
return createdTime; |
||||
|
} |
||||
|
public void setUpdatedBy(String updatedBy) |
||||
|
{ |
||||
|
this.updatedBy = updatedBy; |
||||
|
} |
||||
|
|
||||
|
public String getUpdatedBy() |
||||
|
{ |
||||
|
return updatedBy; |
||||
|
} |
||||
|
public void setUpdatedTime(Date updatedTime) |
||||
|
{ |
||||
|
this.updatedTime = updatedTime; |
||||
|
} |
||||
|
|
||||
|
public Date getUpdatedTime() |
||||
|
{ |
||||
|
return updatedTime; |
||||
|
} |
||||
|
public void setDeleteBy(String deleteBy) |
||||
|
{ |
||||
|
this.deleteBy = deleteBy; |
||||
|
} |
||||
|
|
||||
|
public String getDeleteBy() |
||||
|
{ |
||||
|
return deleteBy; |
||||
|
} |
||||
|
public void setDeleteTime(Date deleteTime) |
||||
|
{ |
||||
|
this.deleteTime = deleteTime; |
||||
|
} |
||||
|
|
||||
|
public Date getDeleteTime() |
||||
|
{ |
||||
|
return deleteTime; |
||||
|
} |
||||
|
public void setBillSerial(String billSerial) |
||||
|
{ |
||||
|
this.billSerial = billSerial; |
||||
|
} |
||||
|
|
||||
|
public String getBillSerial() |
||||
|
{ |
||||
|
return billSerial; |
||||
|
} |
||||
|
public void setBiilType(String biilType) |
||||
|
{ |
||||
|
this.biilType = biilType; |
||||
|
} |
||||
|
|
||||
|
public String getBiilType() |
||||
|
{ |
||||
|
return biilType; |
||||
|
} |
||||
|
public void setTargetCode(String targetCode) |
||||
|
{ |
||||
|
this.targetCode = targetCode; |
||||
|
} |
||||
|
|
||||
|
public String getTargetCode() |
||||
|
{ |
||||
|
return targetCode; |
||||
|
} |
||||
|
public void setAssetId(Long assetId) |
||||
|
{ |
||||
|
this.assetId = assetId; |
||||
|
} |
||||
|
|
||||
|
public Long getAssetId() |
||||
|
{ |
||||
|
return assetId; |
||||
|
} |
||||
|
public void setValOrginal(BigDecimal valOrginal) |
||||
|
{ |
||||
|
this.valOrginal = valOrginal; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getValOrginal() |
||||
|
{ |
||||
|
return valOrginal; |
||||
|
} |
||||
|
public void setValAdjust(BigDecimal valAdjust) |
||||
|
{ |
||||
|
this.valAdjust = valAdjust; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getValAdjust() |
||||
|
{ |
||||
|
return valAdjust; |
||||
|
} |
||||
|
public void setValResult(BigDecimal valResult) |
||||
|
{ |
||||
|
this.valResult = valResult; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getValResult() |
||||
|
{ |
||||
|
return valResult; |
||||
|
} |
||||
|
public void setId(Long id) |
||||
|
{ |
||||
|
this.id = id; |
||||
|
} |
||||
|
|
||||
|
public Long getId() |
||||
|
{ |
||||
|
return id; |
||||
|
} |
||||
|
public void setDateAdjust(Date dateAdjust) |
||||
|
{ |
||||
|
this.dateAdjust = dateAdjust; |
||||
|
} |
||||
|
|
||||
|
public Date getDateAdjust() |
||||
|
{ |
||||
|
return dateAdjust; |
||||
|
} |
||||
|
public void setHourAdjust(String hourAdjust) |
||||
|
{ |
||||
|
this.hourAdjust = hourAdjust; |
||||
|
} |
||||
|
|
||||
|
public String getHourAdjust() |
||||
|
{ |
||||
|
return hourAdjust; |
||||
|
} |
||||
|
public void setDateAdjustStr(String dateAdjustStr) |
||||
|
{ |
||||
|
this.dateAdjustStr = dateAdjustStr; |
||||
|
} |
||||
|
|
||||
|
public String getDateAdjustStr() |
||||
|
{ |
||||
|
return dateAdjustStr; |
||||
|
} |
||||
|
|
||||
} |
@Override |
||||
|
public String toString() { |
||||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
||||
|
.append("tenantId", getTenantId()) |
||||
|
.append("REVISION", getREVISION()) |
||||
|
.append("createdBy", getCreatedBy()) |
||||
|
.append("createdTime", getCreatedTime()) |
||||
|
.append("updatedBy", getUpdatedBy()) |
||||
|
.append("updatedTime", getUpdatedTime()) |
||||
|
.append("deleteBy", getDeleteBy()) |
||||
|
.append("deleteTime", getDeleteTime()) |
||||
|
.append("billSerial", getBillSerial()) |
||||
|
.append("biilType", getBiilType()) |
||||
|
.append("targetCode", getTargetCode()) |
||||
|
.append("assetId", getAssetId()) |
||||
|
.append("valOrginal", getValOrginal()) |
||||
|
.append("valAdjust", getValAdjust()) |
||||
|
.append("valResult", getValResult()) |
||||
|
.append("id", getId()) |
||||
|
.append("dateAdjust", getDateAdjust()) |
||||
|
.append("hourAdjust", getHourAdjust()) |
||||
|
.append("dateAdjustStr", getDateAdjustStr()) |
||||
|
.toString(); |
||||
|
} |
||||
|
} |
||||
|
@ -1,156 +1,729 @@ |
|||||
package com.lzbi.bi.domain; |
package com.lzbi.bi.domain; |
||||
|
|
||||
import io.swagger.annotations.ApiModel; |
import java.math.BigDecimal; |
||||
import io.swagger.annotations.ApiModelProperty; |
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
|
||||
import com.baomidou.mybatisplus.annotation.TableId; |
|
||||
import java.io.Serializable; |
|
||||
import java.util.Date; |
import java.util.Date; |
||||
import lombok.AllArgsConstructor; |
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Data; |
import org.apache.commons.lang3.builder.ToStringBuilder; |
||||
import lombok.NoArgsConstructor; |
import org.apache.commons.lang3.builder.ToStringStyle; |
||||
import lombok.experimental.Accessors; |
import com.lzbi.common.annotation.Excel; |
||||
import com.lzbi.module.base.BaseModuleEntity; |
import com.lzbi.common.core.domain.BaseEntity; |
||||
|
|
||||
/** |
/** |
||||
* 指标数据底稿表; |
* 指标数据底稿对象 dc_busi_target_draft |
||||
* @author : zhousq |
* |
||||
* @date : 2023-11-16 |
* @author zhousq |
||||
|
* @date 2023-11-23 |
||||
*/ |
*/ |
||||
@Data |
public class DcBusiTargetDraft extends BaseEntity |
||||
@NoArgsConstructor |
{ |
||||
@AllArgsConstructor |
private static final long serialVersionUID = 1L; |
||||
@Accessors(chain = true) |
|
||||
@ApiModel(value = "指标数据底稿表",description = "") |
/** 租户号 */ |
||||
@TableName("dc_busi_target_draft") |
@Excel(name = "租户号") |
||||
public class DcBusiTargetDraft extends BaseModuleEntity{ |
private String tenantId; |
||||
|
|
||||
|
/** 乐观锁 */ |
||||
|
@Excel(name = "乐观锁") |
||||
|
private Long REVISION; |
||||
|
|
||||
|
/** 创建人 */ |
||||
|
@Excel(name = "创建人") |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** 创建时间 */ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd") |
||||
|
@Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd") |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** 更新人 */ |
||||
|
@Excel(name = "更新人") |
||||
|
private String updatedBy; |
||||
|
|
||||
|
/** 更新时间 */ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd") |
||||
|
@Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd") |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
/** 删除人 */ |
||||
|
@Excel(name = "删除人") |
||||
|
private String deleteBy; |
||||
|
|
||||
|
/** 删除时间 */ |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd") |
||||
|
@Excel(name = "删除时间", width = 30, dateFormat = "yyyy-MM-dd") |
||||
|
private Date deleteTime; |
||||
|
|
||||
/** 主键 */ |
/** 主键 */ |
||||
@ApiModelProperty(name = "主键",notes = "") |
private Long id; |
||||
@TableId |
|
||||
private long id; |
|
||||
/** 指标主键 */ |
/** 指标主键 */ |
||||
@ApiModelProperty(name = "指标主键",notes = "") |
@Excel(name = "指标主键") |
||||
private Integer targetId ; |
private Long targetId; |
||||
|
|
||||
/** 指标编码 */ |
/** 指标编码 */ |
||||
@ApiModelProperty(name = "指标编码",notes = "") |
@Excel(name = "指标编码") |
||||
private String targetCode ; |
private String targetCode; |
||||
|
|
||||
/** 年份 */ |
/** 年份 */ |
||||
@ApiModelProperty(name = "年份",notes = "") |
@Excel(name = "年份") |
||||
private String countYear ; |
private String countYear; |
||||
|
|
||||
/** 月份 */ |
/** 月份 */ |
||||
@ApiModelProperty(name = "月份",notes = "") |
@Excel(name = "月份") |
||||
private String countMonth ; |
private String countMonth; |
||||
|
|
||||
/** 日 */ |
/** 日 */ |
||||
@ApiModelProperty(name = "日",notes = "") |
@Excel(name = "日") |
||||
private String countDay ; |
private String countDay; |
||||
|
|
||||
/** 1时;[00:00:00,00:59:59] */ |
/** 1时;[00:00:00,00:59:59] */ |
||||
@ApiModelProperty(name = "1时",notes = "[00:00:00,00:59:59]") |
@Excel(name = "1时;[00:00:00,00:59:59]") |
||||
private Double val01 ; |
private BigDecimal val01; |
||||
|
|
||||
/** 2时;[01:00:00,01:59:59] */ |
/** 2时;[01:00:00,01:59:59] */ |
||||
@ApiModelProperty(name = "2时",notes = "[01:00:00,01:59:59]") |
@Excel(name = "2时;[01:00:00,01:59:59]") |
||||
private Double val02 ; |
private BigDecimal val02; |
||||
|
|
||||
/** 3时;[02:00:00,02:59:59] */ |
/** 3时;[02:00:00,02:59:59] */ |
||||
@ApiModelProperty(name = "3时",notes = "[02:00:00,02:59:59]") |
@Excel(name = "3时;[02:00:00,02:59:59]") |
||||
private Double val03 ; |
private BigDecimal val03; |
||||
|
|
||||
/** 4时 */ |
/** 4时 */ |
||||
@ApiModelProperty(name = "4时",notes = "") |
@Excel(name = "4时") |
||||
private Double val04 ; |
private BigDecimal val04; |
||||
|
|
||||
/** 5时 */ |
/** 5时 */ |
||||
@ApiModelProperty(name = "5时",notes = "") |
@Excel(name = "5时") |
||||
private Double val05 ; |
private BigDecimal val05; |
||||
|
|
||||
/** 6时 */ |
/** 6时 */ |
||||
@ApiModelProperty(name = "6时",notes = "") |
@Excel(name = "6时") |
||||
private Double val06 ; |
private BigDecimal val06; |
||||
|
|
||||
/** 7时 */ |
/** 7时 */ |
||||
@ApiModelProperty(name = "7时",notes = "") |
@Excel(name = "7时") |
||||
private Double val07 ; |
private BigDecimal val07; |
||||
|
|
||||
/** 8时 */ |
/** 8时 */ |
||||
@ApiModelProperty(name = "8时",notes = "") |
@Excel(name = "8时") |
||||
private Double val08 ; |
private BigDecimal val08; |
||||
|
|
||||
/** 9时 */ |
/** 9时 */ |
||||
@ApiModelProperty(name = "9时",notes = "") |
@Excel(name = "9时") |
||||
private Double val09 ; |
private BigDecimal val09; |
||||
|
|
||||
/** 10时 */ |
/** 10时 */ |
||||
@ApiModelProperty(name = "10时",notes = "") |
@Excel(name = "10时") |
||||
private Double val10 ; |
private BigDecimal val10; |
||||
|
|
||||
/** 11时 */ |
/** 11时 */ |
||||
@ApiModelProperty(name = "11时",notes = "") |
@Excel(name = "11时") |
||||
private Double val11 ; |
private BigDecimal val11; |
||||
|
|
||||
/** 12时 */ |
/** 12时 */ |
||||
@ApiModelProperty(name = "12时",notes = "") |
@Excel(name = "12时") |
||||
private Double val12 ; |
private BigDecimal val12; |
||||
|
|
||||
/** 13时 */ |
/** 13时 */ |
||||
@ApiModelProperty(name = "13时",notes = "") |
@Excel(name = "13时") |
||||
private Double val13 ; |
private BigDecimal val13; |
||||
|
|
||||
/** 14时 */ |
/** 14时 */ |
||||
@ApiModelProperty(name = "14时",notes = "") |
@Excel(name = "14时") |
||||
private Double val14 ; |
private BigDecimal val14; |
||||
|
|
||||
/** 15时 */ |
/** 15时 */ |
||||
@ApiModelProperty(name = "15时",notes = "") |
@Excel(name = "15时") |
||||
private Double val15 ; |
private BigDecimal val15; |
||||
|
|
||||
/** 16时 */ |
/** 16时 */ |
||||
@ApiModelProperty(name = "16时",notes = "") |
@Excel(name = "16时") |
||||
private Double val16 ; |
private BigDecimal val16; |
||||
|
|
||||
/** 17时 */ |
/** 17时 */ |
||||
@ApiModelProperty(name = "17时",notes = "") |
@Excel(name = "17时") |
||||
private Double val17 ; |
private BigDecimal val17; |
||||
|
|
||||
/** 18时 */ |
/** 18时 */ |
||||
@ApiModelProperty(name = "18时",notes = "") |
@Excel(name = "18时") |
||||
private Double val18 ; |
private BigDecimal val18; |
||||
|
|
||||
/** 18时 */ |
/** 18时 */ |
||||
@ApiModelProperty(name = "18时",notes = "") |
@Excel(name = "18时") |
||||
private Double val19 ; |
private BigDecimal val19; |
||||
|
|
||||
/** 20时 */ |
/** 20时 */ |
||||
@ApiModelProperty(name = "20时",notes = "") |
@Excel(name = "20时") |
||||
private Double val20 ; |
private BigDecimal val20; |
||||
|
|
||||
/** 21时 */ |
/** 21时 */ |
||||
@ApiModelProperty(name = "21时",notes = "") |
@Excel(name = "21时") |
||||
private Double val21 ; |
private BigDecimal val21; |
||||
|
|
||||
/** 22时 */ |
/** 22时 */ |
||||
@ApiModelProperty(name = "22时",notes = "") |
@Excel(name = "22时") |
||||
private Double val22 ; |
private BigDecimal val22; |
||||
|
|
||||
/** 23时 */ |
/** 23时 */ |
||||
@ApiModelProperty(name = "23时",notes = "") |
@Excel(name = "23时") |
||||
private Double val23 ; |
private BigDecimal val23; |
||||
|
|
||||
/** 24时 */ |
/** 24时 */ |
||||
@ApiModelProperty(name = "24时",notes = "") |
@Excel(name = "24时") |
||||
private Double val24 ; |
private BigDecimal val24; |
||||
|
|
||||
/** 公司 */ |
/** 公司 */ |
||||
@ApiModelProperty(name = "公司",notes = "") |
@Excel(name = "公司") |
||||
private String companyCode ; |
private String companyCode; |
||||
|
|
||||
/** 公司名称 */ |
/** 公司名称 */ |
||||
@ApiModelProperty(name = "公司名称",notes = "") |
@Excel(name = "公司名称") |
||||
private String companyName ; |
private String companyName; |
||||
|
|
||||
/** 组织机构代码 */ |
/** 组织机构代码 */ |
||||
@ApiModelProperty(name = "组织机构代码",notes = "") |
@Excel(name = "组织机构代码") |
||||
private String orgCode ; |
private String orgCode; |
||||
|
|
||||
/** 组织机构名称 */ |
/** 组织机构名称 */ |
||||
@ApiModelProperty(name = "组织机构名称",notes = "") |
@Excel(name = "组织机构名称") |
||||
private String orgName ; |
private String orgName; |
||||
|
|
||||
/** 生产专业 */ |
/** 生产专业 */ |
||||
@ApiModelProperty(name = "生产专业",notes = "") |
@Excel(name = "生产专业") |
||||
private String workType ; |
private String workType; |
||||
|
|
||||
/** 统计单元名称 */ |
/** 统计单元名称 */ |
||||
@ApiModelProperty(name = "统计单元名称",notes = "") |
@Excel(name = "统计单元名称") |
||||
private String countUnitName ; |
private String countUnitName; |
||||
|
|
||||
/** 资产ID */ |
/** 资产ID */ |
||||
@ApiModelProperty(name = "资产ID",notes = "") |
@Excel(name = "资产ID") |
||||
private Integer assetId ; |
private Long assetId; |
||||
|
|
||||
/** 上线 */ |
/** 上线 */ |
||||
@ApiModelProperty(name = "上线",notes = "") |
@Excel(name = "上线") |
||||
private Double valUpLimit ; |
private BigDecimal valUpLimit; |
||||
|
|
||||
/** 下线 */ |
/** 下线 */ |
||||
@ApiModelProperty(name = "下线",notes = "") |
@Excel(name = "下线") |
||||
private Double valDownLimit ; |
private BigDecimal valDownLimit; |
||||
|
|
||||
/** 均值 */ |
/** 均值 */ |
||||
@ApiModelProperty(name = "均值",notes = "") |
@Excel(name = "均值") |
||||
private Double valAvg ; |
private BigDecimal valAvg; |
||||
|
|
||||
/** 合值 */ |
/** 合值 */ |
||||
@ApiModelProperty(name = "合值",notes = "") |
@Excel(name = "合值") |
||||
private Double valTotal ; |
private BigDecimal valTotal; |
||||
|
|
||||
/** 积算 */ |
/** 积算 */ |
||||
@ApiModelProperty(name = "积算",notes = "") |
@Excel(name = "积算") |
||||
private Double valCompute ; |
private BigDecimal valCompute; |
||||
|
|
||||
|
public void setTenantId(String tenantId) |
||||
|
{ |
||||
|
this.tenantId = tenantId; |
||||
|
} |
||||
|
|
||||
|
public String getTenantId() |
||||
|
{ |
||||
|
return tenantId; |
||||
|
} |
||||
|
public void setREVISION(Long REVISION) |
||||
|
{ |
||||
|
this.REVISION = REVISION; |
||||
|
} |
||||
|
|
||||
|
public Long getREVISION() |
||||
|
{ |
||||
|
return REVISION; |
||||
|
} |
||||
|
public void setCreatedBy(String createdBy) |
||||
|
{ |
||||
|
this.createdBy = createdBy; |
||||
|
} |
||||
|
|
||||
|
public String getCreatedBy() |
||||
|
{ |
||||
|
return createdBy; |
||||
|
} |
||||
|
public void setCreatedTime(Date createdTime) |
||||
|
{ |
||||
|
this.createdTime = createdTime; |
||||
|
} |
||||
|
|
||||
|
public Date getCreatedTime() |
||||
|
{ |
||||
|
return createdTime; |
||||
|
} |
||||
|
public void setUpdatedBy(String updatedBy) |
||||
|
{ |
||||
|
this.updatedBy = updatedBy; |
||||
|
} |
||||
|
|
||||
|
public String getUpdatedBy() |
||||
|
{ |
||||
|
return updatedBy; |
||||
|
} |
||||
|
public void setUpdatedTime(Date updatedTime) |
||||
|
{ |
||||
|
this.updatedTime = updatedTime; |
||||
|
} |
||||
|
|
||||
|
public Date getUpdatedTime() |
||||
|
{ |
||||
|
return updatedTime; |
||||
|
} |
||||
|
public void setDeleteBy(String deleteBy) |
||||
|
{ |
||||
|
this.deleteBy = deleteBy; |
||||
|
} |
||||
|
|
||||
|
public String getDeleteBy() |
||||
|
{ |
||||
|
return deleteBy; |
||||
|
} |
||||
|
public void setDeleteTime(Date deleteTime) |
||||
|
{ |
||||
|
this.deleteTime = deleteTime; |
||||
|
} |
||||
|
|
||||
|
public Date getDeleteTime() |
||||
|
{ |
||||
|
return deleteTime; |
||||
|
} |
||||
|
public void setId(Long id) |
||||
|
{ |
||||
|
this.id = id; |
||||
|
} |
||||
|
|
||||
|
public Long getId() |
||||
|
{ |
||||
|
return id; |
||||
|
} |
||||
|
public void setTargetId(Long targetId) |
||||
|
{ |
||||
|
this.targetId = targetId; |
||||
|
} |
||||
|
|
||||
|
public Long getTargetId() |
||||
|
{ |
||||
|
return targetId; |
||||
|
} |
||||
|
public void setTargetCode(String targetCode) |
||||
|
{ |
||||
|
this.targetCode = targetCode; |
||||
|
} |
||||
|
|
||||
|
public String getTargetCode() |
||||
|
{ |
||||
|
return targetCode; |
||||
|
} |
||||
|
public void setCountYear(String countYear) |
||||
|
{ |
||||
|
this.countYear = countYear; |
||||
|
} |
||||
|
|
||||
|
public String getCountYear() |
||||
|
{ |
||||
|
return countYear; |
||||
|
} |
||||
|
public void setCountMonth(String countMonth) |
||||
|
{ |
||||
|
this.countMonth = countMonth; |
||||
|
} |
||||
|
|
||||
|
public String getCountMonth() |
||||
|
{ |
||||
|
return countMonth; |
||||
|
} |
||||
|
public void setCountDay(String countDay) |
||||
|
{ |
||||
|
this.countDay = countDay; |
||||
|
} |
||||
|
|
||||
|
public String getCountDay() |
||||
|
{ |
||||
|
return countDay; |
||||
|
} |
||||
|
public void setVal01(BigDecimal val01) |
||||
|
{ |
||||
|
this.val01 = val01; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal01() |
||||
|
{ |
||||
|
return val01; |
||||
|
} |
||||
|
public void setVal02(BigDecimal val02) |
||||
|
{ |
||||
|
this.val02 = val02; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal02() |
||||
|
{ |
||||
|
return val02; |
||||
|
} |
||||
|
public void setVal03(BigDecimal val03) |
||||
|
{ |
||||
|
this.val03 = val03; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal03() |
||||
|
{ |
||||
|
return val03; |
||||
|
} |
||||
|
public void setVal04(BigDecimal val04) |
||||
|
{ |
||||
|
this.val04 = val04; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal04() |
||||
|
{ |
||||
|
return val04; |
||||
|
} |
||||
|
public void setVal05(BigDecimal val05) |
||||
|
{ |
||||
|
this.val05 = val05; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal05() |
||||
|
{ |
||||
|
return val05; |
||||
|
} |
||||
|
public void setVal06(BigDecimal val06) |
||||
|
{ |
||||
|
this.val06 = val06; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal06() |
||||
|
{ |
||||
|
return val06; |
||||
|
} |
||||
|
public void setVal07(BigDecimal val07) |
||||
|
{ |
||||
|
this.val07 = val07; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal07() |
||||
|
{ |
||||
|
return val07; |
||||
|
} |
||||
|
public void setVal08(BigDecimal val08) |
||||
|
{ |
||||
|
this.val08 = val08; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal08() |
||||
|
{ |
||||
|
return val08; |
||||
|
} |
||||
|
public void setVal09(BigDecimal val09) |
||||
|
{ |
||||
|
this.val09 = val09; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal09() |
||||
|
{ |
||||
|
return val09; |
||||
|
} |
||||
|
public void setVal10(BigDecimal val10) |
||||
|
{ |
||||
|
this.val10 = val10; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal10() |
||||
|
{ |
||||
|
return val10; |
||||
|
} |
||||
|
public void setVal11(BigDecimal val11) |
||||
|
{ |
||||
|
this.val11 = val11; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal11() |
||||
|
{ |
||||
|
return val11; |
||||
|
} |
||||
|
public void setVal12(BigDecimal val12) |
||||
|
{ |
||||
|
this.val12 = val12; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal12() |
||||
|
{ |
||||
|
return val12; |
||||
|
} |
||||
|
public void setVal13(BigDecimal val13) |
||||
|
{ |
||||
|
this.val13 = val13; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal13() |
||||
|
{ |
||||
|
return val13; |
||||
|
} |
||||
|
public void setVal14(BigDecimal val14) |
||||
|
{ |
||||
|
this.val14 = val14; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal14() |
||||
|
{ |
||||
|
return val14; |
||||
|
} |
||||
|
public void setVal15(BigDecimal val15) |
||||
|
{ |
||||
|
this.val15 = val15; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal15() |
||||
|
{ |
||||
|
return val15; |
||||
|
} |
||||
|
public void setVal16(BigDecimal val16) |
||||
|
{ |
||||
|
this.val16 = val16; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal16() |
||||
|
{ |
||||
|
return val16; |
||||
|
} |
||||
|
public void setVal17(BigDecimal val17) |
||||
|
{ |
||||
|
this.val17 = val17; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal17() |
||||
|
{ |
||||
|
return val17; |
||||
|
} |
||||
|
public void setVal18(BigDecimal val18) |
||||
|
{ |
||||
|
this.val18 = val18; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal18() |
||||
|
{ |
||||
|
return val18; |
||||
|
} |
||||
|
public void setVal19(BigDecimal val19) |
||||
|
{ |
||||
|
this.val19 = val19; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal19() |
||||
|
{ |
||||
|
return val19; |
||||
|
} |
||||
|
public void setVal20(BigDecimal val20) |
||||
|
{ |
||||
|
this.val20 = val20; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal20() |
||||
|
{ |
||||
|
return val20; |
||||
|
} |
||||
|
public void setVal21(BigDecimal val21) |
||||
|
{ |
||||
|
this.val21 = val21; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal21() |
||||
|
{ |
||||
|
return val21; |
||||
|
} |
||||
|
public void setVal22(BigDecimal val22) |
||||
|
{ |
||||
|
this.val22 = val22; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal22() |
||||
|
{ |
||||
|
return val22; |
||||
|
} |
||||
|
public void setVal23(BigDecimal val23) |
||||
|
{ |
||||
|
this.val23 = val23; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal23() |
||||
|
{ |
||||
|
return val23; |
||||
|
} |
||||
|
public void setVal24(BigDecimal val24) |
||||
|
{ |
||||
|
this.val24 = val24; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getVal24() |
||||
|
{ |
||||
|
return val24; |
||||
|
} |
||||
|
public void setCompanyCode(String companyCode) |
||||
|
{ |
||||
|
this.companyCode = companyCode; |
||||
|
} |
||||
|
|
||||
|
public String getCompanyCode() |
||||
|
{ |
||||
|
return companyCode; |
||||
|
} |
||||
|
public void setCompanyName(String companyName) |
||||
|
{ |
||||
|
this.companyName = companyName; |
||||
|
} |
||||
|
|
||||
|
public String getCompanyName() |
||||
|
{ |
||||
|
return companyName; |
||||
|
} |
||||
|
public void setOrgCode(String orgCode) |
||||
|
{ |
||||
|
this.orgCode = orgCode; |
||||
|
} |
||||
|
|
||||
|
public String getOrgCode() |
||||
|
{ |
||||
|
return orgCode; |
||||
|
} |
||||
|
public void setOrgName(String orgName) |
||||
|
{ |
||||
|
this.orgName = orgName; |
||||
|
} |
||||
|
|
||||
|
public String getOrgName() |
||||
|
{ |
||||
|
return orgName; |
||||
|
} |
||||
|
public void setWorkType(String workType) |
||||
|
{ |
||||
|
this.workType = workType; |
||||
|
} |
||||
|
|
||||
|
public String getWorkType() |
||||
|
{ |
||||
|
return workType; |
||||
|
} |
||||
|
public void setCountUnitName(String countUnitName) |
||||
|
{ |
||||
|
this.countUnitName = countUnitName; |
||||
|
} |
||||
|
|
||||
|
public String getCountUnitName() |
||||
|
{ |
||||
|
return countUnitName; |
||||
|
} |
||||
|
public void setAssetId(Long assetId) |
||||
|
{ |
||||
|
this.assetId = assetId; |
||||
|
} |
||||
|
|
||||
|
public Long getAssetId() |
||||
|
{ |
||||
|
return assetId; |
||||
|
} |
||||
|
public void setValUpLimit(BigDecimal valUpLimit) |
||||
|
{ |
||||
|
this.valUpLimit = valUpLimit; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getValUpLimit() |
||||
|
{ |
||||
|
return valUpLimit; |
||||
|
} |
||||
|
public void setValDownLimit(BigDecimal valDownLimit) |
||||
|
{ |
||||
|
this.valDownLimit = valDownLimit; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getValDownLimit() |
||||
|
{ |
||||
|
return valDownLimit; |
||||
|
} |
||||
|
public void setValAvg(BigDecimal valAvg) |
||||
|
{ |
||||
|
this.valAvg = valAvg; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getValAvg() |
||||
|
{ |
||||
|
return valAvg; |
||||
|
} |
||||
|
public void setValTotal(BigDecimal valTotal) |
||||
|
{ |
||||
|
this.valTotal = valTotal; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getValTotal() |
||||
|
{ |
||||
|
return valTotal; |
||||
|
} |
||||
|
public void setValCompute(BigDecimal valCompute) |
||||
|
{ |
||||
|
this.valCompute = valCompute; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getValCompute() |
||||
|
{ |
||||
|
return valCompute; |
||||
|
} |
||||
|
|
||||
} |
@Override |
||||
|
public String toString() { |
||||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
||||
|
.append("tenantId", getTenantId()) |
||||
|
.append("REVISION", getREVISION()) |
||||
|
.append("createdBy", getCreatedBy()) |
||||
|
.append("createdTime", getCreatedTime()) |
||||
|
.append("updatedBy", getUpdatedBy()) |
||||
|
.append("updatedTime", getUpdatedTime()) |
||||
|
.append("deleteBy", getDeleteBy()) |
||||
|
.append("deleteTime", getDeleteTime()) |
||||
|
.append("id", getId()) |
||||
|
.append("targetId", getTargetId()) |
||||
|
.append("targetCode", getTargetCode()) |
||||
|
.append("countYear", getCountYear()) |
||||
|
.append("countMonth", getCountMonth()) |
||||
|
.append("countDay", getCountDay()) |
||||
|
.append("val01", getVal01()) |
||||
|
.append("val02", getVal02()) |
||||
|
.append("val03", getVal03()) |
||||
|
.append("val04", getVal04()) |
||||
|
.append("val05", getVal05()) |
||||
|
.append("val06", getVal06()) |
||||
|
.append("val07", getVal07()) |
||||
|
.append("val08", getVal08()) |
||||
|
.append("val09", getVal09()) |
||||
|
.append("val10", getVal10()) |
||||
|
.append("val11", getVal11()) |
||||
|
.append("val12", getVal12()) |
||||
|
.append("val13", getVal13()) |
||||
|
.append("val14", getVal14()) |
||||
|
.append("val15", getVal15()) |
||||
|
.append("val16", getVal16()) |
||||
|
.append("val17", getVal17()) |
||||
|
.append("val18", getVal18()) |
||||
|
.append("val19", getVal19()) |
||||
|
.append("val20", getVal20()) |
||||
|
.append("val21", getVal21()) |
||||
|
.append("val22", getVal22()) |
||||
|
.append("val23", getVal23()) |
||||
|
.append("val24", getVal24()) |
||||
|
.append("companyCode", getCompanyCode()) |
||||
|
.append("companyName", getCompanyName()) |
||||
|
.append("orgCode", getOrgCode()) |
||||
|
.append("orgName", getOrgName()) |
||||
|
.append("workType", getWorkType()) |
||||
|
.append("countUnitName", getCountUnitName()) |
||||
|
.append("assetId", getAssetId()) |
||||
|
.append("valUpLimit", getValUpLimit()) |
||||
|
.append("valDownLimit", getValDownLimit()) |
||||
|
.append("valAvg", getValAvg()) |
||||
|
.append("valTotal", getValTotal()) |
||||
|
.append("valCompute", getValCompute()) |
||||
|
.toString(); |
||||
|
} |
||||
|
} |
||||
|
@ -1,17 +1,61 @@ |
|||||
package com.lzbi.bi.mapper; |
package com.lzbi.bi.mapper; |
||||
|
|
||||
import com.baomidou.mybatisplus.annotation.InterceptorIgnore; |
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import com.lzbi.bi.domain.DcBusiTargetAdjust; |
|
||||
import java.util.List; |
import java.util.List; |
||||
|
import com.lzbi.bi.domain.DcBusiTargetAdjust; |
||||
|
|
||||
/** |
/** |
||||
* 资产指标调整单;(dc_busi_target_adjust)表数据库访问层 |
* 资产指标调整单Mapper接口 |
||||
* @author : zhousq |
* |
||||
* @date : 2023-11-16 |
* @author zhousq |
||||
|
* @date 2023-11-23 |
||||
*/ |
*/ |
||||
@InterceptorIgnore(tenantLine = "true") |
public interface DcBusiTargetAdjustMapper |
||||
public interface DcBusiTargetAdjustMapper extends BaseMapper<DcBusiTargetAdjust>{ |
{ |
||||
List<DcBusiTargetAdjust> selectByVo( DcBusiTargetAdjust beanVo); |
/** |
||||
int insertByVo( DcBusiTargetAdjust beanVo); |
* 查询资产指标调整单 |
||||
} |
* |
||||
|
* @param id 资产指标调整单主键 |
||||
|
* @return 资产指标调整单 |
||||
|
*/ |
||||
|
public DcBusiTargetAdjust selectDcBusiTargetAdjustById(Long id); |
||||
|
|
||||
|
/** |
||||
|
* 查询资产指标调整单列表 |
||||
|
* |
||||
|
* @param dcBusiTargetAdjust 资产指标调整单 |
||||
|
* @return 资产指标调整单集合 |
||||
|
*/ |
||||
|
public List<DcBusiTargetAdjust> selectDcBusiTargetAdjustList(DcBusiTargetAdjust dcBusiTargetAdjust); |
||||
|
|
||||
|
/** |
||||
|
* 新增资产指标调整单 |
||||
|
* |
||||
|
* @param dcBusiTargetAdjust 资产指标调整单 |
||||
|
* @return 结果 |
||||
|
*/ |
||||
|
public int insertDcBusiTargetAdjust(DcBusiTargetAdjust dcBusiTargetAdjust); |
||||
|
|
||||
|
/** |
||||
|
* 修改资产指标调整单 |
||||
|
* |
||||
|
* @param dcBusiTargetAdjust 资产指标调整单 |
||||
|
* @return 结果 |
||||
|
*/ |
||||
|
public int updateDcBusiTargetAdjust(DcBusiTargetAdjust dcBusiTargetAdjust); |
||||
|
|
||||
|
/** |
||||
|
* 删除资产指标调整单 |
||||
|
* |
||||
|
* @param id 资产指标调整单主键 |
||||
|
* @return 结果 |
||||
|
*/ |
||||
|
public int deleteDcBusiTargetAdjustById(Long id); |
||||
|
|
||||
|
/** |
||||
|
* 批量删除资产指标调整单 |
||||
|
* |
||||
|
* @param ids 需要删除的数据主键集合 |
||||
|
* @return 结果 |
||||
|
*/ |
||||
|
public int deleteDcBusiTargetAdjustByIds(Long[] ids); |
||||
|
} |
||||
|
@ -1,17 +1,61 @@ |
|||||
package com.lzbi.bi.mapper; |
package com.lzbi.bi.mapper; |
||||
|
|
||||
import com.baomidou.mybatisplus.annotation.InterceptorIgnore; |
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
||||
import com.lzbi.bi.domain.DcBusiTargetDraft; |
|
||||
import java.util.List; |
import java.util.List; |
||||
|
import com.lzbi.bi.domain.DcBusiTargetDraft; |
||||
|
|
||||
/** |
/** |
||||
* 指标数据底稿表;(dc_busi_target_draft)表数据库访问层 |
* 指标数据底稿Mapper接口 |
||||
* @author : zhousq |
* |
||||
* @date : 2023-11-16 |
* @author zhousq |
||||
|
* @date 2023-11-23 |
||||
*/ |
*/ |
||||
@InterceptorIgnore(tenantLine = "true") |
public interface DcBusiTargetDraftMapper |
||||
public interface DcBusiTargetDraftMapper extends BaseMapper<DcBusiTargetDraft>{ |
{ |
||||
List<DcBusiTargetDraft> selectByVo( DcBusiTargetDraft beanVo); |
/** |
||||
int insertByVo( DcBusiTargetDraft beanVo); |
* 查询指标数据底稿 |
||||
} |
* |
||||
|
* @param id 指标数据底稿主键 |
||||
|
* @return 指标数据底稿 |
||||
|
*/ |
||||
|
public DcBusiTargetDraft selectDcBusiTargetDraftById(Long id); |
||||
|
|
||||
|
/** |
||||
|
* 查询指标数据底稿列表 |
||||
|
* |
||||
|
* @param dcBusiTargetDraft 指标数据底稿 |
||||
|
* @return 指标数据底稿集合 |
||||
|
*/ |
||||
|
public List<DcBusiTargetDraft> selectDcBusiTargetDraftList(DcBusiTargetDraft dcBusiTargetDraft); |
||||
|
|
||||
|
/** |
||||
|
* 新增指标数据底稿 |
||||
|
* |
||||
|
* @param dcBusiTargetDraft 指标数据底稿 |
||||
|
* @return 结果 |
||||
|
*/ |
||||
|
public int insertDcBusiTargetDraft(DcBusiTargetDraft dcBusiTargetDraft); |
||||
|
|
||||
|
/** |
||||
|
* 修改指标数据底稿 |
||||
|
* |
||||
|
* @param dcBusiTargetDraft 指标数据底稿 |
||||
|
* @return 结果 |
||||
|
*/ |
||||
|
public int updateDcBusiTargetDraft(DcBusiTargetDraft dcBusiTargetDraft); |
||||
|
|
||||
|
/** |
||||
|
* 删除指标数据底稿 |
||||
|
* |
||||
|
* @param id 指标数据底稿主键 |
||||
|
* @return 结果 |
||||
|
*/ |
||||
|
public int deleteDcBusiTargetDraftById(Long id); |
||||
|
|
||||
|
/** |
||||
|
* 批量删除指标数据底稿 |
||||
|
* |
||||
|
* @param ids 需要删除的数据主键集合 |
||||
|
* @return 结果 |
||||
|
*/ |
||||
|
public int deleteDcBusiTargetDraftByIds(Long[] ids); |
||||
|
} |
||||
|
Loading…
Reference in new issue