| | |
| | | {code: 'print_lck', name: '打印流程卡',status:'primary' }, |
| | | {code: 'print_bq', name: '打印标签',status:'primary' } |
| | | ], |
| | | import: false, |
| | | export: true, |
| | | print: true, |
| | | // import: false, |
| | | // export: true, |
| | | // print: true, |
| | | zoom: true, |
| | | custom: true |
| | | }, |
| | |
| | | // buttons: [{ |
| | | // |
| | | // }], |
| | | import: false, |
| | | export: true, |
| | | print: true, |
| | | // import: false, |
| | | // export: true, |
| | | // print: true, |
| | | zoom: true, |
| | | custom: true |
| | | }, |
| | |
| | | buttons: [ |
| | | {code: 'print_lck', name: '审核通过',status:'primary' }, |
| | | ], |
| | | import: false, |
| | | export: true, |
| | | print: true, |
| | | // import: false, |
| | | // export: true, |
| | | // print: true, |
| | | zoom: true, |
| | | custom: true |
| | | }, |
| | |
| | | // buttons: [{ |
| | | // |
| | | // }], |
| | | import: false, |
| | | export: true, |
| | | print: true, |
| | | // import: false, |
| | | // export: true, |
| | | // print: true, |
| | | zoom: true, |
| | | custom: true |
| | | }, |
| | |
| | | // buttons: [{ |
| | | // |
| | | // }], |
| | | import: false, |
| | | export: true, |
| | | print: true, |
| | | // import: false, |
| | | // export: true, |
| | | // print: true, |
| | | zoom: true, |
| | | custom: true |
| | | }, |
| | |
| | | buttons: [ |
| | | {code: 'saveWorkOrder', name: '保存', status: 'primary', icon: 'vxe-icon-save'}, |
| | | ], |
| | | import: false, |
| | | export: true, |
| | | print: true, |
| | | // import: false, |
| | | // export: true, |
| | | // print: true, |
| | | zoom: true, |
| | | custom: true |
| | | }, |
| | |
| | | // buttons: [{ |
| | | // |
| | | // }], |
| | | import: false, |
| | | export: true, |
| | | print: true, |
| | | // import: false, |
| | | // export: true, |
| | | // print: true, |
| | | zoom: true, |
| | | custom: true |
| | | }, |
New file |
| | |
| | | package com.example.erp.entity.pp; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import lombok.Data; |
| | | |
| | | |
| | | |
| | | @Data |
| | | public class damage_details { |
| | | @TableId(type = IdType.AUTO) |
| | | //自增ID |
| | | private Integer id; |
| | | //报工编号 |
| | | private String reportingWorkId; |
| | | //产品序号 |
| | | private String orderNumber; |
| | | //工艺确认序号 |
| | | private String technologyNumber; |
| | | //次破数量 |
| | | private Integer breakageQuantity; |
| | | //次破原因 |
| | | private String breakageReason; |
| | | //类型 |
| | | private String breakageType; |
| | | //可利用 |
| | | private Integer available; |
| | | //退回工序 |
| | | private String returnProcess; |
| | | //责任工序 |
| | | private String responsibleProcess; |
| | | //责任人员 |
| | | private String responsiblePersonnel; |
| | | //责任班组 |
| | | private String responsibleTeam; |
| | | //责任设备 |
| | | private String responsibleEquipment; |
| | | //质检员 |
| | | private String qualityInspector; |
| | | //补片状态 |
| | | private Integer patchStatus; |
| | | //质检状态 |
| | | private Integer qualityInsStatus; |
| | | } |