You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
2.0 KiB
40 lines
2.0 KiB
/** |
|
* |
|
*/ |
|
package kr.co.kihyun.beans.entity; |
|
|
|
import kr.co.kihyun.moumi.MoumiConfig; |
|
|
|
/** |
|
* @author bhs |
|
* |
|
*/ |
|
public enum TotReportProcess { |
|
ACCEPT(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.acceptStatus")) //접수 0 |
|
, REASSIGN(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.process.reassign")) //재배정요청 1 |
|
, ASSIGN(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.process.assign")) //배정 2 |
|
, RETURN(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.returnStatus")) //재입력요청 3 |
|
, TEMP(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.tempStatus")) //제출진행 4 |
|
, APPROVE(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.process.approve")) //결재진행 5 |
|
, COMP(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.compStatus")) //제출완료 6 |
|
, END(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.process.end")) //보고종료 7 |
|
, READ(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.process.read")) //열람 8 |
|
, CANCEL(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.cancel")) //취소 9 |
|
, ALL(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.allStatus")) //전체 10 |
|
, SUBMIT(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.submit")) //제출 11 |
|
, NOT(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.notStatus")) //해당없음 12 |
|
, NOT_REPORT(MoumiConfig.getMessageBundle().getString("moumi.message.tot_report.not_reportStatus")) //미제출 13 |
|
, NOTE(MoumiConfig.getMessageBundle().getString("moumi.message.tot_doc.recalInfo"))//회수요청 14 |
|
, SORT_DATE("SORTDATE"); |
|
|
|
private String name; |
|
|
|
private TotReportProcess(String name) { |
|
this.name = name; |
|
} |
|
|
|
@Override |
|
public String toString() { |
|
return name; |
|
} |
|
}
|
|
|