Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ibeetl.admin.core.service;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
import com.ibeetl.admin.core.dao.CoreAuditDao;
import com.ibeetl.admin.core.entity.CoreAudit;
 
@Service
@Transactional
public class CoreAuditService extends CoreBaseService<CoreAudit> {
    
    @Autowired
    private CoreAuditDao sysAuditDao;
    
 
}