PlaceAttendance.java 822 Bytes
package com.sincere.haikang.bean;

import java.io.Serializable;

/**
 * 场地和设备关联
 */
public class PlaceAttendance implements Serializable {

    private String KaoQinAttendance;//设备id

    private String TypeTwo;//0:活动场地,1:寝室

    public String getKaoQinAttendance() {
        return KaoQinAttendance;
    }

    public void setKaoQinAttendance(String kaoQinAttendance) {
        KaoQinAttendance = kaoQinAttendance;
    }

    public String getTypeTwo() {
        return TypeTwo;
    }

    public void setTypeTwo(String typeTwo) {
        TypeTwo = typeTwo;
    }

    @Override
    public String toString() {
        return "PlaceAttendance{" +
                "KaoQinAttendance='" + KaoQinAttendance + '\'' +
                ", TypeTwo='" + TypeTwo + '\'' +
                '}';
    }
}