package kr.wisestone.owl.web.form;
|
|
import kr.wisestone.owl.util.ConvertUtil;
|
import java.util.Map;
|
|
/**
|
* Created by wisestone on 2018-02-13.
|
*/
|
public class PaymentForm {
|
private Long id;
|
private Long workspaceId;
|
private Integer buyUser;
|
private String type;
|
private String cardNumber1;
|
private String cardNumber2;
|
private String cardNumber3;
|
private String cardNumber4;
|
private String expireYear;
|
private String expireMonth;
|
private String birth;
|
private String cardPwd;
|
private String merchantUid;
|
private String customerUid;
|
private String paymentMethod;
|
private Integer paymentAmount;
|
|
private String reservationDisableUserIds; // 비활성화 예정 사용자 아이디
|
|
public PaymentForm() {
|
}
|
|
public static PaymentForm make(Map<String, Object> params) {
|
return ConvertUtil.convertMapToClass(params, PaymentForm.class);
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getWorkspaceId() {
|
return workspaceId;
|
}
|
|
public void setWorkspaceId(Long workspaceId) {
|
this.workspaceId = workspaceId;
|
}
|
|
public Integer getBuyUser() {
|
return buyUser;
|
}
|
|
public void setBuyUser(Integer buyUser) {
|
this.buyUser = buyUser;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getCardNumber1() {
|
return cardNumber1;
|
}
|
|
public void setCardNumber1(String cardNumber1) {
|
this.cardNumber1 = cardNumber1;
|
}
|
|
public String getCardNumber2() {
|
return cardNumber2;
|
}
|
|
public void setCardNumber2(String cardNumber2) {
|
this.cardNumber2 = cardNumber2;
|
}
|
|
public String getCardNumber3() {
|
return cardNumber3;
|
}
|
|
public void setCardNumber3(String cardNumber3) {
|
this.cardNumber3 = cardNumber3;
|
}
|
|
public String getCardNumber4() {
|
return cardNumber4;
|
}
|
|
public void setCardNumber4(String cardNumber4) {
|
this.cardNumber4 = cardNumber4;
|
}
|
|
public String getExpireYear() {
|
return expireYear;
|
}
|
|
public void setExpireYear(String expireYear) {
|
this.expireYear = expireYear;
|
}
|
|
public String getExpireMonth() {
|
return expireMonth;
|
}
|
|
public void setExpireMonth(String expireMonth) {
|
this.expireMonth = expireMonth;
|
}
|
|
public String getBirth() {
|
return birth;
|
}
|
|
public void setBirth(String birth) {
|
this.birth = birth;
|
}
|
|
public String getCardPwd() {
|
return cardPwd;
|
}
|
|
public void setCardPwd(String cardPwd) {
|
this.cardPwd = cardPwd;
|
}
|
|
public String getMerchantUid() {
|
return merchantUid;
|
}
|
|
public void setMerchantUid(String merchantUid) {
|
this.merchantUid = merchantUid;
|
}
|
|
public String getCustomerUid() {
|
return customerUid;
|
}
|
|
public void setCustomerUid(String customerUid) {
|
this.customerUid = customerUid;
|
}
|
|
public String getPaymentMethod() {
|
return paymentMethod;
|
}
|
|
public void setPaymentMethod(String paymentMethod) {
|
this.paymentMethod = paymentMethod;
|
}
|
|
public Integer getPaymentAmount() {
|
return paymentAmount;
|
}
|
|
public void setPaymentAmount(Integer paymentAmount) {
|
this.paymentAmount = paymentAmount;
|
}
|
|
public String getReservationDisableUserIds() {
|
return reservationDisableUserIds;
|
}
|
|
public void setReservationDisableUserIds(String reservationDisableUserIds) {
|
this.reservationDisableUserIds = reservationDisableUserIds;
|
}
|
}
|