You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
384 B
Java
22 lines
384 B
Java
2 years ago
|
package com.glxp.api.req.basic;
|
||
|
|
||
|
import com.alibaba.fastjson.annotation.JSONField;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
@Data
|
||
|
public class BasicDestinyRelRequest {
|
||
|
private List<Long> list;
|
||
|
private Long pId;
|
||
|
private Long id;
|
||
|
private int count;
|
||
|
public List<Long> getList() {
|
||
|
return list;
|
||
|
}
|
||
|
|
||
|
public Long getpId() {
|
||
|
return pId;
|
||
|
}
|
||
|
}
|