fix: 메뉴생성관리(권한설정) 구현
parent
90e4591f34
commit
6fbaf83276
@ -1,47 +1,32 @@
|
||||
package kr.xit.framework.biz.cmm.model;
|
||||
|
||||
import kr.xit.framework.core.model.BaseVO;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
*
|
||||
* @업무그룹명: 메뉴생성내역VO
|
||||
* @설명:
|
||||
* @최초작성일: 2020. 3. 21. 오전 10:29:44
|
||||
* @최초작성자: 박민규
|
||||
*
|
||||
* @업무그룹명: 메뉴생성내역VO
|
||||
* @설명:
|
||||
* @최초작성일: 2022. 10. 21.
|
||||
* @최초작성자: 최정민
|
||||
* @author (주)엑스아이티 개발팀
|
||||
* @since 2002. 2. 2.
|
||||
* @version 1.0 Copyright(c) XIT All rights reserved.
|
||||
*/
|
||||
@Data
|
||||
public class XitMenuCreatDtlsVO extends BaseVO {
|
||||
|
||||
/**
|
||||
* serialVersionUID
|
||||
*/
|
||||
private static final long serialVersionUID = 568460849738293096L;
|
||||
|
||||
|
||||
protected String menuNo; //메뉴 번호
|
||||
protected String authorCode; //권한 코드
|
||||
protected String mapngCreatId; //매핑 생성 id
|
||||
|
||||
|
||||
protected String menu_no; //메뉴 번호
|
||||
protected String author_code; //권한 코드
|
||||
protected String mapng_creat_id; //매핑 생성 id
|
||||
|
||||
public String getMenu_no() {
|
||||
return menu_no;
|
||||
}
|
||||
public void setMenu_no(String menu_no) {
|
||||
this.menu_no = menu_no;
|
||||
}
|
||||
public String getAuthor_code() {
|
||||
return author_code;
|
||||
}
|
||||
public void setAuthor_code(String author_code) {
|
||||
this.author_code = author_code;
|
||||
}
|
||||
public String getMapng_creat_id() {
|
||||
return mapng_creat_id;
|
||||
}
|
||||
public void setMapng_creat_id(String mapng_creat_id) {
|
||||
this.mapng_creat_id = mapng_creat_id;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue