优化接口

dongdingding
吴顺杰 1 year ago
parent 688324e989
commit 4d0c882b17

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

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

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

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

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

Loading…
Cancel
Save