Commit 27f1684e by 陶光胜

观云台小程序

parent bde5837b
package com.gic.cloud.web.constant;
public enum DateTypeEnum {
DAY(1,"天"),
WEEK(2, "周"),
MONTH(3, "月"),
YEAR(4, "年"),
L3DAY(5, "近三天"),
L7DAY(6, "近七天");
private Integer type;
private String message;
DateTypeEnum(Integer type, String message){
this.type = type;
this.message = message;
}
public Integer getType() {
return type;
}
public void setType(Integer type) {
this.type = type;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment