Blame view

AttendanceConstant.java 631 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
package com.meishu.common.constant;

public class AttendanceConstant {

    /**
     * 创建预约api
     */
    public static final String CREATE_TOPIC_URL = "https://open.api.roomis.com.cn/api/my/booking/spaces/{spaceId}/events";

    /**
     * 考勤api
     */
    public static final String GET_ATTENDANCE_URL = "https://open.api.roomis.com.cn/api/attendance/{id}";

    /**
     * 创建人ID
     */
    public static Long organizerId = 200000222L;

    /**
     * 开始时间
     */
    public static String startTime = "07:00:00";

    /**
     * 结束时间
     */
    public static String endTime = "21:00:00";
}