潘志宝
9 天以前 9d5be382e52f9ac57199d5ef75cc23f925a4cdb0
提交 | 用户 | 时间
bbc1ee 1 package com.iailab.module.model.mcs.sche.dao;
2
3 import com.iailab.framework.mybatis.core.mapper.BaseMapperX;
58c749 4 import com.iailab.framework.tenant.core.db.dynamic.TenantDS;
bbc1ee 5 import com.iailab.module.model.mcs.sche.entity.StScheduleModelSettingEntity;
6 import org.apache.ibatis.annotations.Mapper;
826d35 7 import org.apache.ibatis.annotations.Param;
bbc1ee 8
9 /**
10  * @author PanZhibao
11  * @Description
12  * @createTime 2024年09月06日
13  */
58c749 14 @TenantDS
bbc1ee 15 @Mapper
16 public interface StScheduleModelSettingDao extends BaseMapperX<StScheduleModelSettingEntity> {
826d35 17     void updatePyFile(@Param("likeValue") String likeValue, @Param("value") String value);
bbc1ee 18 }