liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
 * Copyright &copy; 2015-2020 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
 */
package com.jeeplus.modules.sign.service;
 
import java.util.List;
import java.util.Map;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import com.jeeplus.common.persistence.Page;
import com.jeeplus.common.service.CrudService;
import com.jeeplus.modules.sign.entity.FormSign;
import com.jeeplus.modules.userregister.entity.UserRegister;
import com.jeeplus.modules.sign.dao.FormSignDao;
 
/**
 * 签到Service
 * @author jinlong
 * @version 2016-04-19
 */
@Service
@Transactional(readOnly = true)
public class FormSignService extends CrudService<FormSignDao, FormSign> {
 
    public FormSign get(String id) {
        return super.get(id);
    }
    
    public List<FormSign> findList(FormSign formSign) {
        return super.findList(formSign);
    }
    
    public Page<FormSign> findPage(Page<FormSign> page, FormSign formSign) {
        return super.findPage(page, formSign);
    }
    
    @Transactional(readOnly = false)
    public void save(FormSign formSign) {
        super.save(formSign);
    }
    
    @Transactional(readOnly = false)
    public void delete(FormSign formSign) {
        super.delete(formSign);
    }
    
    
    @Autowired
    protected FormSignDao dao;
    
    public List<FormSign> findDetaillist( Map<String, Object> map) {
        
         return dao.findDetaillist(map);
    }
    
     
     
    public Page<FormSign> findSignListPage(Page<FormSign> page, FormSign formSign) {
        formSign.setPage(page);
        page.setList(dao.findSignListPage(formSign));
        return page;
    }
    @Transactional(readOnly = false)
    public void insertSign(Map<String, Object> map) {
      dao.insertSign(map);  
    }
 
    public List<String> findCardList() {
        return dao.findCardList();
    }
    @Transactional(readOnly = false)
    public void delTask(String id) {
          dao.delTask(id);
    }
 
    public List<String> queryTaskList() {
        return dao.queryTaskList();
    }
 
    
}