16 changed files with 194 additions and 40 deletions
@ -0,0 +1,5 @@
|
||||
ALTER TABLE `negative`.`negative` |
||||
ADD COLUMN `spot_check_flag` tinyint NULL COMMENT '是否抽检' AFTER `second_involve_depart_id`, |
||||
ADD COLUMN `spot_check_result` varchar(255) NULL COMMENT '抽检结果' AFTER `spot_check_flag`, |
||||
ADD COLUMN `spot_check_desc` text NULL COMMENT '抽检情况' AFTER `spot_check_result`, |
||||
ADD COLUMN `unrectify_reason` text NULL COMMENT '未整改原因' AFTER `spot_check_desc`; |
||||
@ -0,0 +1,21 @@
|
||||
package com.biutag.supervision.pojo.dto; |
||||
|
||||
import com.biutag.supervision.pojo.dto.flow.VerifyData; |
||||
import lombok.Getter; |
||||
import lombok.Setter; |
||||
|
||||
/** |
||||
* @author wxc |
||||
* @date 2024/12/19 |
||||
*/ |
||||
@Setter |
||||
@Getter |
||||
public class NegativeSpotCheckDto { |
||||
|
||||
private String spotCheckResult; |
||||
|
||||
private String spotCheckDesc; |
||||
|
||||
private VerifyData verifyData; |
||||
|
||||
} |
||||
@ -0,0 +1,38 @@
|
||||
package com.biutag.supervision.pojo.vo; |
||||
|
||||
import lombok.Getter; |
||||
import lombok.Setter; |
||||
|
||||
import java.time.LocalDateTime; |
||||
|
||||
/** |
||||
* @author wxc |
||||
* @date 2024/12/20 |
||||
*/ |
||||
@Setter |
||||
@Getter |
||||
public class NegativeFileVo { |
||||
|
||||
private String id; |
||||
|
||||
private String fileId; |
||||
|
||||
private String filePath; |
||||
|
||||
private String negtiveId; |
||||
|
||||
private String type; |
||||
|
||||
private LocalDateTime crtTime; |
||||
|
||||
private String crtUser; |
||||
|
||||
private String fileName; |
||||
|
||||
private String status; |
||||
|
||||
private Integer fileClassId; |
||||
|
||||
private String fileClassTitle; |
||||
|
||||
} |
||||
Loading…
Reference in new issue