Initial project

This commit is contained in:
Timi
2025-07-08 14:34:32 +08:00
parent 271e2ae673
commit c27146aa91
56 changed files with 3050 additions and 80 deletions

View File

@@ -0,0 +1,20 @@
package com.imyeyu.spring.service;
import com.imyeyu.java.bean.timi.TimiException;
/**
* 可销毁(物理删除)实体服务
*
* @author 夜雨
* @since 2025-05-14 17:30
*/
public interface DestroyableService<P> {
/**
* 销毁(物理删除)
*
* @param p 数据对象
* @throws TimiException 服务异常
*/
void destroy(P p);
}