From 65aaf1c05bd06cefa82ebc40cc3e01cf4ac233c0 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期六, 27 七月 2024 13:52:08 +0800 Subject: [PATCH] 代理新功能完善 --- src/main/java/com/taoke/autopay/entity/KeyOrder.java | 126 ++++------------------------------------- 1 files changed, 14 insertions(+), 112 deletions(-) diff --git a/src/main/java/com/taoke/autopay/entity/KeyOrder.java b/src/main/java/com/taoke/autopay/entity/KeyOrder.java index b041105..0f1a0de 100644 --- a/src/main/java/com/taoke/autopay/entity/KeyOrder.java +++ b/src/main/java/com/taoke/autopay/entity/KeyOrder.java @@ -1,9 +1,11 @@ package com.taoke.autopay.entity; +import lombok.Data; import org.springframework.data.annotation.Id; import org.yeshi.utils.generater.mybatis.Column; import org.yeshi.utils.generater.mybatis.Table; +import java.math.BigDecimal; import java.util.Date; /** @@ -12,6 +14,7 @@ * @description: TODO * @date 2024/6/14 18:58 */ +@Data @Table("table_order") public class KeyOrder { // 灏氭湭澶勭悊 @@ -53,116 +56,15 @@ private Date excutePayTime; @Column(name = "pay_time") private Date payTime; - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public String getKey() { - return key; - } - - public void setKey(String key) { - this.key = key; - } - - public Integer getOrderType() { - return orderType; - } - - public void setOrderType(Integer orderType) { - this.orderType = orderType; - } - - public String getOrderNo() { - return orderNo; - } - - public void setOrderNo(String orderNo) { - this.orderNo = orderNo; - } - - public Integer getOrderState() { - return orderState; - } - - public void setOrderState(Integer orderState) { - this.orderState = orderState; - } - - public Integer getState() { - return state; - } - - public void setState(Integer state) { - this.state = state; - } - - public String getStateDesc() { - return stateDesc; - } - - public void setStateDesc(String stateDesc) { - this.stateDesc = stateDesc; - } - - public Long getDistributeClientUid() { - return distributeClientUid; - } - - public void setDistributeClientUid(Long distributeClientUid) { - this.distributeClientUid = distributeClientUid; - } - - public Date getDistributeTime() { - return distributeTime; - } - - public void setDistributeTime(Date distributeTime) { - this.distributeTime = distributeTime; - } - - public Date getCreateTime() { - return createTime; - } - - public void setCreateTime(Date createTime) { - this.createTime = createTime; - } - - public Date getUpdateTime() { - return updateTime; - } - - public void setUpdateTime(Date updateTime) { - this.updateTime = updateTime; - } - - public Long getUid() { - return uid; - } - - public void setUid(Long uid) { - this.uid = uid; - } - - public Date getExcutePayTime() { - return excutePayTime; - } - - public void setExcutePayTime(Date excutePayTime) { - this.excutePayTime = excutePayTime; - } - - public Date getPayTime() { - return payTime; - } - - public void setPayTime(Date payTime) { - this.payTime = payTime; - } + @Column(name = "order_money") + private BigDecimal orderMoney; + @Column(name = "order_channel") + private String orderChannel; + @Column(name = "pay_type") + private Integer payType; + /** + * 浠g悊ID + **/ + @Column(name = "agent_id") + private Long agentId; } -- Gitblit v1.8.0