|
|
@@ -1,5 +1,6 @@
|
|
|
package com.ydtech.modules.protocols.entity.po;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
@@ -334,7 +335,7 @@ public class InsFeeOrderNew {
|
|
|
private BigDecimal thirdDetailPremiums;
|
|
|
|
|
|
@ApiModelProperty(value = "一级分销用户id")
|
|
|
- @TableField(value = "first_level_user_id")
|
|
|
+ @TableField(value = "first_level_user_id",updateStrategy = FieldStrategy.IGNORED)
|
|
|
private String firstLevelUserId;
|
|
|
|
|
|
@ApiModelProperty(value = "一级分销用户信息")
|
|
|
@@ -342,7 +343,7 @@ public class InsFeeOrderNew {
|
|
|
private String firstLevelUserInfo;
|
|
|
|
|
|
@ApiModelProperty(value = "二级分销用户id")
|
|
|
- @TableField(value = "two_level_user_id")
|
|
|
+ @TableField(value = "two_level_user_id",updateStrategy = FieldStrategy.IGNORED)
|
|
|
private String twoLevelUserId;
|
|
|
|
|
|
@ApiModelProperty(value = "二级分销用户信息")
|
|
|
@@ -350,7 +351,7 @@ public class InsFeeOrderNew {
|
|
|
private String twoLevelUserInfo;
|
|
|
|
|
|
@ApiModelProperty(value = "三级分销用户id")
|
|
|
- @TableField(value = "three_level_user_id")
|
|
|
+ @TableField(value = "three_level_user_id",updateStrategy = FieldStrategy.IGNORED)
|
|
|
private String threeLevelUserId;
|
|
|
|
|
|
@ApiModelProperty(value = "三级分销用户信息")
|