From 0abd80878ee9045d5317a2dbeff6c20d2dfdabc0 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Fri, 14 May 2021 15:07:32 +0800 Subject: [PATCH] Merge branch 'yunding' of http://120.27.238.55:7000/r/exchange into yunding --- src/main/java/com/xcong/excoin/modules/yunding/entity/YdOrderEntity.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/yunding/entity/YdOrderEntity.java b/src/main/java/com/xcong/excoin/modules/yunding/entity/YdOrderEntity.java index c99efc0..d7b7a3f 100644 --- a/src/main/java/com/xcong/excoin/modules/yunding/entity/YdOrderEntity.java +++ b/src/main/java/com/xcong/excoin/modules/yunding/entity/YdOrderEntity.java @@ -1,5 +1,6 @@ package com.xcong.excoin.modules.yunding.entity; +import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.xcong.excoin.common.system.base.BaseEntity; import lombok.Data; @@ -92,5 +93,12 @@ private Date endTime; + @TableField(exist = false) + private YdProductEntity ydProductEntity; + + private Integer type; + public static final Integer AGENT_ORDER = 2; + public static final Integer PRODUCT_ORDER = 1; + } -- Gitblit v1.9.1