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.
29 lines
700 B
Java
29 lines
700 B
Java
2 years ago
|
package com.glxp.api.service.basic;
|
||
|
|
||
|
|
||
|
import com.glxp.api.entity.basic.UdiCompanyEntity;
|
||
|
import com.glxp.api.req.basic.UdiCompanyRequest;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface UdiCompanyService {
|
||
|
|
||
|
List<UdiCompanyEntity> selectAllTyshxyh();
|
||
|
|
||
|
List<UdiCompanyEntity> syncDlCompany(UdiCompanyRequest udiCompanyRequest);
|
||
|
|
||
|
|
||
|
List<UdiCompanyEntity> filterUdiCompany(UdiCompanyRequest udiCompanyRequest);
|
||
|
|
||
|
boolean insertUdiCompany(UdiCompanyEntity udiCompanyEntity);
|
||
|
|
||
|
boolean insertUdiCompanys(List<UdiCompanyEntity> udiCompanyEntities);
|
||
|
|
||
|
boolean deleteById(String id);
|
||
|
|
||
|
boolean deleteAll(List<String> ids);
|
||
|
|
||
|
boolean updateUdiCompany(UdiCompanyEntity udiCompanyEntity);
|
||
|
|
||
|
}
|