任务组代码优化

This commit is contained in:
AriaLyy
2017-07-13 13:36:26 +08:00
parent 746e8752bd
commit e21d2591af
12 changed files with 71 additions and 53 deletions

View File

@ -21,5 +21,25 @@ package com.arialyy.annotations;
public interface AriaConstance {
String NO_URL = "";
/**
* 注解方法为普通任务下载
*/
int DOWNLOAD = 0xa1;
/**
* 注解方法为任务组下载
*/
int DOWNLOAD_GROUP = 0xa2;
/**
* 注解方法为普通任务上传
*/
int UPLOAD = 0xb1;
/**
* 注解方法为任务组上传
*/
int UPLOAD_GROUP = 0xb2;
}