From 01b3fecb2d1b03861a72d53a7afea6ca557a209c Mon Sep 17 00:00:00 2001
From: zyy <zyy@email.com>
Date: Thu, 02 Apr 2026 15:02:41 +0800
Subject: [PATCH] 1
---
src/main/java/com/nq/pojo/UserStockSubscribe.java | 194 +++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 188 insertions(+), 6 deletions(-)
diff --git a/src/main/java/com/nq/pojo/UserStockSubscribe.java b/src/main/java/com/nq/pojo/UserStockSubscribe.java
index 71a20cc..b0c2b57 100644
--- a/src/main/java/com/nq/pojo/UserStockSubscribe.java
+++ b/src/main/java/com/nq/pojo/UserStockSubscribe.java
@@ -2,8 +2,11 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.AllArgsConstructor;
import lombok.Data;
+import lombok.NoArgsConstructor;
import java.io.Serializable;
import java.math.BigDecimal;
@@ -18,6 +21,9 @@
* @Date: 2022/10/25
*/
@Data
+@AllArgsConstructor
+@NoArgsConstructor
+@TableName(value ="user_stock_subscribe")
public class UserStockSubscribe implements Serializable {
private static final long serialVersionUID = 1L;
@@ -57,6 +63,11 @@
private String agentName;
/**
+ * 新股id
+ */
+ private Integer newStockId;
+
+ /**
* 申购股票代码
*/
private String newCode;
@@ -88,37 +99,208 @@
private Integer type;
/**
* 申购状态
- *状态:1、已申购,2、未中签,3、已中签,4、已缴纳 5.已转持仓
+ *状态:1、已申购,2、未中签,3、已中签,4、已缴纳 5.已转持仓 6.已上市
*/
private Integer status;
/**
* 添加时间
*/
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="Asia/Tokyo")
private Date addTime;
/**
* 提交时间
*/
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="Asia/Tokyo")
private Date submitTime;
/**
* 中签审核时间
*/
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="Asia/Tokyo")
private Date endTime;
/**
* 双融确定时间
*/
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="Asia/Tokyo")
private Date fixTime;
/**
* 备注
*/
private String remarks;
- public UserStockSubscribe() {
+
+
+ private BigDecimal dbMoney;
+
+ public Integer getId() {
+ return id;
}
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getOrderNo() {
+ return orderNo;
+ }
+
+ public void setOrderNo(String orderNo) {
+ this.orderNo = orderNo;
+ }
+
+ public Integer getUserId() {
+ return userId;
+ }
+
+ public void setUserId(Integer userId) {
+ this.userId = userId;
+ }
+
+ public String getRealName() {
+ return realName;
+ }
+
+ public void setRealName(String realName) {
+ this.realName = realName;
+ }
+
+ public String getPhone() {
+ return phone;
+ }
+
+ public void setPhone(String phone) {
+ this.phone = phone;
+ }
+
+ public Integer getAgentId() {
+ return agentId;
+ }
+
+ public void setAgentId(Integer agentId) {
+ this.agentId = agentId;
+ }
+
+ public String getAgentName() {
+ return agentName;
+ }
+
+ public void setAgentName(String agentName) {
+ this.agentName = agentName;
+ }
+
+ public String getNewCode() {
+ return newCode;
+ }
+
+ public void setNewCode(String newCode) {
+ this.newCode = newCode;
+ }
+
+ public String getNewName() {
+ return newName;
+ }
+
+ public void setNewName(String newName) {
+ this.newName = newName;
+ }
+
+ public BigDecimal getBond() {
+ return bond;
+ }
+
+ public void setBond(BigDecimal bond) {
+ this.bond = bond;
+ }
+
+ public BigDecimal getBuyPrice() {
+ return buyPrice;
+ }
+
+ public void setBuyPrice(BigDecimal buyPrice) {
+ this.buyPrice = buyPrice;
+ }
+
+ public Integer getApplyNums() {
+ return applyNums;
+ }
+
+ public void setApplyNums(Integer applyNums) {
+ this.applyNums = applyNums;
+ }
+
+ public Integer getApplyNumber() {
+ return applyNumber;
+ }
+
+ public void setApplyNumber(Integer applyNumber) {
+ this.applyNumber = applyNumber;
+ }
+
+ public Integer getType() {
+ return type;
+ }
+
+ public void setType(Integer type) {
+ this.type = type;
+ }
+
+ public Integer getStatus() {
+ return status;
+ }
+
+ public void setStatus(Integer status) {
+ this.status = status;
+ }
+
+ public Date getAddTime() {
+ return addTime;
+ }
+
+ public void setAddTime(Date addTime) {
+ this.addTime = addTime;
+ }
+
+ public Date getSubmitTime() {
+ return submitTime;
+ }
+
+ public void setSubmitTime(Date submitTime) {
+ this.submitTime = submitTime;
+ }
+
+ public Date getEndTime() {
+ return endTime;
+ }
+
+ public void setEndTime(Date endTime) {
+ this.endTime = endTime;
+ }
+
+ public Date getFixTime() {
+ return fixTime;
+ }
+
+ public void setFixTime(Date fixTime) {
+ this.fixTime = fixTime;
+ }
+
+ public String getRemarks() {
+ return remarks;
+ }
+
+ public void setRemarks(String remarks) {
+ this.remarks = remarks;
+ }
+
+ public BigDecimal getDbMoney() {
+ return dbMoney;
+ }
+
+ public void setDbMoney(BigDecimal dbMoney) {
+ this.dbMoney = dbMoney;
+ }
+
+
+
}
--
Gitblit v1.9.3