package com.ruoyi.common.core.constant;
|
|
/**
|
* 订单相关状态常量/接口常量
|
* @author HJL
|
* @version 1.0
|
* @since 2024-05-30 15:54
|
*/
|
public class OrderConstants {
|
|
/**
|
* 待派单
|
*/
|
public static final Integer TO_BE_DISPATCHED = 0;
|
|
/**
|
* 待接单
|
*/
|
public static final Integer PENDING_ORDERS = 1;
|
|
/**
|
* 待上门
|
*/
|
public static final Integer STAY_AT_DOORSTEP = 2;
|
|
/**
|
* 待完工
|
*/
|
public static final Integer TO_BE_COMPLETED = 3;
|
|
/**
|
* 已完工
|
*/
|
public static final Integer COMPLETED = 4;
|
|
/**
|
* 已取消
|
*/
|
public static final Integer CANCEL = 5;
|
|
/**
|
* 年
|
*/
|
public static final String YEAR = "year";
|
|
/**
|
* 本月
|
*/
|
public static final String MONTH = "month";
|
|
/**
|
* 周
|
*/
|
public static final String WEEK = "week";
|
|
/**
|
* 当天
|
*/
|
public static final String TODAY = "today";
|
|
/**
|
* 季度
|
*/
|
public static final String QUARTER = "quarter";
|
|
|
}
|