10 lines
239 B
Java
10 lines
239 B
Java
package com.cim.idm.service;
|
|
|
|
import com.cim.idm.framework.orm.service.CommonService;
|
|
import com.cim.idm.model.BSLabel;
|
|
import com.cim.idm.model.BSLabelKey;
|
|
|
|
public interface BSLabelService extends CommonService<BSLabelKey, BSLabel> {
|
|
|
|
}
|