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/8848e08e1498189e13d58bb5b33947cf81da6172?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
1 deletions
@ -56,7 +56,9 @@ public class TdPlaceManager {
public boolean deletedPlaceByids ( String ids ) {
public boolean deletedPlaceByids ( String ids ) {
List < String > list = Arrays . asList ( Convert . toStrArray ( ids ) ) ;
List < String > list = Arrays . asList ( Convert . toStrArray ( ids ) ) ;
return placeService . removeByIds ( list ) ;
return placeService . lambdaUpdate ( )
. in ( TdPlace : : getId , list )
. set ( TdPlace : : getState , "0" ) . update ( ) ;
}
}
public List < TdPlace > selectList ( ) {
public List < TdPlace > selectList ( ) {
@ -31,6 +31,7 @@
<if test= "placeName!=null and placeName!=''" >
<if test= "placeName!=null and placeName!=''" >
AND place_name LIKE concat('%',#{placeName},'%')
AND place_name LIKE concat('%',#{placeName},'%')
</if>
</if>
AND state !='0'
</trim>
</trim>
ORDER BY create_time DESC
ORDER BY create_time DESC
</select>
</select>