Compare commits

..

No commits in common. "8a473a5fece12bd43a205fbe432c18d26b1c19d0" and "f0bebb23be5125df087ba893cd2f58ebbed45a07" have entirely different histories.

4 changed files with 2 additions and 20 deletions

View File

@ -166,13 +166,7 @@ public class AppUserController extends BaseController
public static void main(String[] args) { public static void main(String[] args) {
int i = 29224; String s = "12";
int j = 29198; System.out.println(s.length());
double v = i / 1000.0;
double v1 = j / 1000.0;
System.out.println( v );
System.out.println(v1);
System.out.println( v - v1);
} }
} }

View File

@ -63,7 +63,4 @@ public interface AppDynamicCommentMapper
public int deleteAppDynamicCommentByParentId(Long parentId); public int deleteAppDynamicCommentByParentId(Long parentId);
public List<AppDynamicCommentVo> selectCommentList(AppDynamicComment appDynamicComment); public List<AppDynamicCommentVo> selectCommentList(AppDynamicComment appDynamicComment);
int deleteAppDynamicCommentByUserids();
} }

View File

@ -238,8 +238,6 @@ public class AppUserServiceImpl implements IAppUserService {
} }
} }
} }
appDynamicCommentMapper.deleteAppDynamicCommentByUserids();
return appUserMapper.deleteAppUserByIds(ids); return appUserMapper.deleteAppUserByIds(ids);
} }

View File

@ -116,11 +116,4 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id} #{id}
</foreach> </foreach>
</delete> </delete>
<delete id="deleteAppDynamicCommentByUserids">
delete from app_dynamic_comment where user_id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper> </mapper>