鞍钢鲅鱼圈能源管控系统后端代码
dongyukun
昨天 be12a94c8b9eff1b31b6e71b7bd9b3d7386612ad
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.iailab.module.ansteel.power.dao;
 
import com.iailab.framework.common.dao.BaseDao;
import com.iailab.module.ansteel.power.entity.PowerPriceMainEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Update;
 
@Mapper
public interface PowerPriceMainDao extends BaseDao<PowerPriceMainEntity> {
 
    @Update("update t_power_price_main set status = 0 where status = 1")
    void updateStatus();
}