目录拖动优化
This commit is contained in:
parent
9785256c80
commit
64287e85eb
|
@ -23,7 +23,7 @@ public interface SysCatalogTextbookMapper extends BaseMapperPlus<SysCatalogTextb
|
|||
|
||||
int addOrderNum(@Param("mix") Long mix, @Param("max") Long max);
|
||||
|
||||
int subOrderNum(@Param("mix") Long mix, @Param("max") Long max);
|
||||
int subOrderNum(@Param("mix") Long mix, @Param("max") Long max);
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
order_num > #{mix}
|
||||
</if>
|
||||
<if test="max != null">
|
||||
and order_num < #{mix}
|
||||
and order_num < #{max}
|
||||
</if>
|
||||
</where>
|
||||
</update>
|
||||
|
@ -40,7 +40,7 @@
|
|||
order_num > #{mix}
|
||||
</if>
|
||||
<if test="max != null">
|
||||
and order_num < #{mix}
|
||||
and order_num < #{max}
|
||||
</if>
|
||||
</where>
|
||||
</update>
|
||||
|
|
Loading…
Reference in New Issue