|
|
<?php
namespace common\models\ars;
use Yii; use yii\behaviors\TimestampBehavior;
/** * This is the model class for table "ats_after_sale". * * @property int $id * @property int $operator_id 操作者 * @property int $user_id 用户id * @property string $wx_refund_id 微信退款单号 * @property string $after_sale_sn 售后单号 * @property int $order_goods_id 订单商品id * @property int $count 退换货的商品数量 * @property int $amount 退货时实际退的金额 * @property int $type 类型 * @property int $reason 退换货理由 * @property string $description 描述 * @property string $take_shipping_sn 用户发货物流单号 * @property string $send_shipping_sn 换货商家发货的物流单号 * @property string $remarks 店家备注 * @property int $applyed_at 申请时间 * @property int $dealed_at 处理时间 * @property int $finished_at 完成时间 */ class AfterSale extends \yii\db\ActiveRecord { /** * {@inheritdoc} */ public static function tableName() { return 'ats_after_sale'; }
/** * {@inheritdoc} */ public function rules() { return [ [['operator_id', 'user_id', 'order_goods_id', 'count', 'amount', 'type', 'reason', 'applyed_at', 'dealed_at', 'finished_at'], 'integer'], [['description', 'remarks'], 'string'], [['wx_refund_id', 'after_sale_sn'], 'string', 'max' => 64], [['take_shipping_sn', 'send_shipping_sn'], 'string', 'max' => 50], ]; }
/** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'id', 'operator_id' => '操作者', 'user_id' => '用户id', 'wx_refund_id' => '微信退款单号', 'after_sale_sn' => '售后单号', 'order_goods_id' => '订单商品id', 'count' => '退换货的商品数量', 'amount' => '退货时实际退的金额', 'type' => '类型', 'reason' => '退换货理由', 'description' => '描述', 'take_shipping_sn' => '用户发货物流单号', 'send_shipping_sn' => '换货商家发货的物流单号', 'remarks' => '店家备注', 'applyed_at' => '申请时间', 'dealed_at' => '处理时间', 'finished_at' => '完成时间', ]; }
}
|