TimeUnit.java 255 Bytes
Newer Older
yanzg's avatar
yanzg committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.yanzuoguang.mq.plan;

/**
 * 时间单位
 *
 * @author 颜佐光
 */
public class TimeUnit {
    public String tag;
    public long unit;

    public TimeUnit(String tag, long unit) {
        this.tag = tag;
        this.unit = unit;
    }
}