Merge remote-tracking branch 'origin/main' into multi-tenant
This commit is contained in:
@@ -18,10 +18,15 @@ type CDREventIMS struct {
|
||||
}
|
||||
|
||||
// SelectPage 根据条件分页查询
|
||||
func (r *CDREventIMS) SelectPage(querys model.CDREventIMSQuery) map[string]any {
|
||||
func (r *CDREventIMS) SelectPageMT(querys model.CDREventIMSQuery) map[string]any {
|
||||
return r.cdrEventIMSRepository.SelectPage(querys)
|
||||
}
|
||||
|
||||
// SelectPage 根据条件分页查询
|
||||
func (r *CDREventIMS) SelectPage(querys model.CDREventIMSQuery) ([]model.CDREventIMS, int64) {
|
||||
return r.cdrEventIMSRepository.SelectByPage(querys)
|
||||
}
|
||||
|
||||
// DeleteByIds 批量删除信息
|
||||
func (r *CDREventIMS) DeleteByIds(cdrIds []string) (int64, error) {
|
||||
// 检查是否存在
|
||||
|
||||
Reference in New Issue
Block a user