From 59e91a4e9ddaf23cebb12993c774aa899ab22d16 Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: Mon, 19 Jun 2023 14:22:45 +0800
Subject: [PATCH] 描述
---
src/main/java/com/gk/firework/Domain/PatrolDetailInfo.java | 181 +++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 181 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/gk/firework/Domain/PatrolDetailInfo.java b/src/main/java/com/gk/firework/Domain/PatrolDetailInfo.java
new file mode 100644
index 0000000..88d7716
--- /dev/null
+++ b/src/main/java/com/gk/firework/Domain/PatrolDetailInfo.java
@@ -0,0 +1,181 @@
+package com.gk.firework.Domain;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+
+@TableName("patroldetail")
+public class PatrolDetailInfo implements Serializable {
+ @TableField(exist = false)
+ private static final long serialVersionUID = 1L;
+
+ @TableId(type = IdType.AUTO)
+ private Long id;
+
+ /** patrolorder表id orderid **/
+ private Long orderid;
+
+ /**检查内容 content **/
+ private String content;
+
+ /** 参考判断 standard **/
+ private String standard;
+
+ private String choose;
+
+ /**理由 reason **/
+ private String reason;
+
+ /**整改前图片 beforepath **/
+ private String beforepath;
+
+ /**整改后图片 afterpath **/
+ private String afterpath;
+
+ /**是否整改 ismend **/
+ private Byte ismend;
+
+ /**创建人 createdby **/
+ private String createdby;
+
+ /**创建时间 createddate **/
+ private Date createddate;
+
+ /**更新人 modifiedby **/
+ private String modifiedby;
+
+ /** 更新时间 modifieddate **/
+ private Date modifieddate;
+
+ /** id **/
+ public Long getId() {
+ return id;
+ }
+
+ /** id **/
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+ /** orderid **/
+ public Long getOrderid() {
+ return orderid;
+ }
+
+ /** orderid **/
+ public void setOrderid(Long orderid) {
+ this.orderid = orderid;
+ }
+
+ /** content **/
+ public String getContent() {
+ return content;
+ }
+
+ /** content **/
+ public void setContent(String content) {
+ this.content = content == null ? null : content.trim();
+ }
+
+ /** standard **/
+ public String getStandard() {
+ return standard;
+ }
+
+ /** standard **/
+ public void setStandard(String standard) {
+ this.standard = standard == null ? null : standard.trim();
+ }
+
+ /** reason **/
+ public String getReason() {
+ return reason;
+ }
+
+ /** reason **/
+ public void setReason(String reason) {
+ this.reason = reason == null ? null : reason.trim();
+ }
+
+ /** beforepath **/
+ public String getBeforepath() {
+ return beforepath;
+ }
+
+ /** beforepath **/
+ public void setBeforepath(String beforepath) {
+ this.beforepath = beforepath == null ? null : beforepath.trim();
+ }
+
+ /** afterpath **/
+ public String getAfterpath() {
+ return afterpath;
+ }
+
+ /** afterpath **/
+ public void setAfterpath(String afterpath) {
+ this.afterpath = afterpath == null ? null : afterpath.trim();
+ }
+
+ /** ismend **/
+ public Byte getIsmend() {
+ return ismend;
+ }
+
+ /** ismend **/
+ public void setIsmend(Byte ismend) {
+ this.ismend = ismend;
+ }
+
+ /** createdby **/
+ public String getCreatedby() {
+ return createdby;
+ }
+
+ /** createdby **/
+ public void setCreatedby(String createdby) {
+ this.createdby = createdby == null ? null : createdby.trim();
+ }
+
+ /** createddate **/
+ public Date getCreateddate() {
+ return createddate;
+ }
+
+ /** createddate **/
+ public void setCreateddate(Date createddate) {
+ this.createddate = createddate;
+ }
+
+ /** modifiedby **/
+ public String getModifiedby() {
+ return modifiedby;
+ }
+
+ /** modifiedby **/
+ public void setModifiedby(String modifiedby) {
+ this.modifiedby = modifiedby == null ? null : modifiedby.trim();
+ }
+
+ /** modifieddate **/
+ public Date getModifieddate() {
+ return modifieddate;
+ }
+
+ /** modifieddate **/
+ public void setModifieddate(Date modifieddate) {
+ this.modifieddate = modifieddate;
+ }
+
+ public String getChoose() {
+ return choose;
+ }
+
+ public void setChoose(String choose) {
+ this.choose = choose;
+ }
+}
--
Gitblit v1.9.2