|
|
@ -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);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|