update 联联

This commit is contained in:
Lemon
2023-06-06 10:54:29 +08:00
parent 91e37c0bd6
commit 8e6bf11abc
6 changed files with 177 additions and 116 deletions

View File

@@ -16,6 +16,8 @@ import lombok.NoArgsConstructor;
@NoArgsConstructor
@Builder
public class LianLianPushStationInfoDTO {
private String thirdPartyType;
/**
* 运营商id
*/

View File

@@ -3,6 +3,8 @@ package com.jsowell.pile.service.impl;
import java.util.List;
import com.jsowell.common.util.DateUtils;
import com.jsowell.common.util.SecurityUtils;
import com.jsowell.framework.web.domain.server.Sys;
import com.jsowell.pile.vo.base.StationSettingRelationVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@@ -61,7 +63,8 @@ public class StationSettingRelationServiceImpl implements IStationSettingRelatio
*/
@Override
public int insertStationSettingRelation(StationSettingRelation stationSettingRelation) {
stationSettingRelation.setCreateTime(DateUtils.getNowDate());
// stationSettingRelation.setCreateTime(DateUtils.getNowDate());
stationSettingRelation.setCreateBy(SecurityUtils.getUsername());
return stationSettingRelationMapper.insertStationSettingRelation(stationSettingRelation);
}
@@ -73,7 +76,7 @@ public class StationSettingRelationServiceImpl implements IStationSettingRelatio
*/
@Override
public int updateStationSettingRelation(StationSettingRelation stationSettingRelation) {
stationSettingRelation.setUpdateTime(DateUtils.getNowDate());
// stationSettingRelation.setUpdateTime(DateUtils.getNowDate());
return stationSettingRelationMapper.updateStationSettingRelation(stationSettingRelation);
}