You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pdd-order-api/app/libs/const/class.BizConst.php

14 lines
256 B
PHP

<?php
class BizConst {
const goodsOnline = 'ON_SALE';
const goodsOffline = 'FOR_SALE';
const goodsUnknown = 'Unknown';
const goodsAll = 'ALL';
const goodsIsMove = 'isMove';
const goodsNotMove = 'isNoMove';
const batchSearchDdcGoodsCount = 10;
}