fix
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import com.cool.store.entity.LinePayDO;
|
||||
import com.cool.store.enums.ClaimStatusEnum;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
@@ -85,8 +86,10 @@ public class LinePaySubmitRequest {
|
||||
LinePayDO linePayDO = new LinePayDO();
|
||||
linePayDO.setId(request.getId());
|
||||
linePayDO.setPartnerId(request.getPartnerId());
|
||||
linePayDO.setShopId(request.getShopId());
|
||||
linePayDO.setLineId(request.getLineId());
|
||||
linePayDO.setPayStatus(PAY_DEPOSIT_50.getCode());
|
||||
linePayDO.setXgjClaimStatus(ClaimStatusEnum.TO_BE_CLAIMED.getCode());
|
||||
linePayDO.setPayType(request.getPayType());
|
||||
linePayDO.setPayUserName(request.getPayUserName());
|
||||
linePayDO.setPayAccount(request.getPayAccount());
|
||||
@@ -101,6 +104,7 @@ public class LinePaySubmitRequest {
|
||||
}
|
||||
linePayDO.setPayPic(request.getPayPic());
|
||||
linePayDO.setPaySerialNumber(request.getPaySerialNumber());
|
||||
linePayDO.setAmount(request.getAmount());
|
||||
linePayDO.setPayBusinessType(request.getPayBusinessType());
|
||||
linePayDO.setRemark(request.getRemark());
|
||||
return linePayDO;
|
||||
|
||||
Reference in New Issue
Block a user