15 lines
261 B
Plaintext
15 lines
261 B
Plaintext
|
|
package com.bonus.ma.service;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import com.bonus.ma.beans.MachineVersionBean;
|
||
|
|
import com.bonus.sys.BaseService;
|
||
|
|
|
||
|
|
public interface MachineVersionService extends BaseService<MachineVersionBean>{
|
||
|
|
|
||
|
|
String getDeviceType(String typeId);
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|