DependencyInfo.java
418 Bytes
package com.model;
import lombok.Data;
import java.io.Serializable;
/**
* Created by jack on 2017/12/7.
*/
@Data
public class DependencyInfo implements Serializable {
Integer typeId;
Integer dependencyTypeId;
public DependencyInfo() {
}
public DependencyInfo(Integer typeId, Integer dependencyTypeId) {
this.typeId = typeId;
this.dependencyTypeId = dependencyTypeId;
}
}