叶松
2023-10-18 a5789be508f38ec2c591b618cd15ee998f79a17c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.thhy.mobile.modules.biz.login.entity;
 
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class PdaMenuVo implements Serializable {
 
    private String menuId;
 
    private String menuName;
 
    private String menuUrl;
 
    private String menuIcon;
}