公告板
版本库
filestore
活动
搜索
登录
school_java_vue
/
attendance-service
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
git init
liuxiaolong
2019-05-06
a7bed6b4cfecd61ec153818945f982c5bb796b98
[school_java_vue/attendance-service.git]
/
api-model
/
src
/
main
/
java
/
com
/
cloud
/
model
/
mail
/
constants
/
MailStatus.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.cloud.model.mail.constants;
/**
* 邮件状态
* @author lp
* @date 2018-06-01
*/
public interface MailStatus {
/**
* 草稿
*/
int DRAFT = 0;
int SUCCESS = 1;
int ERROR = 2;
}