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.
24 lines
378 B
Java
24 lines
378 B
Java
package com.engine.sship.entity;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @Author xxy
|
|
* @Date 2024/1/31 15:26 PM
|
|
* @Description: TODO
|
|
* @Version 1.0
|
|
*/
|
|
@Data
|
|
@Builder
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class VirtualTopParam {
|
|
|
|
private String id;
|
|
|
|
private String virtualType;
|
|
}
|