You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
390 B
Java
14 lines
390 B
Java
package com.supervision.police.service;
|
|
|
|
import com.supervision.police.domain.AttributeYhls;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* @author Administrator
|
|
* @description 针对表【attribute_yhls(银行流水证据属性)】的数据库操作Service
|
|
* @createDate 2024-11-20 14:40:46
|
|
*/
|
|
public interface AttributeYhlsService extends IService<AttributeYhls> {
|
|
|
|
}
|