分账更新购药订单分账

This commit is contained in:
2025-10-20 15:50:53 +08:00
parent daea14dbdb
commit 05461af673
2 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace common\models\newDb;
use yii\behaviors\TimestampBehavior;
use yii\db\ActiveRecord;
class RegisterInfoModel extends \common\modelsgii\newDb\RegisterInfoModelGii
{
public function behaviors()
{
return [
[
'class' => TimestampBehavior::class,
'attributes' => [
],
],
];
}
}

View File

@@ -0,0 +1,36 @@
<?php
namespace common\modelsgii\newDb;
/**
* This is the model class for table "yii_address".
*
*/
class RegisterInfoModelGii extends \common\core\BaseNewActiveRecord
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'xk_register_info';
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
];
}
}