com.iqiny.silly.spring.service.impl.DefaultMySillyReadService Maven / Gradle / Ivy
/*
* Copyright iqiny.com
*
* https://gitee.com/iqiny/silly
*
* project name:silly-spring
* project description:top silly project pom.xml file
*/
package com.iqiny.silly.spring.service.impl;
import com.iqiny.silly.core.base.core.SillyMaster;
import com.iqiny.silly.core.base.core.SillyNode;
import com.iqiny.silly.core.base.core.SillyVariable;
import com.iqiny.silly.core.service.base.AbstractSillyReadService;
/**
* 默认的 读取服务类
*/
public class DefaultMySillyReadService, V extends SillyVariable>
extends AbstractSillyReadService {
private String category;
@Override
public String usedCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
}