Browse Source

style:修改商品模型不合理字段名称

antshop
linyaostalker 5 years ago
parent
commit
4b0afef429
  1. 4
      backend/modules/goods/models/ars/Goods.php

4
backend/modules/goods/models/ars/Goods.php

@ -28,7 +28,7 @@ use backend\modules\goods\models\ars\Supplier;
* @property int $height 高度 * @property int $height 高度
* @property int $diameter 直径 * @property int $diameter 直径
* @property string $unit 单位 * @property string $unit 单位
* @property int $sold_count 已售数
* @property int $sold_count 总销
* @property int $limit_count 限购数量 * @property int $limit_count 限购数量
* @property int $stock 库存 * @property int $stock 库存
* @property int $stock_warn 库存警告 * @property int $stock_warn 库存警告
@ -176,7 +176,7 @@ class Goods extends \yii\db\ActiveRecord
'height' => '高度', 'height' => '高度',
'diameter' => '直径', 'diameter' => '直径',
'unit' => '单位', 'unit' => '单位',
'sold_count' => '已售数量',
'sold_count' => '总销量',
'limit_count' => '限购数量', 'limit_count' => '限购数量',
'stock' => '库存', 'stock' => '库存',
'stock_warn' => '库存警告', 'stock_warn' => '库存警告',

Loading…
Cancel
Save