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() { } }