getLinePayInfo
This commit is contained in:
@@ -40,9 +40,10 @@ public class LinePayServiceImpl implements LinePayService {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public LinePayVO getLinePayInfo(Long lineId) {
|
public LinePayVO getLinePayInfo(Long lineId) {
|
||||||
LinePayVO result = new LinePayVO();
|
LinePayVO result = null;
|
||||||
LinePayDO linePayDO = linePayDAO.getLinePayByLineId(lineId);
|
LinePayDO linePayDO = linePayDAO.getLinePayByLineId(lineId);
|
||||||
if (linePayDO != null){
|
if (linePayDO != null){
|
||||||
|
result = new LinePayVO();
|
||||||
BeanUtil.copyProperties(linePayDO,result);
|
BeanUtil.copyProperties(linePayDO,result);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
Reference in New Issue
Block a user