|
|
|
@@ -38,7 +38,15 @@ public class WxShop implements Serializable { |
|
|
|
public void setIds(List<String> ids) { |
|
|
|
this.ids = ids; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Transient |
|
|
|
private Long rentContractId; |
|
|
|
|
|
|
|
@Transient |
|
|
|
private String linkPerson; |
|
|
|
|
|
|
|
@Transient |
|
|
|
private String linkPhone; |
|
|
|
|
|
|
|
|
|
|
|
/*租户ID**/ |
|
|
|
@@ -189,6 +197,30 @@ public class WxShop implements Serializable { |
|
|
|
this.imgUrl = imgUrl; |
|
|
|
} |
|
|
|
|
|
|
|
public Long getRentContractId() { |
|
|
|
return rentContractId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setRentContractId(Long rentContractId) { |
|
|
|
this.rentContractId = rentContractId; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLinkPerson() { |
|
|
|
return linkPerson; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLinkPerson(String linkPerson) { |
|
|
|
this.linkPerson = linkPerson; |
|
|
|
} |
|
|
|
|
|
|
|
public String getLinkPhone() { |
|
|
|
return linkPhone; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLinkPhone(String linkPhone) { |
|
|
|
this.linkPhone = linkPhone; |
|
|
|
} |
|
|
|
|
|
|
|
public static enum Field |
|
|
|
{ |
|
|
|
Id_ASC("`id` ASC"),Id_DESC("`id` DESC") |
|
|
|
|