package com.matrix.system.shopXcx.api.vo;
|
|
/**
|
* @author wzy
|
* @date 2020-04-21 11:36
|
**/
|
public class SalonVO {
|
|
private Integer offset;
|
|
private Integer limit;
|
|
private Long shopId;
|
|
private String userId;
|
|
private Long actId;
|
|
private Long companyId;
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public Integer getOffset() {
|
if (this.offset == null || this.offset < 0) {
|
return 0;
|
}
|
return offset;
|
}
|
|
public void setOffset(Integer offset) {
|
this.offset = offset;
|
}
|
|
public Integer getLimit() {
|
if (this.limit == null || this.limit < 0) {
|
return 10;
|
}
|
return limit;
|
}
|
|
public void setLimit(Integer limit) {
|
this.limit = limit;
|
}
|
|
public Long getShopId() {
|
return shopId;
|
}
|
|
public void setShopId(Long shopId) {
|
this.shopId = shopId;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public Long getActId() {
|
return actId;
|
}
|
|
public void setActId(Long actId) {
|
this.actId = actId;
|
}
|
}
|