| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- namespace app\models;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- /**
- * This is the model class for table "{{%share_group_money_sub}}".
- *
- * @property integer $id
- * @property integer $order_id
- * @property float $amount
- * @property float $radix
- * @property integer $share_money_id
- * @property string $goods_name
- * @property integer $is_send
- * @property integer $created_at
- * @property integer $updated_at
- */
- class ShareGroupMoneySub extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%share_group_money_sub}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class
- ]
- ];
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'order_id', 'share_money_id', 'created_at', 'updated_at', 'is_send'], 'integer'],
- [['amount', 'radix'], 'number'],
- [['goods_name'], 'string']
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => '',
- 'share_money_id' => '主表ID',
- 'user_id' => '用户ID',
- 'amount' => '佣金金额',
- 'radix' => '佣金基数',
- 'is_send' => '是否发放佣金',
- 'created_at' => '',
- 'updated_at' => ''
- ];
- }
- }
|