package com.qianwen.smartman.modules.fms.service;
|
|
import com.qianwen.core.mp.base.BaseService;
|
import com.qianwen.smartman.modules.fms.entity.FmsInstructionRecord;
|
|
public interface IFmsInstructionRecordService extends BaseService<FmsInstructionRecord> {
|
FmsInstructionRecord getLastRecord();
|
}
|