提交修改
This commit is contained in:
parent
32807fd8bb
commit
b8ac0e99ba
@ -1,180 +1,75 @@
|
|||||||
package com.heyu.api.data.entity.vv;
|
package com.heyu.api.data.entity.vv;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
import com.lz.mybatis.plugin.annotations.AS;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.util.Date;
|
import java.util.Date;import java.util.Date;
|
||||||
/**
|
/**
|
||||||
*结算
|
*结算
|
||||||
* @author quyixiao
|
* @author quyixiao
|
||||||
* @since 2025-11-10
|
* @since 2025-11-23
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@TableName("vv_my_settlement")
|
@TableName("vv_my_settlement")
|
||||||
public class VvMySettlementEntity implements java.io.Serializable {
|
public class VvMySettlementEntity implements java.io.Serializable {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
public final static String CLASS_NAME ="com.heyu.api.data.entity.vv.VvMySettlementEntity:";
|
public final static String CLASS_NAME ="com.heyu.api.data.entity.vv.VvMySettlementEntity:";
|
||||||
|
|
||||||
public final static String all = CLASS_NAME + "*";
|
public final static String all = CLASS_NAME + "*";
|
||||||
public final static String amount_ = CLASS_NAME + "amount"; // 金额
|
|
||||||
public final static String apply_reason = CLASS_NAME + "apply_reason"; // 原因
|
|
||||||
public final static String apply_user_name = CLASS_NAME + "apply_user_name"; // 谁结算的
|
|
||||||
public final static String approval_user_name = CLASS_NAME + "approval_user_name"; // 审批用户名
|
|
||||||
public final static String create_time = CLASS_NAME + "create_time"; // 创建时间
|
|
||||||
public final static String create_timestamp = CLASS_NAME + "create_timestamp"; // 创建时间
|
|
||||||
public final static String features_ = CLASS_NAME + "features"; // 特点
|
|
||||||
public final static String id_ = CLASS_NAME + "id"; //
|
public final static String id_ = CLASS_NAME + "id"; //
|
||||||
public final static String is_delete = CLASS_NAME + "is_delete"; // 是否删除:0 否 1 删除
|
public final static String is_delete = CLASS_NAME + "is_delete"; // 是否删除:0 否 1 删除
|
||||||
|
public final static String create_time = CLASS_NAME + "create_time"; // 创建时间
|
||||||
public final static String modify_time = CLASS_NAME + "modify_time"; // 修改时间
|
public final static String modify_time = CLASS_NAME + "modify_time"; // 修改时间
|
||||||
|
public final static String create_timestamp = CLASS_NAME + "create_timestamp"; // 创建时间
|
||||||
public final static String modify_timestamp = CLASS_NAME + "modify_timestamp"; // 修改时间
|
public final static String modify_timestamp = CLASS_NAME + "modify_timestamp"; // 修改时间
|
||||||
|
public final static String apply_user_name = CLASS_NAME + "apply_user_name"; // 谁结算的
|
||||||
public final static String operate_ = CLASS_NAME + "operate"; // 操作 + ,-
|
public final static String operate_ = CLASS_NAME + "operate"; // 操作 + ,-
|
||||||
public final static String reject_reason = CLASS_NAME + "reject_reason"; // 拒绝原因
|
public final static String amount_ = CLASS_NAME + "amount"; // 金额
|
||||||
public final static String remain_amount = CLASS_NAME + "remain_amount"; // 剩下金额
|
public final static String features_ = CLASS_NAME + "features"; // 特点
|
||||||
public final static String status_ = CLASS_NAME + "status"; // apply_for_approval:申请审批,agree_approval: 同意审批 ,reject_approval:拒绝审批
|
public final static String status_ = CLASS_NAME + "status"; // apply_for_approval:申请审批,agree_approval: 同意审批 ,reject_approval:拒绝审批
|
||||||
|
public final static String remain_amount = CLASS_NAME + "remain_amount"; // 剩下金额
|
||||||
public final static String type_ = CLASS_NAME + "type"; // common,公款
|
public final static String type_ = CLASS_NAME + "type"; // common,公款
|
||||||
//金额
|
public final static String apply_reason = CLASS_NAME + "apply_reason"; // 原因
|
||||||
@TableId(value = "amount", type = IdType.AUTO)
|
public final static String reject_reason = CLASS_NAME + "reject_reason"; // 拒绝原因
|
||||||
private BigDecimal amount;
|
public final static String approval_user_name = CLASS_NAME + "approval_user_name"; // 审批用户名
|
||||||
//原因
|
|
||||||
private String applyReason;
|
|
||||||
//谁结算的
|
|
||||||
private String applyUserName;
|
|
||||||
//审批用户名
|
|
||||||
private String approvalUserName;
|
|
||||||
//创建时间
|
|
||||||
private Date createTime;
|
|
||||||
//创建时间
|
|
||||||
private Long createTimestamp;
|
|
||||||
//特点
|
|
||||||
private String features;
|
|
||||||
//
|
//
|
||||||
|
@TableId(value = "id", type = IdType.AUTO)
|
||||||
private Long id;
|
private Long id;
|
||||||
//是否删除:0 否 1 删除
|
//是否删除:0 否 1 删除
|
||||||
private Integer isDelete;
|
private Integer isDelete;
|
||||||
|
//创建时间
|
||||||
|
private Date createTime;
|
||||||
//修改时间
|
//修改时间
|
||||||
private Date modifyTime;
|
private Date modifyTime;
|
||||||
|
//创建时间
|
||||||
|
private Long createTimestamp;
|
||||||
//修改时间
|
//修改时间
|
||||||
private Long modifyTimestamp;
|
private Long modifyTimestamp;
|
||||||
|
//谁结算的
|
||||||
|
private String applyUserName;
|
||||||
//操作 + ,-
|
//操作 + ,-
|
||||||
private String operate;
|
private String operate;
|
||||||
//拒绝原因
|
//金额
|
||||||
private String rejectReason;
|
private BigDecimal amount;
|
||||||
//剩下金额
|
//特点
|
||||||
private BigDecimal remainAmount;
|
private String features;
|
||||||
//apply_for_approval:申请审批,agree_approval: 同意审批 ,reject_approval:拒绝审批
|
//apply_for_approval:申请审批,agree_approval: 同意审批 ,reject_approval:拒绝审批
|
||||||
private String status;
|
private String status;
|
||||||
|
//剩下金额
|
||||||
|
private BigDecimal remainAmount;
|
||||||
//common,公款
|
//common,公款
|
||||||
private String type;
|
private String type;
|
||||||
/**
|
//原因
|
||||||
* 金额
|
private String applyReason;
|
||||||
* @return
|
//拒绝原因
|
||||||
*/
|
private String rejectReason;
|
||||||
public BigDecimal getAmount() {
|
//审批用户名
|
||||||
return amount;
|
private String approvalUserName;
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 金额
|
|
||||||
* @param amount
|
|
||||||
*/
|
|
||||||
public void setAmount(BigDecimal amount) {
|
|
||||||
this.amount = amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 原因
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public String getApplyReason() {
|
|
||||||
return applyReason;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 原因
|
|
||||||
* @param applyReason
|
|
||||||
*/
|
|
||||||
public void setApplyReason(String applyReason) {
|
|
||||||
this.applyReason = applyReason;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 谁结算的
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public String getApplyUserName() {
|
|
||||||
return applyUserName;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 谁结算的
|
|
||||||
* @param applyUserName
|
|
||||||
*/
|
|
||||||
public void setApplyUserName(String applyUserName) {
|
|
||||||
this.applyUserName = applyUserName;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 审批用户名
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public String getApprovalUserName() {
|
|
||||||
return approvalUserName;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 审批用户名
|
|
||||||
* @param approvalUserName
|
|
||||||
*/
|
|
||||||
public void setApprovalUserName(String approvalUserName) {
|
|
||||||
this.approvalUserName = approvalUserName;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建时间
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public Date getCreateTime() {
|
|
||||||
return createTime;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 创建时间
|
|
||||||
* @param createTime
|
|
||||||
*/
|
|
||||||
public void setCreateTime(Date createTime) {
|
|
||||||
this.createTime = createTime;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 创建时间
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public Long getCreateTimestamp() {
|
|
||||||
return createTimestamp;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 创建时间
|
|
||||||
* @param createTimestamp
|
|
||||||
*/
|
|
||||||
public void setCreateTimestamp(Long createTimestamp) {
|
|
||||||
this.createTimestamp = createTimestamp;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 特点
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public String getFeatures() {
|
|
||||||
return features;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* 特点
|
|
||||||
* @param features
|
|
||||||
*/
|
|
||||||
public void setFeatures(String features) {
|
|
||||||
this.features = features;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
@ -205,6 +100,21 @@ private static final long serialVersionUID = 1L;
|
|||||||
this.isDelete = isDelete;
|
this.isDelete = isDelete;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public Date getCreateTime() {
|
||||||
|
return createTime;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
* @param createTime
|
||||||
|
*/
|
||||||
|
public void setCreateTime(Date createTime) {
|
||||||
|
this.createTime = createTime;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改时间
|
* 修改时间
|
||||||
* @return
|
* @return
|
||||||
@ -220,6 +130,21 @@ private static final long serialVersionUID = 1L;
|
|||||||
this.modifyTime = modifyTime;
|
this.modifyTime = modifyTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public Long getCreateTimestamp() {
|
||||||
|
return createTimestamp;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
* @param createTimestamp
|
||||||
|
*/
|
||||||
|
public void setCreateTimestamp(Long createTimestamp) {
|
||||||
|
this.createTimestamp = createTimestamp;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改时间
|
* 修改时间
|
||||||
* @return
|
* @return
|
||||||
@ -235,6 +160,21 @@ private static final long serialVersionUID = 1L;
|
|||||||
this.modifyTimestamp = modifyTimestamp;
|
this.modifyTimestamp = modifyTimestamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 谁结算的
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public String getApplyUserName() {
|
||||||
|
return applyUserName;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 谁结算的
|
||||||
|
* @param applyUserName
|
||||||
|
*/
|
||||||
|
public void setApplyUserName(String applyUserName) {
|
||||||
|
this.applyUserName = applyUserName;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 操作 + ,-
|
* 操作 + ,-
|
||||||
* @return
|
* @return
|
||||||
@ -251,33 +191,33 @@ private static final long serialVersionUID = 1L;
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 拒绝原因
|
* 金额
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public String getRejectReason() {
|
public BigDecimal getAmount() {
|
||||||
return rejectReason;
|
return amount;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 拒绝原因
|
* 金额
|
||||||
* @param rejectReason
|
* @param amount
|
||||||
*/
|
*/
|
||||||
public void setRejectReason(String rejectReason) {
|
public void setAmount(BigDecimal amount) {
|
||||||
this.rejectReason = rejectReason;
|
this.amount = amount;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 剩下金额
|
* 特点
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public BigDecimal getRemainAmount() {
|
public String getFeatures() {
|
||||||
return remainAmount;
|
return features;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 剩下金额
|
* 特点
|
||||||
* @param remainAmount
|
* @param features
|
||||||
*/
|
*/
|
||||||
public void setRemainAmount(BigDecimal remainAmount) {
|
public void setFeatures(String features) {
|
||||||
this.remainAmount = remainAmount;
|
this.features = features;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -295,6 +235,21 @@ private static final long serialVersionUID = 1L;
|
|||||||
this.status = status;
|
this.status = status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 剩下金额
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public BigDecimal getRemainAmount() {
|
||||||
|
return remainAmount;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 剩下金额
|
||||||
|
* @param remainAmount
|
||||||
|
*/
|
||||||
|
public void setRemainAmount(BigDecimal remainAmount) {
|
||||||
|
this.remainAmount = remainAmount;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* common,公款
|
* common,公款
|
||||||
* @return
|
* @return
|
||||||
@ -310,25 +265,70 @@ private static final long serialVersionUID = 1L;
|
|||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 原因
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public String getApplyReason() {
|
||||||
|
return applyReason;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 原因
|
||||||
|
* @param applyReason
|
||||||
|
*/
|
||||||
|
public void setApplyReason(String applyReason) {
|
||||||
|
this.applyReason = applyReason;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 拒绝原因
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public String getRejectReason() {
|
||||||
|
return rejectReason;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 拒绝原因
|
||||||
|
* @param rejectReason
|
||||||
|
*/
|
||||||
|
public void setRejectReason(String rejectReason) {
|
||||||
|
this.rejectReason = rejectReason;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 审批用户名
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public String getApprovalUserName() {
|
||||||
|
return approvalUserName;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 审批用户名
|
||||||
|
* @param approvalUserName
|
||||||
|
*/
|
||||||
|
public void setApprovalUserName(String approvalUserName) {
|
||||||
|
this.approvalUserName = approvalUserName;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "VvMySettlementEntity{" +
|
return "VvMySettlementEntity{" +
|
||||||
",amount=" + amount +
|
|
||||||
",applyReason=" + applyReason +
|
|
||||||
",applyUserName=" + applyUserName +
|
|
||||||
",approvalUserName=" + approvalUserName +
|
|
||||||
",createTime=" + createTime +
|
|
||||||
",createTimestamp=" + createTimestamp +
|
|
||||||
",features=" + features +
|
|
||||||
",id=" + id +
|
",id=" + id +
|
||||||
",isDelete=" + isDelete +
|
",isDelete=" + isDelete +
|
||||||
|
",createTime=" + createTime +
|
||||||
",modifyTime=" + modifyTime +
|
",modifyTime=" + modifyTime +
|
||||||
|
",createTimestamp=" + createTimestamp +
|
||||||
",modifyTimestamp=" + modifyTimestamp +
|
",modifyTimestamp=" + modifyTimestamp +
|
||||||
|
",applyUserName=" + applyUserName +
|
||||||
",operate=" + operate +
|
",operate=" + operate +
|
||||||
",rejectReason=" + rejectReason +
|
",amount=" + amount +
|
||||||
",remainAmount=" + remainAmount +
|
",features=" + features +
|
||||||
",status=" + status +
|
",status=" + status +
|
||||||
|
",remainAmount=" + remainAmount +
|
||||||
",type=" + type +
|
",type=" + type +
|
||||||
|
",applyReason=" + applyReason +
|
||||||
|
",rejectReason=" + rejectReason +
|
||||||
|
",approvalUserName=" + approvalUserName +
|
||||||
"}";
|
"}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -48,8 +48,7 @@ public class MysqlMain_update {
|
|||||||
}
|
}
|
||||||
List<TablesBean> list = new ArrayList<TablesBean>();
|
List<TablesBean> list = new ArrayList<TablesBean>();
|
||||||
|
|
||||||
list.add(new TablesBean("vv_promoter_trade_order_award"));
|
list.add(new TablesBean("vv_my_settlement"));
|
||||||
list.add(new TablesBean("vv_promoter_trade_order_line_award"));
|
|
||||||
|
|
||||||
Map<String, String> map = MysqlUtil2ShowCreateTable.getComments();
|
Map<String, String> map = MysqlUtil2ShowCreateTable.getComments();
|
||||||
for (int i = 0; i < list.size(); i++) {
|
for (int i = 0; i < list.size(); i++) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user