package com.qxueyou.scc.school.model;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Ç©µ½ÀúÊ·½á¹û
|
* @author ody
|
*
|
*/
|
public class SignStatisResult implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
/** Ç©µ½ÀàÐÍ£º 1£º ÉÏ¿ÎÇ©µ½£» 2£º Ï¿ÎÇ©µ½, 3»î¶¯Ç©µ½*/
|
public static final Integer SIGN_TYPE_FIRST = 1;
|
|
public static final Integer SIGN_TYPE_LAST = 2;
|
|
public static final Integer SIGN_TYPE_ACTIVITY = 3;
|
|
/** µ±Ç°ÊÇ·ñÕýÈ··µ»Ø½á¹û,resultΪfalse£º±íʾǩµ½Òì³£,resultΪtrue£º±íʾǩµ½³É¹¦ */
|
private boolean result ;
|
|
/** Èç¹ûresultΪfalse£ºerrorMessageΪ´íÎóÌáʾ */
|
private String errMsg ;
|
|
/** µ±Ç°Óû§Ç©µ½Ë³Ðò */
|
private Integer signIndex;
|
|
/** µ±Ç°Óû§Ç©µ½µØÖ· */
|
private String signAddr;
|
|
/** Ç©µ½¾àÀë */
|
private double range;
|
|
/** ÊÇ·ñ°à¼¶³ÉÔ±£ºfalse: ·Ç°à¼¶³ÉÔ±£»true£º°à¼¶³ÉÔ± */
|
private boolean regFlag;
|
|
/** °àÖ÷ÈÎÐÕÃû */
|
private String classCharger;
|
|
|
/** ÀúÊ·¼Ç¼ÏÔʾ²»ÏÔʾ 1:²»ÏÔʾ 2£ºÏÔʾ */
|
private Integer hisShow;
|
|
/** µ±Ç°Óû§Ç©µ½ÀàÐÍ£ºÉÏ¿ÎÇ©µ½¡¢Ï¿ÎÇ©µ½ */
|
private Integer signType;
|
|
/** Ç©µ½ÀúÊ·item */
|
private List<SchSignStatistics> signStatisticss;
|
|
/** ·µ»Øµ±Ç°Ç©µ½ */
|
private SchSignStatistics signStatistics;
|
|
/** ¹¹Ôì·½·¨ */
|
public SignStatisResult(){
|
super();
|
}
|
|
public double getRange() {
|
return range;
|
}
|
|
public void setRange(double range) {
|
this.range = range;
|
}
|
|
public SchSignStatistics getSignStatistics() {
|
return signStatistics;
|
}
|
|
public void setSignStatistics(SchSignStatistics signStatistics) {
|
this.signStatistics = signStatistics;
|
}
|
|
/** ¹¹Ôì·½·¨ */
|
public SignStatisResult(boolean result,String errMsg){
|
this.result = result ;
|
this.errMsg = errMsg ;
|
}
|
|
public Integer getSignIndex() {
|
return signIndex;
|
}
|
|
public void setSignIndex(Integer signIndex) {
|
this.signIndex = signIndex;
|
}
|
|
public String getSignAddr() {
|
return signAddr;
|
}
|
|
public void setSignAddr(String signAddr) {
|
this.signAddr = signAddr;
|
}
|
|
public Integer getSignType() {
|
return signType;
|
}
|
|
public void setSignType(Integer signType) {
|
this.signType = signType;
|
}
|
|
public List<SchSignStatistics> getSignStatisticss() {
|
return signStatisticss;
|
}
|
|
public void setSignStatisticss(List<SchSignStatistics> signStatisticss) {
|
this.signStatisticss = signStatisticss;
|
}
|
|
public boolean isRegFlag() {
|
return regFlag;
|
}
|
|
public void setRegFlag(boolean regFlag) {
|
this.regFlag = regFlag;
|
}
|
|
public String getClassCharger() {
|
return classCharger;
|
}
|
|
public void setClassCharger(String classCharger) {
|
this.classCharger = classCharger;
|
}
|
|
public boolean getResult() {
|
return result;
|
}
|
|
public void setResult(boolean result) {
|
this.result = result;
|
}
|
|
public String getErrMsg() {
|
return errMsg;
|
}
|
|
public void setErrMsg(String errMsg) {
|
this.errMsg = errMsg;
|
}
|
|
public Integer getHisShow() {
|
return hisShow;
|
}
|
|
public void setHisShow(Integer hisShow) {
|
this.hisShow = hisShow;
|
}
|
|
|
}
|