Cnt.java 705 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
package com.gcy.entity;

import java.io.Serializable;

/**
 * (Cnt)实体类
 *
 * @author makejava
 * @since 2024-07-31 17:02:25
 */
public class Cnt implements Serializable {
    private static final long serialVersionUID = 215722679832120335L;

    private String nam;

    private Integer val;

    private Integer stp;


    public String getNam() {
        return nam;
    }

    public void setNam(String nam) {
        this.nam = nam;
    }

    public Integer getVal() {
        return val;
    }

    public void setVal(Integer val) {
        this.val = val;
    }

    public Integer getStp() {
        return stp;
    }

    public void setStp(Integer stp) {
        this.stp = stp;
    }

}