|
@@ -8,6 +8,7 @@ import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.ym.mec.biz.dal.enums.DealStatusEnum;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
@@ -19,6 +20,7 @@ import java.util.Date;
|
|
|
* @author hgw
|
|
|
* @since 2021-12-20 10:08:28
|
|
|
*/
|
|
|
+@Data
|
|
|
@ApiModel(value = "tenant_order_record-机构付款记录表")
|
|
|
public class TenantOrderRecord implements Serializable {
|
|
|
@TableId(value = "id_", type = IdType.AUTO)
|
|
@@ -80,6 +82,10 @@ public class TenantOrderRecord implements Serializable {
|
|
|
@ApiModelProperty(value = "订单创建时间")
|
|
|
private Date createdTime;
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否发送激活短信")
|
|
|
+ @TableField("send_sms_flag_")
|
|
|
+ private Boolean sendSmsFlag;
|
|
|
+
|
|
|
public DealStatusEnum getEnumOrderState() {
|
|
|
switch (orderState) {
|
|
|
case 0:
|
|
@@ -93,118 +99,5 @@ public class TenantOrderRecord implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- public Integer getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Integer id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getTenantId() {
|
|
|
- return tenantId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTenantId(Integer tenantId) {
|
|
|
- this.tenantId = tenantId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOrderNo() {
|
|
|
- return orderNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrderNo(String orderNo) {
|
|
|
- this.orderNo = orderNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getTransNo() {
|
|
|
- return transNo;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTransNo(String transNo) {
|
|
|
- this.transNo = transNo;
|
|
|
- }
|
|
|
-
|
|
|
- public String getOrderType() {
|
|
|
- return orderType;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrderType(String orderType) {
|
|
|
- this.orderType = orderType;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPaymentChannel() {
|
|
|
- return paymentChannel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPaymentChannel(String paymentChannel) {
|
|
|
- this.paymentChannel = paymentChannel;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPayChannel() {
|
|
|
- return payChannel;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPayChannel(String payChannel) {
|
|
|
- this.payChannel = payChannel;
|
|
|
- }
|
|
|
-
|
|
|
- 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 String getMerNos() {
|
|
|
- return merNos;
|
|
|
- }
|
|
|
-
|
|
|
- public void setMerNos(String merNos) {
|
|
|
- this.merNos = merNos;
|
|
|
- }
|
|
|
-
|
|
|
- public Integer getOrderState() {
|
|
|
- return orderState;
|
|
|
- }
|
|
|
-
|
|
|
- public void setOrderState(Integer orderState) {
|
|
|
- this.orderState = orderState;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getPayDate() {
|
|
|
- return payDate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPayDate(Date payDate) {
|
|
|
- this.payDate = payDate;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getPayTime() {
|
|
|
- return payTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPayTime(Date payTime) {
|
|
|
- this.payTime = payTime;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getCreatedTime() {
|
|
|
- return createdTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCreatedTime(Date createdTime) {
|
|
|
- this.createdTime = createdTime;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|