去除SystemFlow中的flowtype

release_1.0.0
xueqingkun 11 months ago
parent 7fffc967bc
commit fb8b39b876

@ -24,11 +24,6 @@ public class SystemFlow implements Serializable {
*/ */
private String flowName; private String flowName;
/**
* 1 2:
*/
private Integer flowType;
/** /**
* *
*/ */

@ -7,7 +7,6 @@
<resultMap id="BaseResultMap" type="com.supervision.knowsub.model.SystemFlow"> <resultMap id="BaseResultMap" type="com.supervision.knowsub.model.SystemFlow">
<id property="id" column="id" jdbcType="VARCHAR"/> <id property="id" column="id" jdbcType="VARCHAR"/>
<result property="flowName" column="flow_name" jdbcType="VARCHAR"/> <result property="flowName" column="flow_name" jdbcType="VARCHAR"/>
<result property="flowType" column="flow_type" jdbcType="INTEGER"/>
<result property="remark" column="remark" jdbcType="VARCHAR"/> <result property="remark" column="remark" jdbcType="VARCHAR"/>
<result property="createUserId" column="create_user_id" jdbcType="VARCHAR"/> <result property="createUserId" column="create_user_id" jdbcType="VARCHAR"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/> <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
@ -16,7 +15,7 @@
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
id,flow_name,flow_type, id,flow_name,
remark,create_user_id,create_time, remark,create_user_id,create_time,
update_user_id,update_time update_user_id,update_time
</sql> </sql>

Loading…
Cancel
Save