gaodd преди 5 години
родител
ревизия
c1460f7946

+ 0 - 18
src/main/java/com/unissoft/mapper/ProcessSubMapper.java

@@ -1,18 +0,0 @@
1
-package com.unissoft.mapper;
2
-
3
-import com.unissoft.model.ProcessSub;
4
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
5
-import org.springframework.stereotype.Repository;
6
-
7
-/**
8
- * <p>
9
- *  Mapper 接口
10
- * </p>
11
- *
12
- * @author My SunShine
13
- * @since 2020-12-21
14
- */
15
-@Repository
16
-public interface ProcessSubMapper extends BaseMapper<ProcessSub> {
17
-
18
-}

+ 0 - 20
src/main/java/com/unissoft/mapper/ProcessSubMapper.xml

@@ -1,20 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8"?>
2
-<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3
-<mapper namespace="com.unissoft.mapper.ProcessSubMapper">
4
-
5
-    <!-- 通用查询映射结果 -->
6
-    <resultMap id="BaseResultMap" type="com.unissoft.model.ProcessSub">
7
-        <id column="id" property="id" />
8
-        <result column="zid" property="zid" />
9
-        <result column="details" property="details" />
10
-        <result column="title" property="title" />
11
-        <result column="operation_time" property="operationTime" />
12
-        <result column="step" property="step" />
13
-    </resultMap>
14
-
15
-    <!-- 通用查询结果列 -->
16
-    <sql id="Base_Column_List">
17
-        id, zid, details, title, operation_time, step
18
-    </sql>
19
-
20
-</mapper>

+ 0 - 127
src/main/java/com/unissoft/model/ProcessSub.java

@@ -1,127 +0,0 @@
1
-package com.unissoft.model;
2
-
3
-import com.baomidou.mybatisplus.annotation.TableName;
4
-import com.baomidou.mybatisplus.annotation.IdType;
5
-import com.baomidou.mybatisplus.annotation.TableId;
6
-import com.baomidou.mybatisplus.annotation.TableField;
7
-import java.io.Serializable;
8
-import io.swagger.annotations.ApiModel;
9
-import io.swagger.annotations.ApiModelProperty;
10
-
11
-/**
12
- * <p>
13
- * 
14
- * </p>
15
- *
16
- * @author My SunShine
17
- * @since 2020-12-21
18
- */
19
-@TableName("process_sub")
20
-@ApiModel(value="ProcessSub对象", description="")
21
-public class ProcessSub implements Serializable {
22
-
23
-    private static final long serialVersionUID = 1L;
24
-
25
-    //业务字段
26
-    @TableField(exist = false)
27
-    private Integer subData;
28
-    @TableField(exist = false)
29
-    private Integer auditId;
30
-    
31
-    
32
-    
33
-    public Integer getAuditId() {
34
-		return auditId;
35
-	}
36
-
37
-	public void setAuditId(Integer auditId) {
38
-		this.auditId = auditId;
39
-	}
40
-
41
-	public Integer getSubData() {
42
-        return subData;
43
-    }
44
-
45
-    public void setSubData(Integer subData) {
46
-        this.subData = subData;
47
-    }
48
-    
49
-    
50
-    @ApiModelProperty(value = "流程子表")
51
-    @TableId(value = "id", type = IdType.AUTO)
52
-    private Integer id;
53
-
54
-    @ApiModelProperty(value = "主流程id")
55
-    @TableField("zid")
56
-    private Integer zid;
57
-
58
-    @ApiModelProperty(value = "流程数据选项")
59
-    @TableField("details")
60
-    private String details;
61
-
62
-    @ApiModelProperty(value = "流程标题")
63
-    @TableField("title")
64
-    private String title;
65
-
66
-    @TableField("operation_time")
67
-    private String operationTime;
68
-
69
-    @ApiModelProperty(value = "顺序")
70
-    @TableField("step")
71
-    private Integer step;
72
-
73
-    public Integer getId() {
74
-        return id;
75
-    }
76
-
77
-    public void setId(Integer id) {
78
-        this.id = id;
79
-    }
80
-    public Integer getZid() {
81
-        return zid;
82
-    }
83
-
84
-    public void setZid(Integer zid) {
85
-        this.zid = zid;
86
-    }
87
-    public String getDetails() {
88
-        return details;
89
-    }
90
-
91
-    public void setDetails(String details) {
92
-        this.details = details;
93
-    }
94
-    public String getTitle() {
95
-        return title;
96
-    }
97
-
98
-    public void setTitle(String title) {
99
-        this.title = title;
100
-    }
101
-    public String getOperationTime() {
102
-        return operationTime;
103
-    }
104
-
105
-    public void setOperationTime(String operationTime) {
106
-        this.operationTime = operationTime;
107
-    }
108
-    public Integer getStep() {
109
-        return step;
110
-    }
111
-
112
-    public void setStep(Integer step) {
113
-        this.step = step;
114
-    }
115
-
116
-    @Override
117
-    public String toString() {
118
-        return "ProcessSub{" +
119
-            "id=" + id +
120
-            ", zid=" + zid +
121
-            ", details=" + details +
122
-            ", title=" + title +
123
-            ", operationTime=" + operationTime +
124
-            ", step=" + step +
125
-        "}";
126
-    }
127
-}