|
@@ -16,6 +16,8 @@ import com.baomidou.mybatisplus.annotation.*;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Getter;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import lombok.Setter;
|
|
|
|
+import vip.xiaonuo.common.pojo.CommonEntity;
|
|
|
|
+
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
@@ -28,7 +30,7 @@ import java.util.Date;
|
|
@Getter
|
|
@Getter
|
|
@Setter
|
|
@Setter
|
|
@TableName("biz_user_fund_change_record")
|
|
@TableName("biz_user_fund_change_record")
|
|
-public class BizUserFundChangeRecord {
|
|
|
|
|
|
+public class BizUserFundChangeRecord extends CommonEntity {
|
|
|
|
|
|
/** 账户金额变动记录id */
|
|
/** 账户金额变动记录id */
|
|
@TableId
|
|
@TableId
|
|
@@ -59,29 +61,5 @@ public class BizUserFundChangeRecord {
|
|
@Schema(description = "现代金券金额")
|
|
@Schema(description = "现代金券金额")
|
|
private BigDecimal newVoucherBalance;
|
|
private BigDecimal newVoucherBalance;
|
|
|
|
|
|
- /** 删除标志:NOT_DELETE 正常,DELETED 已删除 */
|
|
|
|
- @Schema(description = "删除标志:NOT_DELETE 正常,DELETED 已删除")
|
|
|
|
- @TableLogic
|
|
|
|
- @TableField(fill = FieldFill.INSERT)
|
|
|
|
- private String deleteFlag;
|
|
|
|
-
|
|
|
|
- /** 创建人 */
|
|
|
|
- @Schema(description = "创建人")
|
|
|
|
- @TableField(fill = FieldFill.INSERT)
|
|
|
|
- private String createUser;
|
|
|
|
-
|
|
|
|
- /** 创建时间 */
|
|
|
|
- @Schema(description = "创建时间")
|
|
|
|
- @TableField(fill = FieldFill.INSERT)
|
|
|
|
- private Date createTime;
|
|
|
|
-
|
|
|
|
- /** 修改时间 */
|
|
|
|
- @Schema(description = "修改时间")
|
|
|
|
- @TableField(fill = FieldFill.UPDATE)
|
|
|
|
- private Date updateTime;
|
|
|
|
|
|
|
|
- /** 修改人 */
|
|
|
|
- @Schema(description = "修改人")
|
|
|
|
- @TableField(fill = FieldFill.UPDATE)
|
|
|
|
- private String updateUser;
|
|
|
|
}
|
|
}
|