update table
This commit is contained in:
parent
298d206270
commit
a3b1e4714e
|
|
@ -56,7 +56,7 @@ public class TypeInfo extends BaseEntity
|
||||||
/** 是否删除 */
|
/** 是否删除 */
|
||||||
@Excel(name = "是否删除")
|
@Excel(name = "是否删除")
|
||||||
@ApiModelProperty(value = "是否删除", required = true)
|
@ApiModelProperty(value = "是否删除", required = true)
|
||||||
private String isActive;
|
private String delFlag;
|
||||||
|
|
||||||
/** 父部门名称 */
|
/** 父部门名称 */
|
||||||
@ApiModelProperty(value = "父部门名称", required = true)
|
@ApiModelProperty(value = "父部门名称", required = true)
|
||||||
|
|
|
||||||
|
|
@ -10,18 +10,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<result property="parentId" column="parent_id" />
|
<result property="parentId" column="parent_id" />
|
||||||
<result property="typeName" column="type_name" />
|
<result property="typeName" column="type_name" />
|
||||||
<result property="level" column="level" />
|
<result property="level" column="level" />
|
||||||
<result property="sort" column="sort" />
|
<result property="delFlag" column="del_flag" />
|
||||||
<result property="isActive" column="is_active" />
|
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<sql id="bmProjectInfo">
|
<sql id="bmProjectInfo">
|
||||||
select type_id, parent_id, type_name, `level`, sort, is_active
|
select type_id, parent_id, type_name, `level`, del_flag
|
||||||
from ma_type_info
|
from ma_type
|
||||||
|
where del_flag = '0'
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<select id="getMaTypeInfoList" resultType="com.bonus.zlpt.equip.api.domain.TypeInfo">
|
<select id="getMaTypeInfoList" resultType="com.bonus.zlpt.equip.api.domain.TypeInfo">
|
||||||
select type_id, parent_id, type_name, `level`, sort, is_active
|
select type_id, parent_id, type_name, `level`, del_flag
|
||||||
from ma_type_info
|
from ma_type
|
||||||
|
where del_flag = '0'
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue