package com.thhy.secure.modules.biz.good.service;
|
|
import com.thhy.secure.modules.biz.good.entity.GoodDto;
|
import com.thhy.secure.modules.biz.good.entity.SecureGood;
|
import com.thhy.secure.modules.biz.good.entity.SecureGoodFile;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 服务类
|
* @author zhang_xiao_bo
|
* @since 2023-05-23 14:06:10
|
*/
|
public interface SecureGoodService {
|
|
SecureGood get(Serializable id);
|
|
List<SecureGood> findList(GoodDto goodDto);
|
|
List<SecureGoodFile> fileList(GoodDto goodDto);
|
|
void addSecureGood(GoodDto goodDto);
|
|
void update(SecureGood secureGood);
|
|
void delete(Serializable id);
|
}
|