master
33442 2024-11-14 21:36:58 +08:00
parent b257ef0706
commit 9a4b7cb8cb
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package com.muyu.product.mapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
@Mapper
public interface RuleInfoUpdMapper {
void delRuleInfo(Long id);
void addRuleInfo(@Param("ruleId") Long ruleId , @Param("name") String name, @Param("join") String join);
}