mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-03 09:29:59 +08:00
update 后管sim卡管理页面新增刷新功能
This commit is contained in:
@@ -125,7 +125,7 @@ public class SimCardService {
|
||||
* @param iccId
|
||||
* @return
|
||||
*/
|
||||
SimCardVO getSimCardInfoByIccId(String iccId) {
|
||||
public SimCardVO getSimCardInfoByIccId(String iccId) {
|
||||
PileSimInfo pileSimInfo = pileSimInfoService.getBasicInfoByIccId(iccId);
|
||||
// 调用官方数据接口查询最新sim卡数据
|
||||
SimCardVO simCardVO = searchOfficialWebsiteSimInfo(iccId);
|
||||
|
||||
@@ -87,4 +87,10 @@ public class SimCardInfoVO {
|
||||
@Excel(name = "剩余天数")
|
||||
private String remainingDays;
|
||||
|
||||
/**
|
||||
* 上次更新时间
|
||||
*/
|
||||
@Excel(name = "上次更新时间")
|
||||
private String lastUpdateTime;
|
||||
|
||||
}
|
||||
|
||||
@@ -166,6 +166,7 @@
|
||||
t1.total_data as totalData,
|
||||
t1.surplus_data as surplusData,
|
||||
t1.expire_time as expireTime,
|
||||
t1.update_time as lastUpdateTime,
|
||||
t1.operator
|
||||
from pile_sim_info t1
|
||||
left join pile_basic_info t2 on t1.id = t2.sim_id
|
||||
|
||||
Reference in New Issue
Block a user