From e7740a048c3ff867bc8680dcc87cb61bc45d5867 Mon Sep 17 00:00:00 2001 From: Guo YuKun <1458871005@qq.com> Date: Fri, 22 Mar 2024 19:31:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/bwie/common/domain/AskBuy.java | 21 +++++++++---------- .../java/com/bwie/common/domain/AskRent.java | 20 +++++++++--------- .../java/com/bwie/common/domain/User.java | 13 ------------ 3 files changed, 20 insertions(+), 34 deletions(-) delete mode 100644 bwie-common/src/main/java/com/bwie/common/domain/User.java diff --git a/bwie-common/src/main/java/com/bwie/common/domain/AskBuy.java b/bwie-common/src/main/java/com/bwie/common/domain/AskBuy.java index 38fa460..2a4f1c8 100644 --- a/bwie-common/src/main/java/com/bwie/common/domain/AskBuy.java +++ b/bwie-common/src/main/java/com/bwie/common/domain/AskBuy.java @@ -18,19 +18,18 @@ import java.util.Date; @NoArgsConstructor @Builder public class AskBuy { - - private BigInteger askbuyId; - private String askbuyAddress; - private String askbuyTitle; - private BigInteger dictionarytypeId; - private BigInteger addrId; - private BigInteger userId; - private DecimalFormat askbuyPrice; - private BigInteger isDelete; + private BigInteger askBuyId; //求租ID + private String askBuyAddress; //求租具体地址 + private String askBuyTitle; //求租标签 + private BigInteger dictionaryTypeId; //求租类型 + private BigInteger addrId; //三级联动 + private BigInteger userId; //联系人 + private DecimalFormat askBuyPrice; //求租价格 + private BigInteger isDelete; //逻辑删除 @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") - private Date createTime; + private Date createTime; //创建时间 @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") - private Date udpdateTime; + private Date updateTime; //修改时间 } diff --git a/bwie-common/src/main/java/com/bwie/common/domain/AskRent.java b/bwie-common/src/main/java/com/bwie/common/domain/AskRent.java index 2e72e32..9b69995 100644 --- a/bwie-common/src/main/java/com/bwie/common/domain/AskRent.java +++ b/bwie-common/src/main/java/com/bwie/common/domain/AskRent.java @@ -16,18 +16,18 @@ import java.util.Date; @NoArgsConstructor @Builder public class AskRent { - private BigInteger askrentId; - private String askbuyAddress; - private String askbuyTitle; - private BigInteger dictionarytypeId; - private BigInteger addrId; - private BigInteger userId; - private DecimalFormat askbuyPrice; - private BigInteger isDelete; + private BigInteger askRentId; //求租ID + private String askRentAddress; //求租具体地址 + private String askRentTitle; //求租标签 + private BigInteger dictionaryTypeId; //求租类型 + private BigInteger addrId; //三级联动 + private BigInteger userId; //联系人 + private DecimalFormat askRentPrice; //求租价格 + private BigInteger isDelete; //逻辑删除 @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") - private Date createTime; + private Date createTime; //创建时间 @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") - private Date udpdateTime; + private Date updateTime; //修改时间 } diff --git a/bwie-common/src/main/java/com/bwie/common/domain/User.java b/bwie-common/src/main/java/com/bwie/common/domain/User.java deleted file mode 100644 index 416fcd3..0000000 --- a/bwie-common/src/main/java/com/bwie/common/domain/User.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.bwie.common.domain; - -import lombok.AllArgsConstructor; -import lombok.Builder; -import lombok.Data; -import lombok.NoArgsConstructor; - -@Data -@Builder -@AllArgsConstructor -@NoArgsConstructor -public class User { -}