| | |
| | | import org.apache.ibatis.annotations.Delete; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.apache.ibatis.annotations.Update; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | @Select("select * FROM tj_order_ycxm WHERE tjh=#{tjNum} and deleted=1") |
| | | List<TjOrderYcxm> zongjianyishengHuiFuyichangxiangmu(String tjNum); |
| | | |
| | | |
| | | |
| | | @Update("update tj_order_ycxm a set" + |
| | | " a.deleted=0 " + |
| | | " where a.id=id") |
| | | int zongjianyishengHuiFuyichangxiangmuanniu(String id); |
| | | |
| | | @Delete("delete from tj_order_ycxm a where a.id=id") |
| | | int zongjianyishengCheDiShanChuyichangxiangmuanniu(String id); |
| | | } |