QcTaskStatusConstants.java 171 B

1234567891011
  1. package com.yingpaipay.business.constant;
  2. public interface QcTaskStatusConstants {
  3. Integer NOT_STARTED = 0;
  4. Integer UNDERWAY = 1;
  5. Integer FINISHED = 2;
  6. }