优化接口

dongdingding
吴顺杰 12 months ago
parent 688324e989
commit 4d0c882b17

@ -7,57 +7,56 @@ import java.util.List;
/**
* Service
*
*
* @author ruoyi
* @date 2023-09-19
*/
public interface IBCheckRecordsService
{
public interface IBCheckRecordsService {
/**
*
*
*
* @param id
* @return
*/
public BCheckRecords selectBCheckRecordsById(Long id);
BCheckRecords selectBCheckRecordsById(Long id);
/**
*
*
*
* @param bCheckRecords
* @return
*/
public List<BCheckRecords> selectBCheckRecordsList(BCheckRecords bCheckRecords);
List<BCheckRecords> selectBCheckRecordsList(BCheckRecords bCheckRecords);
/**
*
*
*
* @param bCheckRecords
* @return
*/
public int insertBCheckRecords(BCheckRecords bCheckRecords);
int insertBCheckRecords(BCheckRecords bCheckRecords);
/**
*
*
*
* @param bCheckRecords
* @return
*/
public int updateBCheckRecords(BCheckRecords bCheckRecords);
int updateBCheckRecords(BCheckRecords bCheckRecords);
/**
*
*
*
* @param ids
* @return
*/
public int deleteBCheckRecordsByIds(Long[] ids);
int deleteBCheckRecordsByIds(Long[] ids);
/**
*
*
*
* @param id
* @return
*/
public int deleteBCheckRecordsById(Long id);
int deleteBCheckRecordsById(Long id);
}

@ -7,57 +7,56 @@ import java.util.List;
/**
* Service
*
*
* @author ruoyi
* @date 2023-09-19
*/
public interface IBExchangeRecordsService
{
public interface IBExchangeRecordsService {
/**
*
*
*
* @param id
* @return
*/
public BExchangeRecords selectBExchangeRecordsById(Long id);
BExchangeRecords selectBExchangeRecordsById(Long id);
/**
*
*
*
* @param bExchangeRecords
* @return
*/
public List<BExchangeRecords> selectBExchangeRecordsList(BExchangeRecords bExchangeRecords);
List<BExchangeRecords> selectBExchangeRecordsList(BExchangeRecords bExchangeRecords);
/**
*
*
*
* @param bExchangeRecords
* @return
*/
public int insertBExchangeRecords(BExchangeRecords bExchangeRecords);
int insertBExchangeRecords(BExchangeRecords bExchangeRecords);
/**
*
*
*
* @param bExchangeRecords
* @return
*/
public int updateBExchangeRecords(BExchangeRecords bExchangeRecords);
int updateBExchangeRecords(BExchangeRecords bExchangeRecords);
/**
*
*
*
* @param ids
* @return
*/
public int deleteBExchangeRecordsByIds(Long[] ids);
int deleteBExchangeRecordsByIds(Long[] ids);
/**
*
*
*
* @param id
* @return
*/
public int deleteBExchangeRecordsById(Long id);
int deleteBExchangeRecordsById(Long id);
}

@ -7,57 +7,56 @@ import java.util.List;
/**
* Service
*
*
* @author ruoyi
* @date 2023-09-19
*/
public interface IBInviteService
{
public interface IBInviteService {
/**
*
*
*
* @param id
* @return
*/
public BInvite selectBInviteById(Long id);
BInvite selectBInviteById(Long id);
/**
*
*
*
* @param bInvite
* @return
*/
public List<BInvite> selectBInviteList(BInvite bInvite);
List<BInvite> selectBInviteList(BInvite bInvite);
/**
*
*
*
* @param bInvite
* @return
*/
public int insertBInvite(BInvite bInvite);
int insertBInvite(BInvite bInvite);
/**
*
*
*
* @param bInvite
* @return
*/
public int updateBInvite(BInvite bInvite);
int updateBInvite(BInvite bInvite);
/**
*
*
*
* @param ids
* @return
*/
public int deleteBInviteByIds(Long[] ids);
int deleteBInviteByIds(Long[] ids);
/**
*
*
*
* @param id
* @return
*/
public int deleteBInviteById(Long id);
int deleteBInviteById(Long id);
}

@ -7,57 +7,56 @@ import java.util.List;
/**
* Service
*
*
* @author ruoyi
* @date 2023-09-18
*/
public interface IBPersonTagsService
{
public interface IBPersonTagsService {
/**
*
*
*
* @param id
* @return
*/
public BPersonTags selectBPersonTagsById(Long id);
BPersonTags selectBPersonTagsById(Long id);
/**
*
*
*
* @param bPersonTags
* @return
*/
public List<BPersonTags> selectBPersonTagsList(BPersonTags bPersonTags);
List<BPersonTags> selectBPersonTagsList(BPersonTags bPersonTags);
/**
*
*
*
* @param bPersonTags
* @return
*/
public int insertBPersonTags(BPersonTags bPersonTags);
int insertBPersonTags(BPersonTags bPersonTags);
/**
*
*
*
* @param bPersonTags
* @return
*/
public int updateBPersonTags(BPersonTags bPersonTags);
int updateBPersonTags(BPersonTags bPersonTags);
/**
*
*
*
* @param ids
* @return
*/
public int deleteBPersonTagsByIds(Long[] ids);
int deleteBPersonTagsByIds(Long[] ids);
/**
*
*
*
* @param id
* @return
*/
public int deleteBPersonTagsById(Long id);
int deleteBPersonTagsById(Long id);
}

@ -19,7 +19,7 @@ public interface IBReportService {
* @param id
* @return
*/
public BReport selectBReportById(Long id);
BReport selectBReportById(Long id);
/**
*
@ -27,7 +27,7 @@ public interface IBReportService {
* @param req
* @return
*/
public List<BReport> selectBReportList(BReport req);
List<BReport> selectBReportList(BReport req);
/**
*
@ -35,7 +35,7 @@ public interface IBReportService {
* @param bReport
* @return
*/
public int insertBReport(BReport bReport);
int insertBReport(BReport bReport);
/**
*
@ -43,7 +43,7 @@ public interface IBReportService {
* @param bReport
* @return
*/
public int updateBReport(BReport bReport);
int updateBReport(BReport bReport);
/**
*
@ -51,7 +51,7 @@ public interface IBReportService {
* @param ids
* @return
*/
public int deleteBReportByIds(Long[] ids);
int deleteBReportByIds(Long[] ids);
/**
*
@ -59,7 +59,7 @@ public interface IBReportService {
* @param id
* @return
*/
public int deleteBReportById(Long id);
int deleteBReportById(Long id);
/**
@ -68,7 +68,7 @@ public interface IBReportService {
* @param req
* @return
*/
public List<BReportPageResponse> selecAll(BReportPageRequest req);
List<BReportPageResponse> selecAll(BReportPageRequest req);
}

Loading…
Cancel
Save