DutyEmployeeService.java 364 Bytes
package com.bsth.service.sys;

import com.bsth.entity.sys.DutyEmployee;
import com.bsth.service.BaseService;

import java.util.List;

/**
 * Created by panzhao on 2017/1/5.
 */
public interface DutyEmployeeService extends BaseService<DutyEmployee, Long> {

    List<DutyEmployee> getDutyEmployee(String lineCode, String startTime, String endTime);
}