| | |
| | | import ${entity.clazz}; |
| | | import ${dao.clazz}; |
| | | import ${service.clazz}; |
| | | import ${query.clazz}; |
| | | import ${daoQuery.clazz}; |
| | | import javax.annotation.Resource; |
| | | import org.springframework.stereotype.Service; |
| | | import java.util.Date; |
| | | import org.yeshi.utils.bean.BeanUtil; |
| | | |
| | | @Service |
| | | public class ${service.name}Impl implements ${service.name}{ |
| | |
| | | private ${dao.name} ${dao.name?uncap_first}; |
| | | |
| | | <#list metodInfoList as method> |
| | | ${method.note} |
| | | ${method.visiteAccess} ${method.returnType} ${method.name}(${method.params}){ |
| | | ${method.content} |
| | | ${method.content} |
| | | } |
| | | |
| | | </#list> |
| | | |
| | | } |