记得上下班打卡 | git大法好,push需谨慎

Commit f17e2b8c authored by sunyuntian's avatar sunyuntian

Merge remote-tracking branch 'origin/dev-smile' into dev-smile

parents 6d67d6b1 4b45ead3
...@@ -111,6 +111,12 @@ public class KylinOrderTicketVo implements Serializable, Cloneable { ...@@ -111,6 +111,12 @@ public class KylinOrderTicketVo implements Serializable, Cloneable {
private String ticketId; private String ticketId;
@ApiModelProperty(position = 15, value = "代理id") @ApiModelProperty(position = 15, value = "代理id")
private String agentId; private String agentId;
@ApiModelProperty(position = 15, value = "代理状态[1-开启|2-关闭]")
private int agentStatus;
@ApiModelProperty(position = 15, value = "票提")
private BigDecimal agentDistributions;
@ApiModelProperty(position = 15, value = "是否会员") @ApiModelProperty(position = 15, value = "是否会员")
private Integer isMember; private Integer isMember;
@ApiModelProperty(position = 15, value = "订单过期日期") @ApiModelProperty(position = 15, value = "订单过期日期")
......
...@@ -3,6 +3,7 @@ package com.liquidnet.service.kylin.entity; ...@@ -3,6 +3,7 @@ package com.liquidnet.service.kylin.entity;
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 java.math.BigDecimal;
import java.time.LocalDateTime; import java.time.LocalDateTime;
import java.io.Serializable; import java.io.Serializable;
...@@ -19,7 +20,7 @@ import lombok.EqualsAndHashCode; ...@@ -19,7 +20,7 @@ import lombok.EqualsAndHashCode;
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)
public class KylinOrderTicketRelations implements Serializable ,Cloneable{ public class KylinOrderTicketRelations implements Serializable, Cloneable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
...@@ -56,6 +57,16 @@ public class KylinOrderTicketRelations implements Serializable ,Cloneable{ ...@@ -56,6 +57,16 @@ public class KylinOrderTicketRelations implements Serializable ,Cloneable{
*/ */
private String agentId; private String agentId;
/**
* 代理状态[1-开启|2-关闭]
*/
private int agentStatus;
/**
* 票提
*/
private BigDecimal agentDistributions;
/** /**
* 购买者是否是会员 * 购买者是否是会员
*/ */
...@@ -98,6 +109,7 @@ public class KylinOrderTicketRelations implements Serializable ,Cloneable{ ...@@ -98,6 +109,7 @@ public class KylinOrderTicketRelations implements Serializable ,Cloneable{
} }
private static final KylinOrderTicketRelations obj = new KylinOrderTicketRelations(); private static final KylinOrderTicketRelations obj = new KylinOrderTicketRelations();
public static KylinOrderTicketRelations getNew() { public static KylinOrderTicketRelations getNew() {
try { try {
return (KylinOrderTicketRelations) obj.clone(); return (KylinOrderTicketRelations) obj.clone();
......
---- 添加代理字段 ----
alter table kylin_order_ticket_relations
add agent_status int default 1 comment '代理状态[1-开启|2-关闭]';
alter table kylin_order_ticket_relations
add agent_distributions decimal (8,3) default 0 comment '票提';
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment