增加啊更新接口
This commit is contained in:
parent
17872182ea
commit
d1d2c72fbe
@ -6,4 +6,6 @@ import java.util.List;
|
|||||||
|
|
||||||
public interface AP0AEMapper {
|
public interface AP0AEMapper {
|
||||||
List<AP0AE> selectAll();
|
List<AP0AE> selectAll();
|
||||||
|
|
||||||
|
int update(AP0AE ap0ae);
|
||||||
}
|
}
|
||||||
|
@ -107,4 +107,13 @@
|
|||||||
<select id="selectAll" resultMap="AP0AEResult">
|
<select id="selectAll" resultMap="AP0AEResult">
|
||||||
<include refid="AP0AESelectAllCol"/>
|
<include refid="AP0AESelectAllCol"/>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<update id="update">
|
||||||
|
update AP0AE
|
||||||
|
set UDF07 = #{UDF07}
|
||||||
|
where AE001 = #{AE001}
|
||||||
|
AND AE002 = #{AE002}
|
||||||
|
AND AE003 = #{AE003}
|
||||||
|
AND AE012 = #{AE012}
|
||||||
|
</update>
|
||||||
</mapper>
|
</mapper>
|
Loading…
Reference in New Issue
Block a user