MatchResult.java
491 Bytes
package com.bsth.data.match;
import com.bsth.entity.realcontrol.ScheduleRealInfo;
/**
*
* @ClassName: MatchResult
* @Description: TODO(实际和计划匹配结果)
* @author PanZhao
* @date 2016年8月10日 下午3:55:48
*
*/
public class MatchResult {
/** 班次 */
public ScheduleRealInfo sch;
/** 时间差 */
public long diff;
/** 0 进 1 出 */
public int inOut;
public long ts;
/** 交配成功 */
public boolean success;
}