17 lines
354 B
Java
17 lines
354 B
Java
package jnpf.attendance.service;
|
|
|
|
import jnpf.entity.attendance.AttendanceQuickTemplateItemEntity;
|
|
import jnpf.base.service.SuperService;
|
|
|
|
/**
|
|
* <p>
|
|
* 快速模板-单天模板 服务类
|
|
* </p>
|
|
*
|
|
* @author ahua
|
|
* @since 2023-11-28
|
|
*/
|
|
public interface AttendanceQuickTemplateItemService extends SuperService<AttendanceQuickTemplateItemEntity> {
|
|
|
|
}
|