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/dc213af076dffaf8a959e463947320c8ccb7ed9e?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
19 additions and
1 deletions
@ -276,7 +276,7 @@ public class SysPropertynumController extends BaseController {
tdPropertManager . setMinDayTime ( minDayTime ) ;
tdPropertManager . setMinDayTime ( minDayTime ) ;
tdPropertManager . setMaxDayTime ( maxDayTime ) ;
tdPropertManager . setMaxDayTime ( maxDayTime ) ;
tdPropertManager . setSecretsType ( "1" ) ;
tdPropertManager . setSecretsType ( "1" ) ;
Integer countWx = tdPropertyManagerService . countMessage Month( tdPropertManager ) ;
Integer countWx = tdPropertyManagerService . countMessage Wx Month( tdPropertManager ) ;
if ( Objects . isNull ( countWx ) ) {
if ( Objects . isNull ( countWx ) ) {
countWx = 0 ;
countWx = 0 ;
}
}
@ -71,4 +71,6 @@ public interface TdPropertyManagerMapper extends BaseMapper<TdPropertyManager>
public Integer countSecretsMonth ( PropertyManagerDTO propertyManagerDTO ) ;
public Integer countSecretsMonth ( PropertyManagerDTO propertyManagerDTO ) ;
public Integer countDestoryMonth ( PropertyManagerDTO propertyManagerDTO ) ;
public Integer countDestoryMonth ( PropertyManagerDTO propertyManagerDTO ) ;
public Integer countMessageWxMonth ( PropertyManagerDTO propertyManagerDTO ) ;
}
}
@ -73,4 +73,7 @@ public interface ITdPropertyManagerService extends IService<TdPropertyManager>
public Integer countDestoryMonth ( PropertyManagerDTO propertyManagerDTO ) ;
public Integer countDestoryMonth ( PropertyManagerDTO propertyManagerDTO ) ;
public Integer countMessageWxMonth ( PropertyManagerDTO propertyManagerDTO ) ;
}
}
@ -113,4 +113,9 @@ public class TdPropertyManagerServiceImpl extends ServiceImpl<TdPropertyManagerM
public Integer countDestoryMonth ( PropertyManagerDTO propertyManagerDTO ) {
public Integer countDestoryMonth ( PropertyManagerDTO propertyManagerDTO ) {
return tdPropertyManagerMapper . countDestoryMonth ( propertyManagerDTO ) ;
return tdPropertyManagerMapper . countDestoryMonth ( propertyManagerDTO ) ;
}
}
@Override
public Integer countMessageWxMonth ( PropertyManagerDTO propertyManagerDTO ) {
return tdPropertyManagerMapper . countMessageWxMonth ( propertyManagerDTO ) ;
}
}
}
@ -133,4 +133,12 @@
and d.destory_state =#{destoryState}
and d.destory_state =#{destoryState}
</select>
</select>
<select id= "countMessageWxMonth" resultType= "java.lang.Integer" parameterType= "PropertyManagerDTO" >
SELECT COUNT(t.*) from td_property_manager t RIGHT JOIN td_property_info d
on t.use_id = d.use_id where t.secrets_type=#{secretsType}
AND t.recover_date > = #{minDayTime}
AND t.recover_date < = #{maxDayTime}
and d.destory_state is null
</select>
</mapper>
</mapper>