id, orgId, parentId, name, parentIds, sort, createBy, createTime, updateBy, updateTime,
delFlag
update org set delFlag = '1'
where id = #{id}
insert into org (orgId, parentId,
name, parentIds, sort,
createBy, createTime, updateBy,
updateTime, delFlag)
values (#{orgId,jdbcType=INTEGER}, #{parentId,jdbcType=INTEGER},
#{name,jdbcType=VARCHAR}, #{parentIds,jdbcType=VARCHAR}, #{sort,jdbcType=INTEGER},
#{createBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateBy,jdbcType=VARCHAR},
#{updateTime,jdbcType=TIMESTAMP}, #{delFlag,jdbcType=VARCHAR})
insert into org
orgId,
parentId,
name,
parentIds,
sort,
createBy,
createTime,
updateBy,
updateTime,
delFlag,
#{orgId,jdbcType=INTEGER},
#{parentId,jdbcType=INTEGER},
#{name,jdbcType=VARCHAR},
#{parentIds,jdbcType=VARCHAR},
#{sort,jdbcType=INTEGER},
#{createBy,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP},
#{updateBy,jdbcType=VARCHAR},
#{updateTime,jdbcType=TIMESTAMP},
#{delFlag,jdbcType=VARCHAR},
update org
orgId = #{orgId,jdbcType=INTEGER},
parentId = #{parentId,jdbcType=INTEGER},
name = #{name,jdbcType=VARCHAR},
parentIds = #{parentIds,jdbcType=VARCHAR},
sort = #{sort,jdbcType=INTEGER},
createBy = #{createBy,jdbcType=VARCHAR},
createTime = #{createTime,jdbcType=TIMESTAMP},
updateBy = #{updateBy,jdbcType=VARCHAR},
updateTime = #{updateTime,jdbcType=TIMESTAMP},
delFlag = #{delFlag,jdbcType=VARCHAR},
where id = #{id,jdbcType=INTEGER}
update org
set orgId = #{orgId,jdbcType=INTEGER},
parentId = #{parentId,jdbcType=INTEGER},
name = #{name,jdbcType=VARCHAR},
parentIds = #{parentIds,jdbcType=VARCHAR},
sort = #{sort,jdbcType=INTEGER},
createBy = #{createBy,jdbcType=VARCHAR},
createTime = #{createTime,jdbcType=TIMESTAMP},
updateBy = #{updateBy,jdbcType=VARCHAR},
updateTime = #{updateTime,jdbcType=TIMESTAMP},
delFlag = #{delFlag,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}