getLinePayInfo

This commit is contained in:
wangxiaopeng
2024-04-02 18:36:25 +08:00
parent 2695d2a3e2
commit b3385ab015

View File

@@ -40,9 +40,10 @@ public class LinePayServiceImpl implements LinePayService {
@Override
public LinePayVO getLinePayInfo(Long lineId) {
LinePayVO result = new LinePayVO();
LinePayVO result = null;
LinePayDO linePayDO = linePayDAO.getLinePayByLineId(lineId);
if (linePayDO != null){
result = new LinePayVO();
BeanUtil.copyProperties(linePayDO,result);
}
return result;