Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/ry_zhky/commit/34d7fb22a60266208dc98485cda30d70d517a651
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
6 additions and
6 deletions
@ -59,5 +59,5 @@ public interface TdLeaveMapper extends BaseMapper<TdLeave>
* @param ids 需 要 删 除 的 数 据 主 键 集 合
* @return 结 果
* /
public int deleteTdLeaveByIds ( Stri ng[ ] ids ) ;
public int deleteTdLeaveByIds ( Lo ng[ ] ids ) ;
}
@ -61,7 +61,7 @@ public interface TdTrainMapper extends BaseMapper<TdTrain>
* @param ids 需 要 删 除 的 数 据 主 键 集 合
* @return 结 果
* /
public int deleteTdTrainByIDs ( Stri ng[ ] ids ) ;
public int deleteTdTrainByIDs ( Lo ng[ ] ids ) ;
public TrainCountDTO selectCountList ( ) ;
}
@ -80,7 +80,7 @@ public class TdLeaveServiceImpl implements ITdLeaveService
@Override
public int deleteTdLeaveByIds ( String ids )
{
return tdLeaveMapper . deleteTdLeaveByIds ( Convert . to Str Array( ids ) ) ;
return tdLeaveMapper . deleteTdLeaveByIds ( Convert . to Long Array( ids ) ) ;
}
/ * *
@ -85,7 +85,7 @@ public class TdTrainServiceImpl extends ServiceImpl<TdTrainMapper,TdTrain> imple
@Override
public int deleteTdTrainByIDs ( String ids )
{
return tdTrainMapper . deleteTdTrainByIDs ( Convert . to Str Array( ids ) ) ;
return tdTrainMapper . deleteTdTrainByIDs ( Convert . to Long Array( ids ) ) ;
}
/ * *
@ -104,7 +104,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
delete from td_leave where id = #{id}
</delete>
<delete id= "deleteTdLeaveByIds" parameterType= " Stri ng">
<delete id= "deleteTdLeaveByIds" parameterType= " Lo ng">
delete from td_leave where id in
<foreach item= "id" collection= "array" open= "(" separator= "," close= ")" >
#{id}
@ -138,7 +138,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
delete from td_train where id = #{id}
</delete>
<delete id= "deleteTdTrainByIDs" parameterType= " Stri ng">
<delete id= "deleteTdTrainByIDs" parameterType= " Lo ng">
delete from td_train where id in
<foreach item= "id" collection= "array" open= "(" separator= "," close= ")" >
#{id}