440748c64327412763f5599ce3802afc282a37de.svn-base
1.11 KB
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
/**
* Copyright © 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
*/
package com.thinkgem.jeesite.modules.jy.service.fw;
import java.util.List;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.thinkgem.jeesite.common.persistence.Page;
import com.thinkgem.jeesite.common.service.CrudService;
import com.thinkgem.jeesite.modules.jy.entity.fw.JyFw;
import com.thinkgem.jeesite.modules.jy.dao.fw.JyFwDao;
/**
* 交易房屋基础信息表Service
* @author lw
* @version 2020-10-27
*/
@Service
@Transactional(readOnly = true)
public class JyFwService extends CrudService<JyFwDao, JyFw> {
public JyFw get(String id) {
return super.get(id);
}
public List<JyFw> findList(JyFw jyFw) {
return super.findList(jyFw);
}
public Page<JyFw> findPage(Page<JyFw> page, JyFw jyFw) {
return super.findPage(page, jyFw);
}
@Transactional(readOnly = false)
public void save(JyFw jyFw) {
super.save(jyFw);
}
@Transactional(readOnly = false)
public void delete(JyFw jyFw) {
super.delete(jyFw);
}
}