13 lines
412 B
Java
13 lines
412 B
Java
package com.aida.buyer.common.constants;
|
|
|
|
public class StatusConstants {
|
|
|
|
public static final Integer ENABLE = 1;
|
|
public static final Integer DISABLE = 0;
|
|
public static final Integer DELETE = 1;
|
|
public static final Integer NOT_DELETE = 0;
|
|
public static final Integer AUDIT_PENDING = 0;
|
|
public static final Integer AUDIT_APPROVED = 1;
|
|
public static final Integer AUDIT_REJECTED = 2;
|
|
}
|