40 lines
604 B
Java
40 lines
604 B
Java
package business.cooperop.base.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class ApplicationPopedom {
|
|
|
|
@TableId
|
|
private String id;
|
|
|
|
private String applicationCode;
|
|
|
|
private String name;
|
|
|
|
private String parentId;
|
|
|
|
private String url;
|
|
|
|
private String icon;
|
|
|
|
private Integer isMenu;
|
|
|
|
private Integer orderNo;
|
|
|
|
private String path;
|
|
|
|
private String redirect;
|
|
|
|
private String component;
|
|
|
|
private String title;
|
|
|
|
private Boolean alwaysShow;
|
|
|
|
private Boolean hidden;
|
|
|
|
private String description;
|
|
|
|
} |