📄 ctexttestbean.java
字号:
package com.sevenEleven.Beans;
public class CtextTestBean {
/**
* @uml.property name="text_id"
*/
private String text_id;
/**
* @uml.property name="l_id"
*/
private int l_id;
/**
* @uml.property name="text_question"
*/
private String text_question;
/**
* @uml.property name="text_answer"
*/
private String text_answer;
/**
* @return
* @uml.property name="l_id"
*/
public int getL_id() {
return l_id;
}
/**
* @param l_id
* @uml.property name="l_id"
*/
public void setL_id(int l_id) {
this.l_id = l_id;
}
/**
* @return
* @uml.property name="text_answer"
*/
public String getText_answer() {
return text_answer;
}
/**
* @param text_answer
* @uml.property name="text_answer"
*/
public void setText_answer(String text_answer) {
this.text_answer = text_answer;
}
/**
* @return
* @uml.property name="text_id"
*/
public String getText_id() {
return text_id;
}
/**
* @param text_id
* @uml.property name="text_id"
*/
public void setText_id(String text_id) {
this.text_id = text_id;
}
/**
* @return
* @uml.property name="text_question"
*/
public String getText_question() {
return text_question;
}
/**
* @param text_question
* @uml.property name="text_question"
*/
public void setText_question(String text_question) {
this.text_question = text_question;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -