6 changed files with 669 additions and 0 deletions
@ -0,0 +1,53 @@ |
|||
import request from '@/utils/request' |
|||
|
|||
// 查询项目划分列表
|
|||
export function listDiv(query) { |
|||
return request({ |
|||
url: '/build/div/list', |
|||
method: 'post', |
|||
data: query |
|||
}) |
|||
} |
|||
|
|||
// 查询项目划分详细
|
|||
export function getDiv(id) { |
|||
return request({ |
|||
url: '/build/div/' + id, |
|||
method: 'get' |
|||
}) |
|||
} |
|||
|
|||
// 新增项目划分
|
|||
export function addDiv(data) { |
|||
return request({ |
|||
url: '/build/div', |
|||
method: 'post', |
|||
data: data |
|||
}) |
|||
} |
|||
|
|||
// 修改项目划分
|
|||
export function updateDiv(data) { |
|||
return request({ |
|||
url: '/build/div', |
|||
method: 'put', |
|||
data: data |
|||
}) |
|||
} |
|||
|
|||
// 删除项目划分
|
|||
export function delDiv(id) { |
|||
return request({ |
|||
url: '/build/div/' + id, |
|||
method: 'delete' |
|||
}) |
|||
} |
|||
|
|||
// 导出项目划分
|
|||
export function exportDiv(query) { |
|||
return request({ |
|||
url: '/build/div/export', |
|||
method: 'get', |
|||
params: query |
|||
}) |
|||
} |
@ -0,0 +1,401 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px"> |
|||
<el-form-item label="单位工程" prop="unitWorks"> |
|||
<el-input |
|||
v-model="queryParams.data.unitWorks" |
|||
placeholder="请输入单位工程" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="分部工程" prop="divisionalWork"> |
|||
<el-input |
|||
v-model="queryParams.data.divisionalWork" |
|||
placeholder="请输入分部工程" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="unitWorksNumber"> |
|||
<el-input |
|||
v-model="queryParams.data.unitWorksNumber" |
|||
placeholder="请输入单位工程编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="createUid"> |
|||
<el-input |
|||
v-model="queryParams.data.createUid" |
|||
placeholder="请输入单位工程编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="updateUid"> |
|||
<el-input |
|||
v-model="queryParams.data.updateUid" |
|||
placeholder="请输入单位工程编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="proCode"> |
|||
<el-input |
|||
v-model="queryParams.data.proCode" |
|||
placeholder="请输入单位工程编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="proNo"> |
|||
<el-input |
|||
v-model="queryParams.data.proNo" |
|||
placeholder="请输入单位工程编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="owerDept"> |
|||
<el-input |
|||
v-model="queryParams.data.owerDept" |
|||
placeholder="请输入单位工程编号" |
|||
clearable |
|||
size="small" |
|||
@keyup.enter.native="handleQuery" |
|||
/> |
|||
</el-form-item> |
|||
<el-form-item> |
|||
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
|||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
|||
</el-form-item> |
|||
</el-form> |
|||
|
|||
<el-row :gutter="10" class="mb8"> |
|||
<el-col :span="1.5"> |
|||
<el-button |
|||
type="primary" |
|||
icon="el-icon-plus" |
|||
size="mini" |
|||
@click="handleAdd" |
|||
v-hasPermi="['build:div:add']" |
|||
>新增</el-button> |
|||
</el-col> |
|||
<el-col :span="1.5"> |
|||
<el-button |
|||
type="success" |
|||
icon="el-icon-edit" |
|||
size="mini" |
|||
:disabled="single" |
|||
@click="handleUpdate" |
|||
v-hasPermi="['build:div:edit']" |
|||
>修改</el-button> |
|||
</el-col> |
|||
<el-col :span="1.5"> |
|||
<el-button |
|||
type="danger" |
|||
icon="el-icon-delete" |
|||
size="mini" |
|||
:disabled="multiple" |
|||
@click="handleDelete" |
|||
v-hasPermi="['build:div:remove']" |
|||
>删除</el-button> |
|||
</el-col> |
|||
<el-col :span="1.5"> |
|||
<el-button |
|||
type="warning" |
|||
icon="el-icon-download" |
|||
size="mini" |
|||
@click="handleExport" |
|||
v-hasPermi="['build:div:export']" |
|||
>导出</el-button> |
|||
</el-col> |
|||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
|||
</el-row> |
|||
|
|||
<el-table v-loading="loading" :data="divList" @selection-change="handleSelectionChange"> |
|||
<el-table-column type="selection" width="55" align="center" /> |
|||
<el-table-column label="序号" type="index" width="50" align="center"/> |
|||
|
|||
<el-table-column label="单位工程" align="center" prop="unitWorks" /> |
|||
<el-table-column label="分部工程" align="center" prop="divisionalWork" /> |
|||
<el-table-column label="单位工程编号" align="center" prop="unitWorksNumber" /> |
|||
<el-table-column label="单位工程编号" align="center" prop="createUid" /> |
|||
<el-table-column label="单位工程编号" align="center" prop="updateUid" /> |
|||
<el-table-column label="单位工程编号" align="center" prop="proCode" /> |
|||
<el-table-column label="单位工程编号" align="center" prop="proNo" /> |
|||
<el-table-column label="单位工程编号" align="center" prop="owerDept" /> |
|||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
|||
<template slot-scope="scope"> |
|||
<el-button |
|||
size="mini" |
|||
type="text" |
|||
icon="el-icon-edit" |
|||
@click="handleUpdate(scope.row)" |
|||
v-hasPermi="['build:div:edit']" |
|||
>修改</el-button> |
|||
<el-button |
|||
size="mini" |
|||
type="text" |
|||
icon="el-icon-delete" |
|||
@click="handleDelete(scope.row)" |
|||
v-hasPermi="['build:div:remove']" |
|||
>删除</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
|
|||
<pagination |
|||
v-show="total>0" |
|||
:total="total" |
|||
:page.sync="queryParams.pageNum" |
|||
:limit.sync="queryParams.pageSize" |
|||
@pagination="getList" |
|||
/> |
|||
|
|||
<!-- 添加或修改项目划分对话框 --> |
|||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> |
|||
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> |
|||
<el-form-item label="单位工程" prop="unitWorks"> |
|||
<el-input v-model="form.unitWorks" placeholder="请输入单位工程" /> |
|||
</el-form-item> |
|||
<el-form-item label="分部工程" prop="divisionalWork"> |
|||
<el-input v-model="form.divisionalWork" placeholder="请输入分部工程" /> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="unitWorksNumber"> |
|||
<el-input v-model="form.unitWorksNumber" placeholder="请输入单位工程编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="createUid"> |
|||
<el-input v-model="form.createUid" placeholder="请输入单位工程编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="updateUid"> |
|||
<el-input v-model="form.updateUid" placeholder="请输入单位工程编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="proCode"> |
|||
<el-input v-model="form.proCode" placeholder="请输入单位工程编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="proNo"> |
|||
<el-input v-model="form.proNo" placeholder="请输入单位工程编号" /> |
|||
</el-form-item> |
|||
<el-form-item label="单位工程编号" prop="owerDept"> |
|||
<el-input v-model="form.owerDept" placeholder="请输入单位工程编号" /> |
|||
</el-form-item> |
|||
</el-form> |
|||
<div slot="footer" class="dialog-footer"> |
|||
<el-button type="primary" @click="submitForm">确 定</el-button> |
|||
<el-button @click="cancel">取 消</el-button> |
|||
</div> |
|||
</el-dialog> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import { listDiv, getDiv, delDiv, addDiv, updateDiv, exportDiv } from "@/api/build/div"; |
|||
|
|||
export default { |
|||
name: "Div", |
|||
data() { |
|||
return { |
|||
// 遮罩层 |
|||
loading: true, |
|||
// 选中数组 |
|||
ids: [], |
|||
// 非单个禁用 |
|||
single: true, |
|||
// 非多个禁用 |
|||
multiple: true, |
|||
// 显示搜索条件 |
|||
showSearch: true, |
|||
// 总条数 |
|||
total: 0, |
|||
// 项目划分表格数据 |
|||
divList: [], |
|||
// 弹出层标题 |
|||
title: "", |
|||
// 是否显示弹出层 |
|||
open: false, |
|||
// 查询参数 |
|||
queryParams: { |
|||
pageNum: 1, |
|||
pageSize: 10, |
|||
ids:null, |
|||
data:{ |
|||
unitWorks: null, |
|||
divisionalWork: null, |
|||
unitWorksNumber: null, |
|||
createUid: null, |
|||
updateUid: null, |
|||
proCode: null, |
|||
proNo: null, |
|||
owerDept: null |
|||
} |
|||
|
|||
}, |
|||
// 表单参数 |
|||
form: {}, |
|||
// 表单校验 |
|||
rules: { |
|||
} |
|||
}; |
|||
}, |
|||
created() { |
|||
this.getList(); |
|||
}, |
|||
methods: { |
|||
/** 查询项目划分列表 */ |
|||
getList() { |
|||
this.loading = true; |
|||
listDiv(this.queryParams).then(response => { |
|||
this.divList = response.records; |
|||
this.total = response.total; |
|||
this.loading = false; |
|||
}); |
|||
}, |
|||
// 取消按钮 |
|||
cancel() { |
|||
this.open = false; |
|||
this.reset(); |
|||
}, |
|||
// 表单重置 |
|||
reset() { |
|||
this.form = { |
|||
id: null, |
|||
unitWorks: null, |
|||
divisionalWork: null, |
|||
unitWorksNumber: null, |
|||
createUid: null, |
|||
updateUid: null, |
|||
createTime: null, |
|||
updateTime: null, |
|||
proCode: null, |
|||
proNo: null, |
|||
owerDept: null |
|||
}; |
|||
this.resetForm("form"); |
|||
}, |
|||
// 查询表单重置 |
|||
resetQueryForm() { |
|||
this.queryParams = { |
|||
pageNum: 1, |
|||
pageSize: 10, |
|||
data:{ |
|||
id: null, |
|||
unitWorks: null, |
|||
divisionalWork: null, |
|||
unitWorksNumber: null, |
|||
createUid: null, |
|||
updateUid: null, |
|||
createTime: null, |
|||
updateTime: null, |
|||
proCode: null, |
|||
proNo: null, |
|||
owerDept: null |
|||
} |
|||
}; |
|||
this.resetForm("form"); |
|||
}, |
|||
/** 搜索按钮操作 */ |
|||
handleQuery() { |
|||
this.queryParams.pageNum = 1; |
|||
this.getList(); |
|||
}, |
|||
/** 重置按钮操作 */ |
|||
resetQuery() { |
|||
this.resetQueryForm(); |
|||
this.handleQuery(); |
|||
}, |
|||
// 多选框选中数据 |
|||
handleSelectionChange(selection) { |
|||
this.ids = selection.map(item => item.id) |
|||
this.single = selection.length!==1 |
|||
this.multiple = !selection.length |
|||
}, |
|||
/** 新增按钮操作 */ |
|||
handleAdd() { |
|||
this.reset(); |
|||
this.open = true; |
|||
this.title = "添加项目划分"; |
|||
}, |
|||
/** 修改按钮操作 */ |
|||
handleUpdate(row) { |
|||
this.reset(); |
|||
const id = row.id || this.ids |
|||
getDiv(id).then(response => { |
|||
this.form = response.data; |
|||
this.open = true; |
|||
this.title = "修改项目划分"; |
|||
}); |
|||
}, |
|||
/** 提交按钮 */ |
|||
submitForm() { |
|||
this.$refs["form"].validate(valid => { |
|||
if (valid) { |
|||
if (this.form.id != null) { |
|||
updateDiv(this.form).then(response => { |
|||
if (response.code === 200) { |
|||
this.msgSuccess("修改成功"); |
|||
this.open = false; |
|||
this.getList(); |
|||
} |
|||
}); |
|||
} else { |
|||
addDiv(this.form).then(response => { |
|||
if (response.code === 200) { |
|||
this.msgSuccess("新增成功"); |
|||
this.open = false; |
|||
this.getList(); |
|||
} |
|||
}); |
|||
} |
|||
} |
|||
}); |
|||
}, |
|||
/** 删除按钮操作 */ |
|||
handleDelete(row) { |
|||
const ids = row.id || this.ids; |
|||
if(ids){ |
|||
this.$confirm("是否删除选中的数据?", "警告", { |
|||
confirmButtonText: "确定", |
|||
cancelButtonText: "取消", |
|||
type: "warning" |
|||
}).then(function() { |
|||
return delDiv(ids); |
|||
}).then(() => { |
|||
this.getList(); |
|||
this.msgSuccess("删除成功"); |
|||
}).catch(function() {}); |
|||
}else{ |
|||
this.$message.warning("请选择要删除的数据!!"); |
|||
} |
|||
|
|||
}, |
|||
/** 导出按钮操作 */ |
|||
handleExport() { |
|||
const queryParams = this.queryParams; |
|||
let message = "是否确认导出所有的数据项?"; |
|||
if(this.ids){ |
|||
message = "是否确认导出选中的数据项?"; |
|||
queryParams.ids = this.ids; |
|||
} |
|||
this.$confirm(message, "警告", { |
|||
confirmButtonText: "确定", |
|||
cancelButtonText: "取消", |
|||
type: "warning" |
|||
}).then(function() { |
|||
return exportDiv(queryParams); |
|||
}).then(response => { |
|||
this.downloadFile(response, true, response.msg); |
|||
// this.download(response.msg); |
|||
}).catch(function() {}); |
|||
} |
|||
} |
|||
}; |
|||
</script> |
@ -0,0 +1,114 @@ |
|||
package com.kms.build.controller; |
|||
|
|||
import java.util.Arrays; |
|||
import java.util.List; |
|||
|
|||
import com.jianwei.common.core.controller.BaseController; |
|||
import com.jianwei.common.core.domain.SearchParam; |
|||
import com.jianwei.common.utils.poi.ExcelUtil; |
|||
import com.kms.common.utils.BaseEntityUtils; |
|||
|
|||
|
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiOperation; |
|||
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.baomidou.mybatisplus.core.metadata.IPage; |
|||
import com.jianwei.common.mybaitsplus.BeanToWrapper; |
|||
|
|||
import com.jianwei.common.annotation.Log; |
|||
import com.jianwei.common.core.domain.AjaxResult; |
|||
import com.jianwei.common.enums.BusinessType; |
|||
import com.kms.build.domain.BsSgcJsjdBuiProDiv; |
|||
import com.kms.build.service.BsSgcJsjdBuiProDivService; |
|||
|
|||
|
|||
/** |
|||
* 项目划分Controller |
|||
* |
|||
* @author kms |
|||
* @date 2023-12-20 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("/build/div") |
|||
@Api(tags = "项目划分") |
|||
public class BsSgcJsjdBuiProDivController extends BaseController |
|||
{ |
|||
@Autowired |
|||
private BsSgcJsjdBuiProDivService bsSgcJsjdBuiProDivService; |
|||
|
|||
/** |
|||
* 查询项目划分列表 |
|||
*/ |
|||
@PostMapping("/list") |
|||
@ApiOperation("项目划分列表") |
|||
public IPage list(@RequestBody SearchParam<BsSgcJsjdBuiProDiv> sp) |
|||
{ |
|||
return bsSgcJsjdBuiProDivService.selectPage(sp); |
|||
} |
|||
|
|||
/** |
|||
* 导出项目划分列表 |
|||
*/ |
|||
@Log(title = "项目划分导出", businessType = BusinessType.EXPORT) |
|||
@PostMapping("/export") |
|||
@ApiOperation("项目划分导出") |
|||
public AjaxResult export(@RequestBody BsSgcJsjdBuiProDiv bsSgcJsjdBuiProDiv) |
|||
{ |
|||
List<BsSgcJsjdBuiProDiv> list = bsSgcJsjdBuiProDivService.listByIds(bsSgcJsjdBuiProDiv.getIds()); |
|||
ExcelUtil<BsSgcJsjdBuiProDiv> util = new ExcelUtil<>(BsSgcJsjdBuiProDiv.class); |
|||
return util.exportExcel(list, "div"); |
|||
} |
|||
|
|||
/** |
|||
* 获取项目划分详细信息 |
|||
*/ |
|||
@ApiOperation(" 项目划分详情") |
|||
@GetMapping(value = "/{id}") |
|||
public AjaxResult getInfo(@PathVariable("id") String id) |
|||
{ |
|||
return AjaxResult.success(bsSgcJsjdBuiProDivService.getById(id)); |
|||
} |
|||
|
|||
/** |
|||
* 新增项目划分 |
|||
*/ |
|||
@Log(title = "项目划分新增", businessType = BusinessType.INSERT) |
|||
@PostMapping |
|||
@ApiOperation("项目划分新增") |
|||
public AjaxResult add(@RequestBody BsSgcJsjdBuiProDiv bsSgcJsjdBuiProDiv) |
|||
{ |
|||
BaseEntityUtils.preInsert(bsSgcJsjdBuiProDiv); |
|||
return toAjax(bsSgcJsjdBuiProDivService.save(bsSgcJsjdBuiProDiv)); |
|||
} |
|||
|
|||
/** |
|||
* 修改项目划分 |
|||
*/ |
|||
@ApiOperation("项目划分修改") |
|||
@Log(title = "项目划分修改", businessType = BusinessType.UPDATE) |
|||
@PutMapping |
|||
public AjaxResult edit(@RequestBody BsSgcJsjdBuiProDiv bsSgcJsjdBuiProDiv) |
|||
{ |
|||
return toAjax(bsSgcJsjdBuiProDivService.updateById(bsSgcJsjdBuiProDiv)); |
|||
} |
|||
|
|||
/** |
|||
* 删除项目划分 |
|||
*/ |
|||
@ApiOperation("项目划分删除") |
|||
@Log(title = "项目划分删除", businessType = BusinessType.DELETE) |
|||
@DeleteMapping("/{ids}") |
|||
public AjaxResult remove(@PathVariable String[] ids) |
|||
{ |
|||
return toAjax(bsSgcJsjdBuiProDivService.removeByIds(Arrays.asList(ids))); |
|||
} |
|||
} |
@ -0,0 +1,68 @@ |
|||
package com.kms.build.domain; |
|||
|
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
import org.apache.commons.lang3.builder.ToStringBuilder; |
|||
import org.apache.commons.lang3.builder.ToStringStyle; |
|||
import com.jianwei.common.annotation.Excel; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
|
|||
|
|||
import com.jianwei.common.core.domain.BaseEntity; |
|||
|
|||
/** |
|||
* 项目划分对象 bs_sgc_jsjd_bui_pro_div |
|||
* |
|||
* @author kms |
|||
* @date 2023-12-20 |
|||
*/ |
|||
@TableName("bs_sgc_jsjd_bui_pro_div") |
|||
@Data |
|||
@ApiModel("项目划分") |
|||
public class BsSgcJsjdBuiProDiv extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** 单位工程 */ |
|||
@Excel(name = "单位工程") |
|||
@ApiModelProperty("单位工程") |
|||
private String unitWorks; |
|||
|
|||
/** 分部工程 */ |
|||
@Excel(name = "分部工程") |
|||
@ApiModelProperty("分部工程") |
|||
private String divisionalWork; |
|||
|
|||
/** 单位工程编号 */ |
|||
@Excel(name = "单位工程编号") |
|||
@ApiModelProperty("单位工程编号") |
|||
private String unitWorksNumber; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "单位工程编号") |
|||
@ApiModelProperty("单位工程编号") |
|||
private String createUid; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "单位工程编号") |
|||
@ApiModelProperty("单位工程编号") |
|||
private String updateUid; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "单位工程编号") |
|||
@ApiModelProperty("单位工程编号") |
|||
private String proCode; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "单位工程编号") |
|||
@ApiModelProperty("单位工程编号") |
|||
private String proNo; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "单位工程编号") |
|||
@ApiModelProperty("单位工程编号") |
|||
private String owerDept; |
|||
|
|||
} |
@ -0,0 +1,16 @@ |
|||
package com.kms.build.mapper; |
|||
|
|||
import org.springframework.stereotype.Repository; |
|||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|||
import com.kms.build.domain.BsSgcJsjdBuiProDiv; |
|||
|
|||
/** |
|||
* 项目划分Mapper接口 |
|||
* |
|||
* @author kms |
|||
* @date 2023-12-20 |
|||
*/ |
|||
@Repository |
|||
public interface BsSgcJsjdBuiProDivMapper extends BaseMapper<BsSgcJsjdBuiProDiv> { |
|||
|
|||
} |
@ -0,0 +1,17 @@ |
|||
package com.kms.build.service; |
|||
|
|||
import org.springframework.stereotype.Service; |
|||
import com.jianwei.common.core.service.BaseService; |
|||
import com.kms.build.mapper.BsSgcJsjdBuiProDivMapper; |
|||
import com.kms.build.domain.BsSgcJsjdBuiProDiv; |
|||
|
|||
/** |
|||
* 项目划分Service接口 |
|||
* |
|||
* @author kms |
|||
* @date 2023-12-20 |
|||
*/ |
|||
@Service |
|||
public class BsSgcJsjdBuiProDivService extends BaseService<BsSgcJsjdBuiProDivMapper, BsSgcJsjdBuiProDiv>{ |
|||
|
|||
} |
Loading…
Reference in new issue