LineConfigService.java 414 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(Integer[] codeArray);

	Integer inti(Integer lineCode) throws Exception;

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

}