package com.thhy.mobile.modules.biz.steelrecord.service;
|
|
import com.thhy.mobile.modules.biz.steelrecord.entity.SteelRecord;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 服务类
|
* @author zhang_xiao_bo
|
* @since 2023-05-06 14:55:16
|
*/
|
public interface SteelRecordService {
|
|
SteelRecord get(Serializable id);
|
|
List<SteelRecord> findList(SteelRecord steelRecord);
|
|
void addSteelRecord(SteelRecord steelRecord);
|
|
void update(SteelRecord steelRecord);
|
|
void delete(Serializable id);
|
}
|