package com.whyc.service;
|
|
import com.whyc.mapper.PowerAppSysMapper;
|
import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
@Service
|
public class PowerAppSysService {
|
@Resource
|
private PowerAppSysMapper mapper;
|
|
public boolean updateReInitPowerData() {
|
|
return mapper.updateReInitPowerData()>0;
|
}
|
|
public boolean updateFlag(String columnName) {
|
return mapper.updateFlag(columnName)>0;
|
}
|
}
|