|
|
|
|
<template>
|
|
|
|
|
<basic-container>
|
|
|
|
|
<avue-crud
|
|
|
|
|
:option="option"
|
|
|
|
|
:table-loading="loading"
|
|
|
|
|
:data="data"
|
|
|
|
|
v-model:page="page"
|
|
|
|
|
v-model="form"
|
|
|
|
|
ref="crud"
|
|
|
|
|
@row-update="rowUpdate"
|
|
|
|
|
@row-save="rowSave"
|
|
|
|
|
@row-del="rowDel"
|
|
|
|
|
@search-change="searchChange"
|
|
|
|
|
@search-reset="searchReset"
|
|
|
|
|
@selection-change="selectionChange"
|
|
|
|
|
@current-change="currentChange"
|
|
|
|
|
@size-change="sizeChange"
|
|
|
|
|
@refresh-change="refreshChange"
|
|
|
|
|
@on-load="onLoad"
|
|
|
|
|
:permission="getPermission"
|
|
|
|
|
>
|
|
|
|
|
<template #menu-left>
|
|
|
|
|
<el-button type="primary" @click="handleAdd">新增</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- <template #menu-right>
|
|
|
|
|
<el-button type="primary" @click="handleImport()">导入</el-button>
|
|
|
|
|
</template> -->
|
|
|
|
|
<template #menu="scope">
|
|
|
|
|
<el-button type="text" @click="copyClick(scope.row)">复制</el-button>
|
|
|
|
|
<!-- <el-button
|
|
|
|
|
type="text"
|
|
|
|
|
@click="upgradedVersion(scope.row.rfpId)"
|
|
|
|
|
v-if="scope.row.rfpStatus == 2 && scope.row.approvalStatus == 1"
|
|
|
|
|
>升版</el-button
|
|
|
|
|
> -->
|
|
|
|
|
<!-- v-if="
|
|
|
|
|
(scope.row.rfpStatus == 1 || scope.row.rfpStatus == 4) && scope.row.approvalStatus != 0
|
|
|
|
|
" -->
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
@click="templatePreserve(scope.row)"
|
|
|
|
|
|
|
|
|
|
>维护电子档案</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="text" @click="detailClick(scope.row)">电子档案详情</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template #line="{ row }">
|
|
|
|
|
<el-tag v-if="row.line == 1">线上</el-tag>
|
|
|
|
|
<el-tag v-if="row.line == 0" type="success">线下</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
</avue-crud>
|
|
|
|
|
<detailRb
|
|
|
|
|
:detail-open="detailOpen"
|
|
|
|
|
v-if="detailOpen"
|
|
|
|
|
:rfp-id="rfpId"
|
|
|
|
|
@cancel="cancel"
|
|
|
|
|
></detailRb>
|
|
|
|
|
<templatePreserve
|
|
|
|
|
:template-open="templateOpen"
|
|
|
|
|
v-if="templateOpen"
|
|
|
|
|
:rfp-id="rfpId"
|
|
|
|
|
@cancel="cancel"
|
|
|
|
|
>
|
|
|
|
|
</templatePreserve>
|
|
|
|
|
|
|
|
|
|
<!-- 批量新增 -->
|
|
|
|
|
<addPreserve @closeDialog="closeDialog" :showDialog="showDialog" v-if="showDialog"></addPreserve>
|
|
|
|
|
|
|
|
|
|
<!-- <editTable></editTable> -->
|
|
|
|
|
|
|
|
|
|
<!-- 导入 -->
|
|
|
|
|
<basic-import
|
|
|
|
|
v-if="isShowImport"
|
|
|
|
|
title="导入"
|
|
|
|
|
:isShow="isShowImport"
|
|
|
|
|
templateUrl="/blade-desk/QA/CycleTestItem/download-excel-template"
|
|
|
|
|
templateName="试验项目模板.xls"
|
|
|
|
|
importUrl="/blade-desk/QA/CycleTestItem/import-excel"
|
|
|
|
|
@closeDialog="closeDialog"
|
|
|
|
|
></basic-import>
|
|
|
|
|
</basic-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {getList,addRecords, editRecords,deleteRecords,copyData} from '@/api/qualityManagement/inspectionArchiving/rbFilePreserve'
|
|
|
|
|
import { mapGetters } from 'vuex';
|
|
|
|
|
import detailRb from './detailRb2.vue';
|
|
|
|
|
import templatePreserve from './templatePreserve2.vue';
|
|
|
|
|
import approvalStandard from '@/views/oem/components/approval/index.vue';
|
|
|
|
|
import editTable from './editTable.vue';
|
|
|
|
|
import basicImport from '@/components/basic-import/main.vue';
|
|
|
|
|
import addPreserve from './addPreserve.vue';
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
detailRb,
|
|
|
|
|
templatePreserve,
|
|
|
|
|
approvalStandard,
|
|
|
|
|
editTable,
|
|
|
|
|
basicImport,
|
|
|
|
|
addPreserve
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
isShowImport: false,
|
|
|
|
|
showDialog:false,
|
|
|
|
|
data: [],
|
|
|
|
|
page: {
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
currentPage: 1,
|
|
|
|
|
total: 0,
|
|
|
|
|
},
|
|
|
|
|
form: {},
|
|
|
|
|
query: {},
|
|
|
|
|
loading: true,
|
|
|
|
|
excelBox: false,
|
|
|
|
|
option: {
|
|
|
|
|
tip: false,
|
|
|
|
|
height: 'auto',
|
|
|
|
|
calcHeight: 32,
|
|
|
|
|
searchShow: true,
|
|
|
|
|
searchMenuSpan: 6,
|
|
|
|
|
searchIcon: true,
|
|
|
|
|
searchIndex: 3,
|
|
|
|
|
columnSort: true,
|
|
|
|
|
tree: false,
|
|
|
|
|
border: true,
|
|
|
|
|
index: true,
|
|
|
|
|
selection: false,
|
|
|
|
|
viewBtn: false,
|
|
|
|
|
editBtn: true,
|
|
|
|
|
addBtn: false,
|
|
|
|
|
delBtn: true,
|
|
|
|
|
editBtnText: '修改',
|
|
|
|
|
delBtnText: '删除',
|
|
|
|
|
viewBtnText: '详情',
|
|
|
|
|
addBtnIcon: ' ',
|
|
|
|
|
viewBtnIcon: ' ',
|
|
|
|
|
delBtnIcon: ' ',
|
|
|
|
|
editBtnIcon: ' ',
|
|
|
|
|
labelWidth: 120,
|
|
|
|
|
dialogWidth: 600,
|
|
|
|
|
dialogClickModal: false,
|
|
|
|
|
searchEnter: true,
|
|
|
|
|
filterBtn: true,
|
|
|
|
|
searchShowBtn: false,
|
|
|
|
|
excelBtn: true,
|
|
|
|
|
showOverflowTooltip: true,
|
|
|
|
|
align: 'center',
|
|
|
|
|
menuWidth: 360,
|
|
|
|
|
searchLabelPosition: 'left',
|
|
|
|
|
searchGutter: 24,
|
|
|
|
|
searchSpan: 6,
|
|
|
|
|
menuAlign: 'left',
|
|
|
|
|
gridBtn: false,
|
|
|
|
|
searchMenuPosition: 'right',
|
|
|
|
|
column: [
|
|
|
|
|
{
|
|
|
|
|
label: '模板名称',
|
|
|
|
|
prop: 'name',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
filter: true,
|
|
|
|
|
span: 24,
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入模板名称',
|
|
|
|
|
trigger: 'click',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '作业中心',
|
|
|
|
|
prop: 'wcId',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
filter: true,
|
|
|
|
|
span: 24,
|
|
|
|
|
type: 'select',
|
|
|
|
|
filterable: true,
|
|
|
|
|
dicUrl: '/api/blade-desk/BA/WorkCenter/listForSelect',
|
|
|
|
|
props: {
|
|
|
|
|
label: 'wcName',
|
|
|
|
|
value: 'id',
|
|
|
|
|
},
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请选择作业中心',
|
|
|
|
|
trigger: 'click',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '工序',
|
|
|
|
|
prop: 'ppsId',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
filter: true,
|
|
|
|
|
span: 24,
|
|
|
|
|
type: 'select',
|
|
|
|
|
filterable: true,
|
|
|
|
|
remote: true,
|
|
|
|
|
dicUrl:`/api/blade-desk/bsProcessSet/list?name={{key}}`,
|
|
|
|
|
props:{
|
|
|
|
|
label: 'name',
|
|
|
|
|
value: 'id',
|
|
|
|
|
res: 'data.records',
|
|
|
|
|
},
|
|
|
|
|
rules: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请选择工序',
|
|
|
|
|
trigger: 'click',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// label: '线上/线下',
|
|
|
|
|
// prop: 'line',
|
|
|
|
|
// span: 24,
|
|
|
|
|
// value:0,
|
|
|
|
|
// type: 'switch',
|
|
|
|
|
// dicData: [
|
|
|
|
|
// {
|
|
|
|
|
// label: '线下',
|
|
|
|
|
// value: 0,
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// label: '线上',
|
|
|
|
|
// value: 1,
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
|
|
// ],
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
label: '维护人',
|
|
|
|
|
prop: 'keepUserRealName',
|
|
|
|
|
bind: 'base.keepUserRealName',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
filter: true,
|
|
|
|
|
display: false,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '维护时间',
|
|
|
|
|
prop: 'keepTime',
|
|
|
|
|
bind: 'base.keepTime',
|
|
|
|
|
search: false,
|
|
|
|
|
sortable: true,
|
|
|
|
|
filter: true,
|
|
|
|
|
display: false,
|
|
|
|
|
width:200,
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
// label: '状态',
|
|
|
|
|
// prop: 'status',
|
|
|
|
|
// search: true,
|
|
|
|
|
// sortable: true,
|
|
|
|
|
// filter: true,
|
|
|
|
|
// display: false,
|
|
|
|
|
// type: 'select',
|
|
|
|
|
// dicUrl:'/api/blade-system/dict/dictionary?code=ProReTemplate-Status',
|
|
|
|
|
// props:{
|
|
|
|
|
// label: 'dictValue',
|
|
|
|
|
// value: 'dictKey',
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
{
|
|
|
|
|
label: '状态',
|
|
|
|
|
prop: 'approvalStatus',
|
|
|
|
|
search: true,
|
|
|
|
|
sortable: true,
|
|
|
|
|
filter: true,
|
|
|
|
|
type: 'select',
|
|
|
|
|
// dicUrl:'/api/blade-system/dict/dictionary?code=ProReTemplate-ApprovalStatus',
|
|
|
|
|
// props:{
|
|
|
|
|
// label: 'dictValue',
|
|
|
|
|
// value: 'dictKey',
|
|
|
|
|
// },
|
|
|
|
|
dicData: [
|
|
|
|
|
{
|
|
|
|
|
label: '新建',
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '发布',
|
|
|
|
|
value: 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '使用中',
|
|
|
|
|
value: 2,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '废弃',
|
|
|
|
|
value: 3,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectionList: [],
|
|
|
|
|
rfpId: '',
|
|
|
|
|
detailOpen: false,
|
|
|
|
|
templateOpen: false,
|
|
|
|
|
isShowImport: false,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
mounted() {},
|
|
|
|
|
methods: {
|
|
|
|
|
// 点击导入按钮
|
|
|
|
|
handleImport() {
|
|
|
|
|
this.isShowImport = true
|
|
|
|
|
},
|
|
|
|
|
// 点击新增按钮
|
|
|
|
|
handleAdd(){
|
|
|
|
|
this.showDialog = true
|
|
|
|
|
},
|
|
|
|
|
closeDialog(){
|
|
|
|
|
this.showDialog = false
|
|
|
|
|
},
|
|
|
|
|
getPermission(key, row, index) {
|
|
|
|
|
if (key === 'editBtn') {
|
|
|
|
|
return( row.status == 1 && (row.approvalStatus == 3 || row.approvalStatus == 4)) //状态为新建且审批状态为审批完毕或已打回
|
|
|
|
|
? true
|
|
|
|
|
: false;
|
|
|
|
|
} else if (key === 'delBtn') {
|
|
|
|
|
return (row.status == 1 && (row.approvalStatus == 3 || row.approvalStatus == 1)) || //状态为新建且审批状态为审批完毕或发送审批
|
|
|
|
|
(row.status == 2 && row.approvalStatus == 3) //状态为使用中且审批状态为审批完毕
|
|
|
|
|
? true
|
|
|
|
|
: false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
// 电子档案详情
|
|
|
|
|
detailClick(row) {
|
|
|
|
|
this.rfpId = row.id;
|
|
|
|
|
this.detailOpen = true;
|
|
|
|
|
},
|
|
|
|
|
// 电子档案维护
|
|
|
|
|
templatePreserve(row) {
|
|
|
|
|
this.rfpId = row.id;
|
|
|
|
|
this.templateOpen = true;
|
|
|
|
|
},
|
|
|
|
|
// 升版
|
|
|
|
|
upgradedVersion() {
|
|
|
|
|
this.$confirm('即将对此模板进行升版, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
// this.$ajax
|
|
|
|
|
// .post('dsRbFilePreserve/upgradedVersion', { rfpId, copy: false })
|
|
|
|
|
// .then((res) => {
|
|
|
|
|
// if (this.$ifAjax(res)) {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: 'success',
|
|
|
|
|
message: '升版成功!',
|
|
|
|
|
});
|
|
|
|
|
// this.$refs.myTable.load();
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: 'info',
|
|
|
|
|
message: '已取消',
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 复制
|
|
|
|
|
async copyClick(row) {
|
|
|
|
|
this.$confirm('确定复制此条数据?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
copyData({
|
|
|
|
|
id:row.id
|
|
|
|
|
}).then(res =>{
|
|
|
|
|
if(res.data.code == 200){
|
|
|
|
|
this.$message.success('复制成功')
|
|
|
|
|
this.onLoad()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
// const res = await this.$ajax.post('dsRbFilePreserve/upgradedVersion', {
|
|
|
|
|
// rfpId,
|
|
|
|
|
// copy: true
|
|
|
|
|
// });
|
|
|
|
|
// if (this.$ifAjax(res)) {
|
|
|
|
|
// this.$message({
|
|
|
|
|
// type: 'success',
|
|
|
|
|
// message: '复制成功!',
|
|
|
|
|
// });
|
|
|
|
|
// this.$refs.myTable.load();
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
cancel() {
|
|
|
|
|
this.templateOpen = false;
|
|
|
|
|
this.detailOpen = false;
|
|
|
|
|
},
|
|
|
|
|
handleImport() {
|
|
|
|
|
this.excelBox = true;
|
|
|
|
|
},
|
|
|
|
|
// 多选
|
|
|
|
|
selectionChange(list) {
|
|
|
|
|
this.selectionList = list;
|
|
|
|
|
},
|
|
|
|
|
selectionClear() {
|
|
|
|
|
this.selectionList = [];
|
|
|
|
|
this.$refs.crud.toggleSelection();
|
|
|
|
|
},
|
|
|
|
|
rowUpdate(row, index, done, loading) {
|
|
|
|
|
console.log('row--------------',row)
|
|
|
|
|
editRecords({
|
|
|
|
|
id:row.id,
|
|
|
|
|
wcId:row.wcId,
|
|
|
|
|
line:row.line,
|
|
|
|
|
ppsId:row.ppsId,
|
|
|
|
|
name:row.name
|
|
|
|
|
}).then(res =>{
|
|
|
|
|
if(res.data.code == 200){
|
|
|
|
|
this.$message.success('修改成功')
|
|
|
|
|
this.onLoad()
|
|
|
|
|
done()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
rowSave(row, done, loading) {
|
|
|
|
|
addRecords({
|
|
|
|
|
wcId:row.wcId,
|
|
|
|
|
line:row.line,
|
|
|
|
|
ppsId:row.ppsId,
|
|
|
|
|
name:row.name
|
|
|
|
|
}).then(res =>{
|
|
|
|
|
if(res.data.code == 200){
|
|
|
|
|
this.$message.success('新增成功')
|
|
|
|
|
this.onLoad()
|
|
|
|
|
done()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
searchReset() {
|
|
|
|
|
this.query = {};
|
|
|
|
|
this.onLoad(this.page);
|
|
|
|
|
},
|
|
|
|
|
searchChange(params, done) {
|
|
|
|
|
this.query = params;
|
|
|
|
|
this.page.currentPage = 1;
|
|
|
|
|
this.onLoad(this.page, params);
|
|
|
|
|
done();
|
|
|
|
|
},
|
|
|
|
|
rowDel(row, index, done) {
|
|
|
|
|
this.$confirm('确定将选择数据删除?', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
}).then(() => {
|
|
|
|
|
deleteRecords({ids:row.id}).then(res =>{
|
|
|
|
|
if(res.data.code == 200){
|
|
|
|
|
this.$message.success('删除成功')
|
|
|
|
|
this.onLoad()
|
|
|
|
|
done()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
currentChange(currentPage) {
|
|
|
|
|
this.page.currentPage = currentPage;
|
|
|
|
|
},
|
|
|
|
|
sizeChange(pageSize) {
|
|
|
|
|
this.page.pageSize = pageSize;
|
|
|
|
|
},
|
|
|
|
|
refreshChange() {
|
|
|
|
|
this.onLoad(this.page, this.query);
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
console.log('this.query',this.query)
|
|
|
|
|
getList({
|
|
|
|
|
current:this.page.currentPage,
|
|
|
|
|
size:this.page.pageSize,
|
|
|
|
|
...this.query
|
|
|
|
|
}).then(res =>{
|
|
|
|
|
this.data = res.data.data.records
|
|
|
|
|
this.data.map(item =>{
|
|
|
|
|
item.line = parseInt(item.line)
|
|
|
|
|
})
|
|
|
|
|
this.page.total = res.data.data.total
|
|
|
|
|
this.loading = false
|
|
|
|
|
})
|
|
|
|
|
// this.data = [
|
|
|
|
|
// {
|
|
|
|
|
// approvalStatus: -1,
|
|
|
|
|
// bsProcedureSet: {
|
|
|
|
|
// assist: false,
|
|
|
|
|
// assistTitle: '否',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2022-11-15 10:30:45',
|
|
|
|
|
// cycle: 0.0,
|
|
|
|
|
// cyropactorControl: true,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// eleRate: true,
|
|
|
|
|
// eleStream: true,
|
|
|
|
|
// keyValue: 7,
|
|
|
|
|
// mainProcess: true,
|
|
|
|
|
// mainProcessTitle: '是',
|
|
|
|
|
// niValue: true,
|
|
|
|
|
// phValue: true,
|
|
|
|
|
// ppsCode: '003',
|
|
|
|
|
// ppsId: 7,
|
|
|
|
|
// ppsName: '化学镀镍',
|
|
|
|
|
// special: false,
|
|
|
|
|
// specialTitle: '否',
|
|
|
|
|
// team: null,
|
|
|
|
|
// updateTime: '2022-11-15 10:30:45',
|
|
|
|
|
// vSpeed: true,
|
|
|
|
|
// },
|
|
|
|
|
// bsWorkCenter: {
|
|
|
|
|
// area: 13000.0,
|
|
|
|
|
// batchNo: null,
|
|
|
|
|
// bigBatch: false,
|
|
|
|
|
// bsJfCenter: {
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2024-12-09 00:00:00',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// jcCode: 'RBZX',
|
|
|
|
|
// jcId: 1,
|
|
|
|
|
// jcName: '热表中心',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// updateTime: '2024-12-09 00:00:00',
|
|
|
|
|
// },
|
|
|
|
|
// checkout: false,
|
|
|
|
|
// craftAbility: '化学镀镍',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2023-02-06 12:31:36',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// describe: null,
|
|
|
|
|
// endPoint: null,
|
|
|
|
|
// keyValue: 81,
|
|
|
|
|
// leaderUser: {
|
|
|
|
|
// accountId: 541,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-04',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 102,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: 'MES开发',
|
|
|
|
|
// keyValue: 541,
|
|
|
|
|
// ldapName: 'cdl',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'CUIDIANLONG,CDL',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-04 09:16:54',
|
|
|
|
|
// userCode: 'cdl',
|
|
|
|
|
// userId: 541,
|
|
|
|
|
// userName: '崔殿龙',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '崔殿龙',
|
|
|
|
|
// userString: '541:A:崔殿龙',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// limitType: 0,
|
|
|
|
|
// processes: '上挂、下挂、交检、化学镀镍、喷砂',
|
|
|
|
|
// quantity: null,
|
|
|
|
|
// roundCycle: null,
|
|
|
|
|
// saturation: 85.0,
|
|
|
|
|
// sign: '4',
|
|
|
|
|
// startPoint: null,
|
|
|
|
|
// team: '化学镀镍一班崔胜伟、化学镀镍一班郭家梁',
|
|
|
|
|
// updateTime: '2023-03-06 18:42:47',
|
|
|
|
|
// wcCode: '001',
|
|
|
|
|
// wcId: 81,
|
|
|
|
|
// wcName: '化学镀镍作业中心',
|
|
|
|
|
// whetherPlate: false,
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCreateDate: '2024-11-14 14:32:50',
|
|
|
|
|
// businessBeanCreateMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCurStatus: -1,
|
|
|
|
|
// flowCode: 'FLOW_DS_009',
|
|
|
|
|
// flowRecDescription: '电子档案维护的变更审批',
|
|
|
|
|
// keepMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// keepTime: '2024-11-14 14:32:50',
|
|
|
|
|
// keyValue: 201,
|
|
|
|
|
// line: true,
|
|
|
|
|
// name: '测试',
|
|
|
|
|
// rfpId: 201,
|
|
|
|
|
// rfpStatus: 1,
|
|
|
|
|
// rfpStatusTitle: '新建',
|
|
|
|
|
// versionId: '65',
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// approvalStatus: 0,
|
|
|
|
|
// bsProcedureSet: {
|
|
|
|
|
// assist: false,
|
|
|
|
|
// assistTitle: '否',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2022-12-22 10:18:28',
|
|
|
|
|
// cycle: 0.0,
|
|
|
|
|
// cyropactorControl: false,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// eleRate: false,
|
|
|
|
|
// eleStream: false,
|
|
|
|
|
// keyValue: 42,
|
|
|
|
|
// mainProcess: false,
|
|
|
|
|
// mainProcessTitle: '否',
|
|
|
|
|
// niValue: false,
|
|
|
|
|
// phValue: false,
|
|
|
|
|
// ppsCode: '013',
|
|
|
|
|
// ppsId: 42,
|
|
|
|
|
// ppsName: '镀金',
|
|
|
|
|
// special: false,
|
|
|
|
|
// specialTitle: '否',
|
|
|
|
|
// team: null,
|
|
|
|
|
// updateTime: '2022-12-22 10:18:28',
|
|
|
|
|
// vSpeed: false,
|
|
|
|
|
// },
|
|
|
|
|
// bsWorkCenter: {
|
|
|
|
|
// area: 0.0,
|
|
|
|
|
// batchNo: null,
|
|
|
|
|
// bigBatch: true,
|
|
|
|
|
// bsJfCenter: {
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2024-12-09 00:00:00',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// jcCode: 'RBZX',
|
|
|
|
|
// jcId: 1,
|
|
|
|
|
// jcName: '热表中心',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// updateTime: '2024-12-09 00:00:00',
|
|
|
|
|
// },
|
|
|
|
|
// checkout: false,
|
|
|
|
|
// craftAbility: '滚镀金或振镀金',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: 90,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-02-08',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 1,
|
|
|
|
|
// jobName: '生产调度员',
|
|
|
|
|
// keyValue: 90,
|
|
|
|
|
// ldapName: '03891',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2023-02-08',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '06',
|
|
|
|
|
// deptId: 47,
|
|
|
|
|
// deptName: '经营管理室',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 47,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '6',
|
|
|
|
|
// parentDeptId: 41,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2023-02-08 13:23:30',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: '03891,03891',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-02-08 13:20:39',
|
|
|
|
|
// userCode: '03891',
|
|
|
|
|
// userId: 90,
|
|
|
|
|
// userName: '03891',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '03891',
|
|
|
|
|
// userString: '90:A:03891',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2023-03-16 12:26:16',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// describe: null,
|
|
|
|
|
// endPoint: null,
|
|
|
|
|
// keyValue: 122,
|
|
|
|
|
// leaderUser: {
|
|
|
|
|
// accountId: 541,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-04',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 102,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: 'MES开发',
|
|
|
|
|
// keyValue: 541,
|
|
|
|
|
// ldapName: 'cdl',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'CUIDIANLONG,CDL',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-04 09:16:54',
|
|
|
|
|
// userCode: 'cdl',
|
|
|
|
|
// userId: 541,
|
|
|
|
|
// userName: '崔殿龙',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '崔殿龙',
|
|
|
|
|
// userString: '541:A:崔殿龙',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// limitType: 0,
|
|
|
|
|
// processes: ' ',
|
|
|
|
|
// quantity: 0,
|
|
|
|
|
// roundCycle: null,
|
|
|
|
|
// saturation: 0.0,
|
|
|
|
|
// sign: '4',
|
|
|
|
|
// startPoint: null,
|
|
|
|
|
// team: '镀金一班郭千千、镀金一班张二帅',
|
|
|
|
|
// updateTime: '2023-03-16 12:26:16',
|
|
|
|
|
// wcCode: '008',
|
|
|
|
|
// wcId: 122,
|
|
|
|
|
// wcName: '镀金大批量作业中心',
|
|
|
|
|
// whetherPlate: false,
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCreateDate: '2024-11-14 14:33:36',
|
|
|
|
|
// businessBeanCreateMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCurStatus: 0,
|
|
|
|
|
// flowCode: 'FLOW_DS_009',
|
|
|
|
|
// flowRecDescription: '电子档案维护的变更审批',
|
|
|
|
|
// keepMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// keepTime: '2024-11-14 14:33:36',
|
|
|
|
|
// keyValue: 202,
|
|
|
|
|
// line: false,
|
|
|
|
|
// name: '镀金',
|
|
|
|
|
// rfpId: 202,
|
|
|
|
|
// rfpStatus: 1,
|
|
|
|
|
// rfpStatusTitle: '新建',
|
|
|
|
|
// versionId: '161',
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// approvalStatus: 1,
|
|
|
|
|
// bsProcedureSet: {
|
|
|
|
|
// assist: false,
|
|
|
|
|
// assistTitle: '否',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2022-11-15 10:30:45',
|
|
|
|
|
// cycle: 0.0,
|
|
|
|
|
// cyropactorControl: true,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// eleRate: true,
|
|
|
|
|
// eleStream: true,
|
|
|
|
|
// keyValue: 7,
|
|
|
|
|
// mainProcess: true,
|
|
|
|
|
// mainProcessTitle: '是',
|
|
|
|
|
// niValue: true,
|
|
|
|
|
// phValue: true,
|
|
|
|
|
// ppsCode: '003',
|
|
|
|
|
// ppsId: 7,
|
|
|
|
|
// ppsName: '化学镀镍',
|
|
|
|
|
// special: false,
|
|
|
|
|
// specialTitle: '否',
|
|
|
|
|
// team: null,
|
|
|
|
|
// updateTime: '2022-11-15 10:30:45',
|
|
|
|
|
// vSpeed: true,
|
|
|
|
|
// },
|
|
|
|
|
// bsWorkCenter: {
|
|
|
|
|
// area: 13000.0,
|
|
|
|
|
// batchNo: null,
|
|
|
|
|
// bigBatch: false,
|
|
|
|
|
// bsJfCenter: {
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2024-12-09 00:00:00',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// jcCode: 'RBZX',
|
|
|
|
|
// jcId: 1,
|
|
|
|
|
// jcName: '热表中心',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// updateTime: '2024-12-09 00:00:00',
|
|
|
|
|
// },
|
|
|
|
|
// checkout: false,
|
|
|
|
|
// craftAbility: '化学镀镍',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2023-02-06 12:31:36',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// describe: null,
|
|
|
|
|
// endPoint: null,
|
|
|
|
|
// keyValue: 81,
|
|
|
|
|
// leaderUser: {
|
|
|
|
|
// accountId: 541,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-04',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 102,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: 'MES开发',
|
|
|
|
|
// keyValue: 541,
|
|
|
|
|
// ldapName: 'cdl',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'CUIDIANLONG,CDL',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-04 09:16:54',
|
|
|
|
|
// userCode: 'cdl',
|
|
|
|
|
// userId: 541,
|
|
|
|
|
// userName: '崔殿龙',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '崔殿龙',
|
|
|
|
|
// userString: '541:A:崔殿龙',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// limitType: 0,
|
|
|
|
|
// processes: '上挂、下挂、交检、化学镀镍、喷砂',
|
|
|
|
|
// quantity: null,
|
|
|
|
|
// roundCycle: null,
|
|
|
|
|
// saturation: 85.0,
|
|
|
|
|
// sign: '4',
|
|
|
|
|
// startPoint: null,
|
|
|
|
|
// team: '化学镀镍一班崔胜伟、化学镀镍一班郭家梁',
|
|
|
|
|
// updateTime: '2023-03-06 18:42:47',
|
|
|
|
|
// wcCode: '001',
|
|
|
|
|
// wcId: 81,
|
|
|
|
|
// wcName: '化学镀镍作业中心',
|
|
|
|
|
// whetherPlate: false,
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCreateDate: '2024-01-16 11:23:10',
|
|
|
|
|
// businessBeanCreateMan: {
|
|
|
|
|
// accountId: 541,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-04',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 102,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: 'MES开发',
|
|
|
|
|
// keyValue: 541,
|
|
|
|
|
// ldapName: 'cdl',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'CUIDIANLONG,CDL',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-04 09:16:54',
|
|
|
|
|
// userCode: 'cdl',
|
|
|
|
|
// userId: 541,
|
|
|
|
|
// userName: '崔殿龙',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '崔殿龙',
|
|
|
|
|
// userString: '541:A:崔殿龙',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCurStatus: 1,
|
|
|
|
|
// flowCode: 'FLOW_DS_009',
|
|
|
|
|
// flowRecDescription: '电子档案维护的变更审批',
|
|
|
|
|
// keepMan: {
|
|
|
|
|
// accountId: 541,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-04',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 102,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: 'MES开发',
|
|
|
|
|
// keyValue: 541,
|
|
|
|
|
// ldapName: 'cdl',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'CUIDIANLONG,CDL',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-04 09:16:54',
|
|
|
|
|
// userCode: 'cdl',
|
|
|
|
|
// userId: 541,
|
|
|
|
|
// userName: '崔殿龙',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '崔殿龙',
|
|
|
|
|
// userString: '541:A:崔殿龙',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// keepTime: '2024-01-16 11:23:10',
|
|
|
|
|
// keyValue: 65,
|
|
|
|
|
// line: true,
|
|
|
|
|
// name: '测试',
|
|
|
|
|
// rfpId: 65,
|
|
|
|
|
// rfpStatus: 2,
|
|
|
|
|
// rfpStatusTitle: '使用中',
|
|
|
|
|
// versionId: null,
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// approvalStatus: 1,
|
|
|
|
|
// bsProcedureSet: {
|
|
|
|
|
// assist: false,
|
|
|
|
|
// assistTitle: '否',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2022-11-15 10:30:45',
|
|
|
|
|
// cycle: 0.0,
|
|
|
|
|
// cyropactorControl: true,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// eleRate: true,
|
|
|
|
|
// eleStream: true,
|
|
|
|
|
// keyValue: 7,
|
|
|
|
|
// mainProcess: true,
|
|
|
|
|
// mainProcessTitle: '是',
|
|
|
|
|
// niValue: true,
|
|
|
|
|
// phValue: true,
|
|
|
|
|
// ppsCode: '003',
|
|
|
|
|
// ppsId: 7,
|
|
|
|
|
// ppsName: '化学镀镍',
|
|
|
|
|
// special: false,
|
|
|
|
|
// specialTitle: '否',
|
|
|
|
|
// team: null,
|
|
|
|
|
// updateTime: '2022-11-15 10:30:45',
|
|
|
|
|
// vSpeed: true,
|
|
|
|
|
// },
|
|
|
|
|
// bsWorkCenter: {
|
|
|
|
|
// area: 13000.0,
|
|
|
|
|
// batchNo: null,
|
|
|
|
|
// bigBatch: false,
|
|
|
|
|
// bsJfCenter: {
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2024-12-09 00:00:00',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// jcCode: 'RBZX',
|
|
|
|
|
// jcId: 1,
|
|
|
|
|
// jcName: '热表中心',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// updateTime: '2024-12-09 00:00:00',
|
|
|
|
|
// },
|
|
|
|
|
// checkout: false,
|
|
|
|
|
// craftAbility: '化学镀镍',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2023-02-06 12:31:36',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// describe: null,
|
|
|
|
|
// endPoint: null,
|
|
|
|
|
// keyValue: 81,
|
|
|
|
|
// leaderUser: {
|
|
|
|
|
// accountId: 541,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-04',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 102,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: 'MES开发',
|
|
|
|
|
// keyValue: 541,
|
|
|
|
|
// ldapName: 'cdl',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'CUIDIANLONG,CDL',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-04 09:16:54',
|
|
|
|
|
// userCode: 'cdl',
|
|
|
|
|
// userId: 541,
|
|
|
|
|
// userName: '崔殿龙',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '崔殿龙',
|
|
|
|
|
// userString: '541:A:崔殿龙',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// limitType: 0,
|
|
|
|
|
// processes: '上挂、下挂、交检、化学镀镍、喷砂',
|
|
|
|
|
// quantity: null,
|
|
|
|
|
// roundCycle: null,
|
|
|
|
|
// saturation: 85.0,
|
|
|
|
|
// sign: '4',
|
|
|
|
|
// startPoint: null,
|
|
|
|
|
// team: '化学镀镍一班崔胜伟、化学镀镍一班郭家梁',
|
|
|
|
|
// updateTime: '2023-03-06 18:42:47',
|
|
|
|
|
// wcCode: '001',
|
|
|
|
|
// wcId: 81,
|
|
|
|
|
// wcName: '化学镀镍作业中心',
|
|
|
|
|
// whetherPlate: false,
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCreateDate: '2024-01-16 17:56:45',
|
|
|
|
|
// businessBeanCreateMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-23',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '开发',
|
|
|
|
|
// keyValue: 561,
|
|
|
|
|
// ldapName: 'zhx',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ZHANGXIN,ZX',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-23 10:58:43',
|
|
|
|
|
// userCode: 'zhx',
|
|
|
|
|
// userId: 561,
|
|
|
|
|
// userName: '张欣',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '张欣',
|
|
|
|
|
// userString: '561:A:张欣',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCurStatus: 1,
|
|
|
|
|
// flowCode: 'FLOW_DS_009',
|
|
|
|
|
// flowRecDescription: '电子档案维护的变更审批',
|
|
|
|
|
// keepMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-23',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '开发',
|
|
|
|
|
// keyValue: 561,
|
|
|
|
|
// ldapName: 'zhx',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ZHANGXIN,ZX',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-23 10:58:43',
|
|
|
|
|
// userCode: 'zhx',
|
|
|
|
|
// userId: 561,
|
|
|
|
|
// userName: '张欣',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '张欣',
|
|
|
|
|
// userString: '561:A:张欣',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// keepTime: '2024-01-16 17:56:45',
|
|
|
|
|
// keyValue: 82,
|
|
|
|
|
// line: false,
|
|
|
|
|
// name: '测试01',
|
|
|
|
|
// rfpId: 82,
|
|
|
|
|
// rfpStatus: 2,
|
|
|
|
|
// rfpStatusTitle: '使用中',
|
|
|
|
|
// versionId: '65',
|
|
|
|
|
// },
|
|
|
|
|
// {
|
|
|
|
|
// approvalStatus: 1,
|
|
|
|
|
// bsProcedureSet: {
|
|
|
|
|
// assist: false,
|
|
|
|
|
// assistTitle: '否',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2022-11-15 10:30:45',
|
|
|
|
|
// cycle: 0.0,
|
|
|
|
|
// cyropactorControl: true,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// eleRate: true,
|
|
|
|
|
// eleStream: true,
|
|
|
|
|
// keyValue: 7,
|
|
|
|
|
// mainProcess: true,
|
|
|
|
|
// mainProcessTitle: '是',
|
|
|
|
|
// niValue: true,
|
|
|
|
|
// phValue: true,
|
|
|
|
|
// ppsCode: '003',
|
|
|
|
|
// ppsId: 7,
|
|
|
|
|
// ppsName: '化学镀镍',
|
|
|
|
|
// special: false,
|
|
|
|
|
// specialTitle: '否',
|
|
|
|
|
// team: null,
|
|
|
|
|
// updateTime: '2022-11-15 10:30:45',
|
|
|
|
|
// vSpeed: true,
|
|
|
|
|
// },
|
|
|
|
|
// bsWorkCenter: {
|
|
|
|
|
// area: 13000.0,
|
|
|
|
|
// batchNo: null,
|
|
|
|
|
// bigBatch: false,
|
|
|
|
|
// bsJfCenter: {
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2024-12-09 00:00:00',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// jcCode: 'RBZX',
|
|
|
|
|
// jcId: 1,
|
|
|
|
|
// jcName: '热表中心',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// updateTime: '2024-12-09 00:00:00',
|
|
|
|
|
// },
|
|
|
|
|
// checkout: false,
|
|
|
|
|
// craftAbility: '化学镀镍',
|
|
|
|
|
// createMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '总工',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// ldapName: 'admin',
|
|
|
|
|
// mail: '13699999999@136.com',
|
|
|
|
|
// mobile: '13699999999',
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ADMIN,ADMIN',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// userCode: '00',
|
|
|
|
|
// userId: 1,
|
|
|
|
|
// userName: 'admin',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: 'admin',
|
|
|
|
|
// userString: '1:A:admin',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// createTime: '2023-02-06 12:31:36',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// describe: null,
|
|
|
|
|
// endPoint: null,
|
|
|
|
|
// keyValue: 81,
|
|
|
|
|
// leaderUser: {
|
|
|
|
|
// accountId: 541,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-04',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 102,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: 'MES开发',
|
|
|
|
|
// keyValue: 541,
|
|
|
|
|
// ldapName: 'cdl',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'CUIDIANLONG,CDL',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-04 09:16:54',
|
|
|
|
|
// userCode: 'cdl',
|
|
|
|
|
// userId: 541,
|
|
|
|
|
// userName: '崔殿龙',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '崔殿龙',
|
|
|
|
|
// userString: '541:A:崔殿龙',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// limitType: 0,
|
|
|
|
|
// processes: '上挂、下挂、交检、化学镀镍、喷砂',
|
|
|
|
|
// quantity: null,
|
|
|
|
|
// roundCycle: null,
|
|
|
|
|
// saturation: 85.0,
|
|
|
|
|
// sign: '4',
|
|
|
|
|
// startPoint: null,
|
|
|
|
|
// team: '化学镀镍一班崔胜伟、化学镀镍一班郭家梁',
|
|
|
|
|
// updateTime: '2023-03-06 18:42:47',
|
|
|
|
|
// wcCode: '001',
|
|
|
|
|
// wcId: 81,
|
|
|
|
|
// wcName: '化学镀镍作业中心',
|
|
|
|
|
// whetherPlate: false,
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCreateDate: '2024-01-17 14:49:30',
|
|
|
|
|
// businessBeanCreateMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-23',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '开发',
|
|
|
|
|
// keyValue: 561,
|
|
|
|
|
// ldapName: 'zhx',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ZHANGXIN,ZX',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-23 10:58:43',
|
|
|
|
|
// userCode: 'zhx',
|
|
|
|
|
// userId: 561,
|
|
|
|
|
// userName: '张欣',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '张欣',
|
|
|
|
|
// userString: '561:A:张欣',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// businessBeanCurStatus: 1,
|
|
|
|
|
// flowCode: 'FLOW_DS_009',
|
|
|
|
|
// flowRecDescription: '电子档案维护的变更审批',
|
|
|
|
|
// keepMan: {
|
|
|
|
|
// accountId: null,
|
|
|
|
|
// card: null,
|
|
|
|
|
// createTime: '2023-05-23',
|
|
|
|
|
// curStatus: 1,
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptName: null,
|
|
|
|
|
// dimissionTime: null,
|
|
|
|
|
// factoryId: 41,
|
|
|
|
|
// head: 0,
|
|
|
|
|
// jobName: '开发',
|
|
|
|
|
// keyValue: 561,
|
|
|
|
|
// ldapName: 'zhx',
|
|
|
|
|
// mail: null,
|
|
|
|
|
// mobile: null,
|
|
|
|
|
// pfDepartment: {
|
|
|
|
|
// appLink: null,
|
|
|
|
|
// createTime: '2022-08-31',
|
|
|
|
|
// deleted: false,
|
|
|
|
|
// deptCode: '001',
|
|
|
|
|
// deptId: 1,
|
|
|
|
|
// deptName: 'MES开发部',
|
|
|
|
|
// deptType: 1,
|
|
|
|
|
// deptTypeTitle: '厂',
|
|
|
|
|
// keyValue: 1,
|
|
|
|
|
// memo: null,
|
|
|
|
|
// orders: '00',
|
|
|
|
|
// parentDeptId: null,
|
|
|
|
|
// parentPath: null,
|
|
|
|
|
// ucDeptId: null,
|
|
|
|
|
// updateTime: '2022-08-31 16:32:46',
|
|
|
|
|
// },
|
|
|
|
|
// pinyinIndex: 'ZHANGXIN,ZX',
|
|
|
|
|
// ucUserId: null,
|
|
|
|
|
// updateTime: '2023-05-23 10:58:43',
|
|
|
|
|
// userCode: 'zhx',
|
|
|
|
|
// userId: 561,
|
|
|
|
|
// userName: '张欣',
|
|
|
|
|
// userSex: 1,
|
|
|
|
|
// userSources: '张欣',
|
|
|
|
|
// userString: '561:A:张欣',
|
|
|
|
|
// userType: 'A',
|
|
|
|
|
// },
|
|
|
|
|
// keepTime: '2024-01-17 14:49:30',
|
|
|
|
|
// keyValue: 101,
|
|
|
|
|
// line: false,
|
|
|
|
|
// name: '测试02',
|
|
|
|
|
// rfpId: 101,
|
|
|
|
|
// rfpStatus: 2,
|
|
|
|
|
// rfpStatusTitle: '使用中',
|
|
|
|
|
// versionId: null,
|
|
|
|
|
// },
|
|
|
|
|
// ];
|
|
|
|
|
// this.page.total = this.data.length;
|
|
|
|
|
// this.loading = false;
|
|
|
|
|
// setTimeout(() => {
|
|
|
|
|
// this.selectionClear();
|
|
|
|
|
// }, 500);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style></style>
|