FaceWaterRecoder.java 2.01 KB
package com.sincere.haikangface.bean;

import java.io.Serializable;

public class FaceWaterRecoder implements Serializable {

    private String deviceId;

    private int deviceType;

    private String minorType;

    private String content;

    private String majorType;

    private String cardNo;

    private String time;

    private String systime;

    public String getSystime() {
        return systime;
    }

    public void setSystime(String systime) {
        this.systime = systime;
    }

    public String getCardNo() {
        return cardNo;
    }

    public void setCardNo(String cardNo) {
        this.cardNo = cardNo;
    }

    public String getDeviceId() {
        return deviceId;
    }

    public void setDeviceId(String deviceId) {
        this.deviceId = deviceId;
    }

    public int getDeviceType() {
        return deviceType;
    }

    public void setDeviceType(int deviceType) {
        this.deviceType = deviceType;
    }

    public String getMinorType() {
        return minorType;
    }

    public void setMinorType(String minorType) {
        this.minorType = minorType;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public String getMajorType() {
        return majorType;
    }

    public void setMajorType(String majorType) {
        this.majorType = majorType;
    }

    public String getTime() {
        return time;
    }

    public void setTime(String time) {
        this.time = time;
    }

    @Override
    public String toString() {
        return "FaceWaterRecoder{" +
                "deviceId='" + deviceId + '\'' +
                ", deviceType=" + deviceType +
                ", minorType='" + minorType + '\'' +
                ", content='" + content + '\'' +
                ", majorType='" + majorType + '\'' +
                ", cardNo='" + cardNo + '\'' +
                ", time='" + time + '\'' +
                ", systime='" + systime + '\'' +
                '}';
    }
}