zhangjinli 3 years ago
parent 748414addd
commit baff507daf

@ -16,6 +16,6 @@ import java.util.Map;
* @since 2022-05-30
*/
public interface CustomerActionNoteMapper extends BaseMapper<CustomerActionNote> {
@Select("select t1.*,t2.name from customerActionNote as t1 ,user as t2 WHERE t1.provideId = t2.id")
@Select("select t1.*,t2.name as provideName,t3.name as brandName from customerActionNote as t1 ,user as t2,brand as t3 WHERE t1.provideId = t2.id and t1.brandId = t3.id")
IPage<Map> pageList(IPage page);
}

Loading…
Cancel
Save