增加啊更新接口

This commit is contained in:
刘名喜 2024-11-28 10:36:21 +08:00
parent 17872182ea
commit d1d2c72fbe
2 changed files with 11 additions and 0 deletions

View File

@ -6,4 +6,6 @@ import java.util.List;
public interface AP0AEMapper {
List<AP0AE> selectAll();
int update(AP0AE ap0ae);
}

View File

@ -107,4 +107,13 @@
<select id="selectAll" resultMap="AP0AEResult">
<include refid="AP0AESelectAllCol"/>
</select>
<update id="update">
update AP0AE
set UDF07 = #{UDF07}
where AE001 = #{AE001}
AND AE002 = #{AE002}
AND AE003 = #{AE003}
AND AE012 = #{AE012}
</update>
</mapper>