CommonSendStatus.java 313 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 package com.skua.common.constant; /** * 系统通告 - 发布状态 */ public interface CommonSendStatus { public static final String UNPUBLISHED_STATUS_0 = "0"; //未发布 public static final String PUBLISHED_STATUS_1 = "1"; //已发布 public static final String REVOKE_STATUS_2 = "2"; //撤销 }