package com.mycim.valueobject.bas;
/**
* @author yibing.liu
* @version 1.0
* @date 2021/4/16
*/
public class ReticleFamilyRelation extends Relation {
public ReticleFamilyRelation() {
}
public ReticleFamilyRelation(Long fromRrn, Long toRrn, String linkType) {
super(fromRrn, toRrn, linkType);
}
}