安徽博创起重服务端程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
286 B

<?php
namespace app\common\enum;
class OrderGoodsEnum
{
//订单商品退款状态
const REFUND_STATUS_NO = 0;//未申请退款
const REFUND_STATUS_APPLY = 1;//申请退款
const REFUND_STATUS_WAIT = 2;//等待退款
const REFUND_STATUS_SUCCESS = 3;//退款成功
}