Files
smartDriveEE/src/main/java/com/rj/service/ILbDeductionAmountService.java
2026-05-21 11:09:04 +08:00

24 lines
764 B
Java

package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.LbDeductionAmount;
import java.util.Map;
public interface ILbDeductionAmountService extends IService<LbDeductionAmount> {
Map<String, Object> add(LbDeductionAmount entity);
Map<String, Object> update(LbDeductionAmount entity);
Map<String, Object> deleteById(String id);
Map<String, Object> pageQuery(Integer current,
Integer size,
String tenantId,
String userName,
String userPhone,
String createTimeStart,
String createTimeEnd);
}