会员发票抬头设置默认

This commit is contained in:
2023-05-20 16:25:24 +08:00
parent 1fe9641297
commit a21fb4f736
8 changed files with 177 additions and 150 deletions

View File

@@ -1,6 +1,7 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.MemberInvoiceTitle;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@@ -60,4 +61,6 @@ public interface MemberInvoiceTitleMapper {
* @return 结果
*/
public int deleteMemberInvoiceTitleByIds(Long[] ids);
void batchUpdateDefaultFlag(@Param("titleIdList") List<Long> titleIdList);
}