初始化提交
This commit is contained in:
@ -0,0 +1,40 @@
|
||||
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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user