Commit d43ceab0c2d4b8c35da7eab28bad88bd06eb4d7d
1 parent
67e682381c
Exists in
master
and in
6 other branches
update
Showing 1 changed file with 2 additions and 2 deletions
platform-biz-service/src/main/resources/mainOrm/master/MasterOrganization.xml
View file @
d43ceab
| ... | ... | @@ -29,13 +29,13 @@ |
| 29 | 29 | <insert id="addOrganization" parameterType="com.lyms.platform.permission.model.Organization"> |
| 30 | 30 | <selectKey order="AFTER" keyProperty="id" resultType="java.lang.Integer">SELECT LAST_INSERT_ID()</selectKey> |
| 31 | 31 | insert into organization |
| 32 | - (foreign_id,name,type,level,area_manage,province_id,city_id,area_id,address,description,publish_id,publish_name,yn,modified,created,shortCode,street_id,bStatus | |
| 32 | + (foreign_id,name,type,level,province_id,city_id,area_id,address,description,publish_id,publish_name,yn,modified,created,shortCode,street_id,bStatus | |
| 33 | 33 | <if test="id != null and id >= 0"> |
| 34 | 34 | ,id |
| 35 | 35 | </if> |
| 36 | 36 | ) |
| 37 | 37 | values |
| 38 | - (#{foreignId},#{name},#{type},#{level},#{areaManage},#{provinceId},#{cityId},#{areaId},#{address},#{description},#{publishId},#{publishName},#{yn},#{modified},#{created},#{shortCode},#{streetId},#{bStatus} | |
| 38 | + (#{foreignId},#{name},#{type},#{level},#{provinceId},#{cityId},#{areaId},#{address},#{description},#{publishId},#{publishName},#{yn},#{modified},#{created},#{shortCode},#{streetId},#{bStatus} | |
| 39 | 39 | <if test="id != null and id >= 0"> |
| 40 | 40 | ,#{id} |
| 41 | 41 | </if> |