package com.moral.api.pojo.vo.groupMenu;
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
import lombok.Data;
|
|
/**
|
* @ClassName GroupMenuVO
|
* @Description TODO
|
* @Author 陈凯裕
|
* @Date 2021/5/11 14:39
|
* @Version TODO
|
**/
|
@Data
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
public class GroupMenuVO {
|
|
private Integer id;
|
|
private Integer groupId;
|
|
private Integer menuId;
|
|
private String channelKey;
|
|
private Integer organizationId;
|
|
private String createTime;
|
|
private String updateTime;
|
|
}
|