From b86b34a3ba3a844207d3db527db8f9e9fa22033b Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期一, 15 四月 2024 18:05:43 +0800
Subject: [PATCH] 工单处理:审核、运维情况

---
 ycl-pojo/src/main/java/com/ycl/platform/domain/query/CheckTemplateQuery.java |   79 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 79 insertions(+), 0 deletions(-)

diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/query/CheckTemplateQuery.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/query/CheckTemplateQuery.java
new file mode 100644
index 0000000..388afbd
--- /dev/null
+++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/query/CheckTemplateQuery.java
@@ -0,0 +1,79 @@
+package com.ycl.platform.domain.query;
+
+import annotation.Excel;
+import com.baomidou.mybatisplus.annotation.FieldFill;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import com.ycl.platform.base.AbsQuery;
+import io.swagger.annotations.ApiModel;
+import lombok.Data;
+import lombok.experimental.Accessors;
+
+import java.util.Date;
+import java.util.List;
+
+@Data
+@Accessors(chain = true)
+@ApiModel(value = "瑙勫垯妯℃澘鏌ヨ", description = "瑙勫垯妯℃澘鏌ヨ")
+public class CheckTemplateQuery extends AbsQuery {
+    /**  */
+    private Long id;
+
+    /** 妯℃澘鍚嶇О */
+    @Excel(name = "妯℃澘鍚嶇О")
+    private String templateName;
+
+    /** 璋冩暣绯绘暟 */
+    @Excel(name = "璋冩暣绯绘暟")
+    private Long adjustCoefficient;
+
+    /** 璋冩暣鏂瑰紡锛氫箻闄� */
+    @Excel(name = "璋冩暣鏂瑰紡锛氫箻闄�")
+    private String adjustWay;
+
+    /** 鑰冩牳绫诲瀷 */
+    @Excel(name = "鑰冩牳绫诲瀷")
+    private Long examineCategory;
+
+    /** 鍚敤/鍋滅敤 */
+    @Excel(name = "鍚敤/鍋滅敤")
+    private String status;
+
+    /** 鍖哄幙 */
+    @Excel(name = "鍖哄幙")
+    private List deptId;
+
+    /** 鍒涘缓浜篿d */
+    private Long createUser;
+
+    /** 鍒涘缓浜哄鍚� */
+    @Excel(name = "鍒涘缓浜哄鍚�")
+    private String createUserName;
+
+    /**  */
+    private Long updateUser;
+
+    /**  */
+    @Excel(name = "")
+    private String updateUserName;
+
+    /** 閫昏緫鍒犻櫎 */
+    private String deleted;
+
+
+    /** 鍒涘缓鑰� */
+    private String createBy;
+
+    /** 鍒涘缓鏃堕棿 */
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    private Date createTime;
+
+    /** 鏇存柊鑰� */
+    @TableField(fill = FieldFill.UPDATE)
+    private String updateBy;
+
+    /** 鏇存柊鏃堕棿 */
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    @TableField(fill = FieldFill.UPDATE)
+    private Date updateTime;
+}

--
Gitblit v1.8.0