From c139302858be79aa5ca1f823c3ae3d8b1b16d6f5 Mon Sep 17 00:00:00 2001 From: 龚焕茏 <2842157468@qq.com> Date: 星期二, 16 四月 2024 14:48:12 +0800 Subject: [PATCH] 工单处理:过程图 --- ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CheckRuleVO.java | 60 +++++++++++++++++++++++++++++++++--------------------------- 1 files changed, 33 insertions(+), 27 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CheckRuleVO.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CheckRuleVO.java index 8c95449..b4ca16c 100644 --- a/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CheckRuleVO.java +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/vo/CheckRuleVO.java @@ -1,49 +1,55 @@ package com.ycl.platform.domain.vo; +import annotation.Excel; import com.ycl.platform.base.AbsVo; -import com.ycl.platform.domain.entity.CheckRule; -import java.util.List; -import java.time.LocalDateTime; -import org.springframework.lang.NonNull; -import org.springframework.beans.BeanUtils; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.experimental.Accessors; + +import java.math.BigDecimal; /** * 鑰冩牳瑙勫垯灞曠ず * - * @author xp - * @since 2024-03-06 */ @Data @Accessors(chain = true) public class CheckRuleVO extends AbsVo { + /** + * 妯℃澘id + */ + private Integer templateId; - /** 瑙勫垯鍚嶇О */ + /** 妯℃澘鍚� */ + private String templateName; + /** + * 瀹℃牳鐘舵�� + */ + private Integer auditState; + /** + * 瑙勫垯鍚嶇О + */ private String ruleName; + /** + * 瑙勫垯绫诲瀷 + */ + private String ruleCategory; + + /** 瑙勫垯缁嗗垯 */ + private String ruleIndex; + + /** 鑰冩牳绫诲瀷 */ + private Long examineCategory; /** 瑙勫垯鎻忚堪 */ - private String ruleDetail; + private String ruleDescription; - /** 澶╃綉瑙嗛鐐逛綅鏁� */ - private Integer videoPointNum; + /** 瑙勫垯鏉冮噸 */ + private BigDecimal weight; - /** 杞﹁締鍗″彛鐐逛綅鏁� */ - private Integer vehicleCheckpointNum; + /** 鍚敤鐘舵�� */ + private Long state; - /** 浜鸿劯鍗″彛鐐逛綅鏁� */ - private Integer faceChceckpointNum; - - private Integer category; - - public static CheckRuleVO getVoByEntity(@NonNull CheckRule entity, CheckRuleVO vo) { - if(vo == null) { - vo = new CheckRuleVO(); - } - BeanUtils.copyProperties(entity, vo); - return vo; - } + /** 閫昏緫鍒犻櫎 */ + private String deleted; } -- Gitblit v1.8.0