|
@@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
+import lombok.Data;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
import com.ym.mec.auth.api.entity.SysUser;
|
|
@@ -19,6 +20,7 @@ import org.springframework.data.annotation.Version;
|
|
|
/**
|
|
|
* 对应数据库表(student_payment_order):
|
|
|
*/
|
|
|
+@Data
|
|
|
public class StudentPaymentOrder extends BaseEntity {
|
|
|
|
|
|
/** */
|
|
@@ -136,296 +138,5 @@ public class StudentPaymentOrder extends BaseEntity {
|
|
|
@ApiModelProperty(value = "缴费项目编号",required = true)
|
|
|
private Long calenderId;
|
|
|
|
|
|
- public Long getCalenderId() {
|
|
|
- return calenderId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCalenderId(Long calenderId) {
|
|
|
- this.calenderId = calenderId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getActivityBuyNum() {
|
|
|
- return activityBuyNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setActivityBuyNum(Integer activityBuyNum) {
|
|
|
- this.activityBuyNum = activityBuyNum;
|
|
|
- }
|
|
|
-
|
|
|
- public String getActivityId() {
|
|
|
- return activityId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setActivityId(String activityId) {
|
|
|
- this.activityId = activityId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCouponCodeId() {
|
|
|
- return couponCodeId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCouponCodeId(String couponCodeId) {
|
|
|
- this.couponCodeId = couponCodeId;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getCouponRemitFee() {
|
|
|
- return couponRemitFee;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCouponRemitFee(BigDecimal couponRemitFee) {
|
|
|
- this.couponRemitFee = couponRemitFee;
|
|
|
- }
|
|
|
-
|
|
|
- public String getReceiveStatus() {
|
|
|
- return receiveStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setReceiveStatus(String receiveStatus) {
|
|
|
- this.receiveStatus = receiveStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id){
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getId(){
|
|
|
- return this.id;
|
|
|
- }
|
|
|
-
|
|
|
- public GroupType getGroupType() {
|
|
|
- return groupType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setGroupType(GroupType groupType) {
|
|
|
- this.groupType = groupType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUserId(Integer userId){
|
|
|
- this.userId = userId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getUserId(){
|
|
|
- return this.userId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTransNo(String transNo){
|
|
|
- this.transNo = transNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTransNo(){
|
|
|
- return this.transNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMemo(String memo){
|
|
|
- this.memo = memo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMemo(){
|
|
|
- return this.memo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreateTime(java.util.Date createTime){
|
|
|
- this.createTime = createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getCreateTime(){
|
|
|
- return this.createTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUpdateTime(java.util.Date updateTime){
|
|
|
- this.updateTime = updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getUpdateTime(){
|
|
|
- return this.updateTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPaymentChannel(String paymentChannel){
|
|
|
- this.paymentChannel = paymentChannel;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPaymentChannel(){
|
|
|
- return this.paymentChannel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPaymentBusinessChannel(String paymentBusinessChannel){
|
|
|
- this.paymentBusinessChannel = paymentBusinessChannel;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPaymentBusinessChannel(){
|
|
|
- return this.paymentBusinessChannel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPaymentAccountNo(String paymentAccountNo){
|
|
|
- this.paymentAccountNo = paymentAccountNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPaymentAccountNo(){
|
|
|
- return this.paymentAccountNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrderNo(String orderNo){
|
|
|
- this.orderNo = orderNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOrderNo(){
|
|
|
- return this.orderNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMusicGroupId(String musicGroupId){
|
|
|
- this.musicGroupId = musicGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getMusicGroupId(){
|
|
|
- return this.musicGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setClassGroupId(Integer classGroupId){
|
|
|
- this.classGroupId = classGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getClassGroupId(){
|
|
|
- return this.classGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public OrderTypeEnum getType() {
|
|
|
- return type;
|
|
|
- }
|
|
|
-
|
|
|
- public void setType(OrderTypeEnum type) {
|
|
|
- this.type = type;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getExpectAmount() {
|
|
|
- return expectAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExpectAmount(BigDecimal expectAmount) {
|
|
|
- this.expectAmount = expectAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getActualAmount() {
|
|
|
- return actualAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setActualAmount(BigDecimal actualAmount) {
|
|
|
- this.actualAmount = actualAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getBalancePaymentAmount() {
|
|
|
- return balancePaymentAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBalancePaymentAmount(BigDecimal balancePaymentAmount) {
|
|
|
- this.balancePaymentAmount = balancePaymentAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public DealStatusEnum getStatus() {
|
|
|
- return status;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStatus(DealStatusEnum status) {
|
|
|
- this.status = status;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getVersion() {
|
|
|
- return version;
|
|
|
- }
|
|
|
-
|
|
|
- public void setVersion(Integer version) {
|
|
|
- this.version = version;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getPayTime() {
|
|
|
- return payTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPayTime(Date payTime) {
|
|
|
- this.payTime = payTime;
|
|
|
- }
|
|
|
- public String getMerNos() {
|
|
|
- return merNos;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMerNos(String merNos) {
|
|
|
- this.merNos = merNos;
|
|
|
- }
|
|
|
-
|
|
|
- public PaymentChannelTypeEnum getPaymentChannelType() {
|
|
|
- return paymentChannelType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPaymentChannelType(PaymentChannelTypeEnum paymentChannelType) {
|
|
|
- this.paymentChannelType = paymentChannelType;
|
|
|
- }
|
|
|
-
|
|
|
- public SysUser getUser() {
|
|
|
- return user;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUser(SysUser user) {
|
|
|
- this.user = user;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getComAmount() {
|
|
|
- return comAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setComAmount(BigDecimal comAmount) {
|
|
|
- this.comAmount = comAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getPerAmount() {
|
|
|
- return perAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPerAmount(BigDecimal perAmount) {
|
|
|
- this.perAmount = perAmount;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getOrganId() {
|
|
|
- return organId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrganId(Integer organId) {
|
|
|
- this.organId = organId;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- public BigDecimal getRemitFee() {
|
|
|
- return remitFee;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRemitFee(BigDecimal remitFee) {
|
|
|
- this.remitFee = remitFee;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getRoutingOrganId() {
|
|
|
- return routingOrganId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRoutingOrganId(Integer routingOrganId) {
|
|
|
- this.routingOrganId = routingOrganId;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return ToStringBuilder.reflectionToString(this);
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getCourseRemitFee() {
|
|
|
- return courseRemitFee;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCourseRemitFee(BigDecimal courseRemitFee) {
|
|
|
- this.courseRemitFee = courseRemitFee;
|
|
|
- }
|
|
|
-
|
|
|
- public String getBatchNo() {
|
|
|
- return batchNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBatchNo(String batchNo) {
|
|
|
- this.batchNo = batchNo;
|
|
|
- }
|
|
|
+ private Integer cooperationId;
|
|
|
}
|