LineConfigService.java 480 Bytes
package com.bsth.service.realcontrol;

import java.util.Map;

import com.bsth.entity.realcontrol.LineConfig;
import com.bsth.service.BaseService;

public interface LineConfigService extends BaseService<LineConfig, Integer>{

	Map<String, Object> check(String[] codeArray);

	Integer init(String lineCode) throws Exception;

	Map<String, Object> editStartOptTime(String time, String lineCode);

	Map<String, Object> editOutTimeType(String lineCode, int type);

}