You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
659 B
25 lines
659 B
/***********************************************************
|
|
* @Description : Action的前端展示类
|
|
* @author : 梁山广(Laing Shan Guang)
|
|
* @date : 2019-05-26 13:46
|
|
* @email : liangshanguang2@gmail.com
|
|
***********************************************************/
|
|
package lsgwr.exam.vo;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class PageVo {
|
|
@JsonProperty("actionEntitySet")
|
|
private List<ActionVo> actionVoList;
|
|
|
|
@JsonProperty("permissionId")
|
|
private String pageName;
|
|
|
|
@JsonProperty("permissionName")
|
|
private String pageDescription;
|
|
}
|