Newer
Older
huludao / src / main / java / com / newfiber / api / mobile / model / domain / ProblemStatistical.java
package com.newfiber.api.mobile.model.domain;

/**
 * 统计实体类
 * @author chenhonggang
 * @date 2018-12-06 18:22:00
 */
public class ProblemStatistical {
    /**编号*/
    private String code;
    /**名称*/
    private String name;
    /**个数*/
    private int num;
    /**总个数*/
    private int total;
    /*所占百分比*/
    private String percentage = "0.0%";
    /**对应负责人名称*/
    private String userName;

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getNum() {
        return num;
    }

    public void setNum(int num) {
        this.num = num;
    }

    public int getTotal() {
        return total;
    }

    public void setTotal(int total) {
        this.total = total;
    }

    public String getPercentage() {
        return percentage;
    }

    public void setPercentage(String percentage) {
        this.percentage = percentage;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }
}