DirectiveService.java
839 Bytes
package com.bsth.vehicle.directive.service;
import com.bsth.service.BaseService;
import com.bsth.vehicle.directive.entity.Directive;
public interface DirectiveService extends BaseService<Directive, Integer>{
/**
*
* @Title: send60Phrase
* @Description: TODO(60短语下发)
* @param @param nbbm 车辆内部编码
* @param @param text 短语
* @return int 返回类型
* @throws
*/
int send60Phrase(String nbbm, String text);
int send60Dispatch(String nbbm, String text);
//60营运指令
int send60Operation(String nbbm, int state, int upDown);
/**
*
* @Title: lineChange
* @Description: TODO(线路切换)
* @param @param nbbm 车辆内部编码
* @param @param lineId 新线路编码
* @throws
*/
int lineChange(String nbbm, Integer lineId);
}