ganzi-api/inventory-dao/src/main/java/com/rzyc/mapper/SysStatuteDescMapper.java
2022-09-16 15:07:17 +08:00

36 lines
1.2 KiB
Java

package com.rzyc.mapper;
import com.rzyc.model.SysStatuteDesc;
import com.rzyc.model.SysStatuteDescExample;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface SysStatuteDescMapper {
long countByExample(SysStatuteDescExample example);
int deleteByExample(SysStatuteDescExample example);
int insert(SysStatuteDesc record);
int insertSelective(SysStatuteDesc record);
List<SysStatuteDesc> selectByExampleWithBLOBs(SysStatuteDescExample example);
List<SysStatuteDesc> selectByExample(SysStatuteDescExample example);
int updateByExampleSelective(@Param("record") SysStatuteDesc record, @Param("example") SysStatuteDescExample example);
int updateByExampleWithBLOBs(@Param("record") SysStatuteDesc record, @Param("example") SysStatuteDescExample example);
int updateByExample(@Param("record") SysStatuteDesc record, @Param("example") SysStatuteDescExample example);
/*章节内容*/
SysStatuteDesc findByStatuteId(@Param("statuteId") String statuteId);
/*修改章节内容*/
Integer changeStatuteDesc(@Param("record") SysStatuteDesc record);
}