1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- package com.sinosoft.am.customer.vo;
- public class customerHuiZongBean{
- private String comp_id;//单位ID
-
- private int zyyhNum;//重要用户数量
- private int tjcustomerNum;//特级用户
- private int yjcustomerNum;//一级用户
- private int erjicustomerNum;//二级用户
-
- private int zdgzcustomerNum;//重点关注用户
-
- private int zTotal;//总合计
- public String getComp_id() {
- return comp_id;
- }
- public void setComp_id(String comp_id) {
- this.comp_id = comp_id;
- }
- public int getZyyhNum() {
- return zyyhNum;
- }
- public void setZyyhNum(int zyyhNum) {
- this.zyyhNum = zyyhNum;
- }
- public int getTjcustomerNum() {
- return tjcustomerNum;
- }
- public void setTjcustomerNum(int tjcustomerNum) {
- this.tjcustomerNum = tjcustomerNum;
- }
- public int getYjcustomerNum() {
- return yjcustomerNum;
- }
- public void setYjcustomerNum(int yjcustomerNum) {
- this.yjcustomerNum = yjcustomerNum;
- }
- public int getErjicustomerNum() {
- return erjicustomerNum;
- }
- public void setErjicustomerNum(int erjicustomerNum) {
- this.erjicustomerNum = erjicustomerNum;
- }
- public int getZdgzcustomerNum() {
- return zdgzcustomerNum;
- }
- public void setZdgzcustomerNum(int zdgzcustomerNum) {
- this.zdgzcustomerNum = zdgzcustomerNum;
- }
- public int getzTotal() {
- return zTotal;
- }
- public void setzTotal(int zTotal) {
- this.zTotal = zTotal;
- }
- }
|