新增退款用户,

代码格式化
This commit is contained in:
egzosn
2020-05-17 22:43:40 +08:00
parent c153f73624
commit c84182cf44
4 changed files with 15 additions and 4 deletions

View File

@@ -14,7 +14,6 @@ import org.apache.commons.logging.LogFactory;
import java.awt.image.BufferedImage;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.math.BigDecimal;
import java.util.*;
/**

View File

@@ -5,7 +5,7 @@ import java.util.Date;
/**
* 退款订单信息
* @author: egan
* @author egan
* <pre>
* email egzosn@gmail.com
* date 2018/1/15 21:40
@@ -46,6 +46,10 @@ public class RefundOrder {
* 退款说明
*/
private String description;
/**
* 退款用户
*/
private String userId;
public String getRefundNo() {
return refundNo;
@@ -111,6 +115,14 @@ public class RefundOrder {
this.description = description;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public RefundOrder() {
}