19 lines
312 B
Java
19 lines
312 B
Java
package com.xinelu.common.constant;
|
|
|
|
/**
|
|
* @description: 缴费状态
|
|
* @author: haown
|
|
* @create: 2024-02-29 09:59
|
|
**/
|
|
public class PaymentStatusConstants {
|
|
/**
|
|
* 已缴费
|
|
*/
|
|
public static final String PAID = "PAID";
|
|
|
|
/**
|
|
* 未交费
|
|
*/
|
|
public static final String UNPAID_FEES = "UNPAID_FEES";
|
|
}
|