24 lines
764 B
Java
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);
|
|
}
|