package com.matrix.system.hive.pojo;
|
|
import java.io.Serializable;
|
/**
|
*
|
* @date 2016-12-23 17:15
|
*/
|
public class MyBeauticianCount implements Serializable{
|
|
private static final long serialVersionUID = 1L;
|
|
|
private Long id;
|
|
|
private Long vipId;
|
|
|
private Long staffId;
|
|
|
private Integer totalCount;
|
|
private String staffName;
|
|
private String vipName;
|
public Long getId() {
|
return id;
|
}
|
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
|
public Long getVipId() {
|
return vipId;
|
}
|
|
|
public void setVipId(Long vipId) {
|
this.vipId = vipId;
|
}
|
|
|
public Long getSuId() {
|
return staffId;
|
}
|
|
|
public void setStaffId(Long staffId) {
|
this.staffId = staffId;
|
}
|
|
|
public Integer getTotalCount() {
|
return totalCount;
|
}
|
|
|
public void setTotalCount(Integer totalCount) {
|
this.totalCount = totalCount;
|
}
|
|
|
public String getSuName() {
|
return staffName;
|
}
|
|
|
public void setStaffName(String staffName) {
|
this.staffName = staffName;
|
}
|
|
|
public String getVipName() {
|
return vipName;
|
}
|
|
|
public void setVipName(String vipName) {
|
this.vipName = vipName;
|
}
|
|
|
|
|
}
|