From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 25 二月 2025 16:41:22 +0800 Subject: [PATCH] 淘宝转链接口更新 --- fanli/src/main/java/com/yeshi/fanli/dto/money/AccountDetails.java | 206 ++++++++++++++++++++++++--------------------------- 1 files changed, 98 insertions(+), 108 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/money/AccountDetails.java b/fanli/src/main/java/com/yeshi/fanli/dto/money/AccountDetails.java index 55ff556..cd70066 100644 --- a/fanli/src/main/java/com/yeshi/fanli/dto/money/AccountDetails.java +++ b/fanli/src/main/java/com/yeshi/fanli/dto/money/AccountDetails.java @@ -1,109 +1,99 @@ -package com.yeshi.fanli.dto.money; - -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.JoinColumn; -import javax.persistence.ManyToOne; -import javax.persistence.Transient; - -import org.yeshi.utils.mybatis.Column; - -import com.google.gson.annotations.Expose; -import com.yeshi.fanli.entity.bus.user.Extract; -import com.yeshi.fanli.entity.bus.user.OrderItem; -import com.yeshi.fanli.entity.bus.user.UserInfo; - -public class AccountDetails { - - public AccountDetails(Long id) { - this.id = id; - } - - public AccountDetails() { - } - - private Long id; - - private UserInfo userInfo; - - private Integer type; - - @Expose - private String money; - - @Expose - private String title; - - private Extract extract; - - @Expose - private String createTime; - - private Integer state; - - public Integer getState() { - return state; - } - - public void setState(Integer state) { - this.state = state; - } - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public UserInfo getUserInfo() { - return userInfo; - } - - public void setUserInfo(UserInfo userInfo) { - this.userInfo = userInfo; - } - - public Integer getType() { - return type; - } - - public void setType(Integer type) { - this.type = type; - } - - public String getMoney() { - return money; - } - - public void setMoney(String money) { - this.money = money; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public Extract getExtract() { - return extract; - } - - public void setExtract(Extract extract) { - this.extract = extract; - } - - public String getCreateTime() { - return createTime; - } - - public void setCreateTime(String createTime) { - this.createTime = createTime; - } - +package com.yeshi.fanli.dto.money; + +import com.google.gson.annotations.Expose; +import com.yeshi.fanli.entity.bus.user.Extract; +import com.yeshi.fanli.entity.bus.user.UserInfo; + +public class AccountDetails { + + public AccountDetails(Long id) { + this.id = id; + } + + public AccountDetails() { + } + + private Long id; + + private UserInfo userInfo; + + private Integer type; + + @Expose + private String money; + + @Expose + private String title; + + private Extract extract; + + @Expose + private String createTime; + + private Integer state; + + public Integer getState() { + return state; + } + + public void setState(Integer state) { + this.state = state; + } + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public UserInfo getUserInfo() { + return userInfo; + } + + public void setUserInfo(UserInfo userInfo) { + this.userInfo = userInfo; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getMoney() { + return money; + } + + public void setMoney(String money) { + this.money = money; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public Extract getExtract() { + return extract; + } + + public void setExtract(Extract extract) { + this.extract = extract; + } + + public String getCreateTime() { + return createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + } \ No newline at end of file -- Gitblit v1.8.0