master
parent
47c2b1651d
commit
e7740a048c
|
@ -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; //修改时间
|
||||
}
|
||||
|
|
|
@ -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; //修改时间
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
}
|
Loading…
Reference in New Issue