CommonSendStatus.java 341 B

1234567891011121314
  1. package org.jeecg.common.constant;
  2. /**
  3. * 系统通告 - 发布状态
  4. * @Author LeeShaoQing
  5. *
  6. */
  7. public interface CommonSendStatus {
  8. public static final String UNPUBLISHED_STATUS_0 = "0"; //未发布
  9. public static final String PUBLISHED_STATUS_1 = "1"; //已发布
  10. public static final String REVOKE_STATUS_2 = "2"; //撤销
  11. }