master
parent
47c2b1651d
commit
e7740a048c
|
@ -18,19 +18,18 @@ import java.util.Date;
|
||||||
@NoArgsConstructor
|
@NoArgsConstructor
|
||||||
@Builder
|
@Builder
|
||||||
public class AskBuy {
|
public class AskBuy {
|
||||||
|
private BigInteger askBuyId; //求租ID
|
||||||
private BigInteger askbuyId;
|
private String askBuyAddress; //求租具体地址
|
||||||
private String askbuyAddress;
|
private String askBuyTitle; //求租标签
|
||||||
private String askbuyTitle;
|
private BigInteger dictionaryTypeId; //求租类型
|
||||||
private BigInteger dictionarytypeId;
|
private BigInteger addrId; //三级联动
|
||||||
private BigInteger addrId;
|
private BigInteger userId; //联系人
|
||||||
private BigInteger userId;
|
private DecimalFormat askBuyPrice; //求租价格
|
||||||
private DecimalFormat askbuyPrice;
|
private BigInteger isDelete; //逻辑删除
|
||||||
private BigInteger isDelete;
|
|
||||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@JsonFormat(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")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@JsonFormat(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
|
@NoArgsConstructor
|
||||||
@Builder
|
@Builder
|
||||||
public class AskRent {
|
public class AskRent {
|
||||||
private BigInteger askrentId;
|
private BigInteger askRentId; //求租ID
|
||||||
private String askbuyAddress;
|
private String askRentAddress; //求租具体地址
|
||||||
private String askbuyTitle;
|
private String askRentTitle; //求租标签
|
||||||
private BigInteger dictionarytypeId;
|
private BigInteger dictionaryTypeId; //求租类型
|
||||||
private BigInteger addrId;
|
private BigInteger addrId; //三级联动
|
||||||
private BigInteger userId;
|
private BigInteger userId; //联系人
|
||||||
private DecimalFormat askbuyPrice;
|
private DecimalFormat askRentPrice; //求租价格
|
||||||
private BigInteger isDelete;
|
private BigInteger isDelete; //逻辑删除
|
||||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@JsonFormat(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")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@JsonFormat(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