doum
6 小时以前 ce44d803b73a65b2cc31db5bcc662139029463d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.doumee.service.business.collection;
 
/**
 * 采集站媒体/快照业务常量(定义在 dmvisit_service,避免依赖未安装的 system_service 新版本)。
 */
public final class CollectionMediaConstants {
 
    /** 媒体下载状态:下载中 */
    public static final int DOWNLOAD_STATUS_DOWNLOADING = 3;
 
    /** 媒体快照状态:未分析 */
    public static final int SNAPSHOT_STATUS_NONE = 0;
    /** 媒体快照状态:分析中 */
    public static final int SNAPSHOT_STATUS_PROCESSING = 1;
    /** 媒体快照状态:完成 */
    public static final int SNAPSHOT_STATUS_DONE = 2;
    /** 媒体快照状态:失败 */
    public static final int SNAPSHOT_STATUS_FAILED = 3;
 
    /** 快照类型:门头 */
    public static final int SNAPSHOT_TYPE_STOREFRONT = 1;
    /** 快照类型:交付 */
    public static final int SNAPSHOT_TYPE_HANDOVER = 2;
 
    public static final String COLLECTION_SNAPSHOT_FOLDER = "COLLECTION_SNAPSHOT";
 
    private CollectionMediaConstants() {
    }
}