Commit ee8428d8 authored by shiyu's avatar shiyu

签到

parent 84dd223f
package com.wwdz.ch.db.mapper.qiandao;
import com.wwdz.ch.db.domain.qiandao.SignInTask;
import com.wwdz.ch.db.domain.qiandao.SignInTaskExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface SignInTaskMapper {
long countByExample(SignInTaskExample example);
int deleteByExample(SignInTaskExample example);
int deleteByPrimaryKey(Long id);
int insert(SignInTask record);
int insertSelective(SignInTask record);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table sign_in_task
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
SignInTask selectOneByExample(SignInTaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table sign_in_task
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
SignInTask selectOneByExampleSelective(@Param("example") SignInTaskExample example, @Param("selective") SignInTask.Column ... selective);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table sign_in_task
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List<SignInTask> selectByExampleSelective(@Param("example") SignInTaskExample example, @Param("selective") SignInTask.Column ... selective);
List<SignInTask> selectByExample(SignInTaskExample example);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table sign_in_task
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
SignInTask selectByPrimaryKeySelective(@Param("id") Long id, @Param("selective") SignInTask.Column ... selective);
SignInTask selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") SignInTask record, @Param("example") SignInTaskExample example);
int updateByExample(@Param("record") SignInTask record, @Param("example") SignInTaskExample example);
int updateByPrimaryKeySelective(SignInTask record);
int updateByPrimaryKey(SignInTask record);
}
\ No newline at end of file
...@@ -47,8 +47,8 @@ public class SendMsgFromExcelJob { ...@@ -47,8 +47,8 @@ public class SendMsgFromExcelJob {
@Value("${spring.profiles.active}") @Value("${spring.profiles.active}")
private String env; private String env;
// 每年8月14日晚上19点执行一次 // 每年12月14日晚上20点执行一次
// @Scheduled(cron = "0 20 19 14 8 ?") // @Scheduled(cron = "0 0 20 14 12 ?")
public void executeTask() { public void executeTask() {
if ("dev".equals(env)) { if ("dev".equals(env)) {
logger.info(">>>>>>>>>>>>>>>>>>>>>>> dev环境, 不执行给指定类目用户发送通知任务<<<<<<<<<<<<<<<<<<<<<"); logger.info(">>>>>>>>>>>>>>>>>>>>>>> dev环境, 不执行给指定类目用户发送通知任务<<<<<<<<<<<<<<<<<<<<<");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment