123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "Rules".
- *
- * @property int $id id
- * @property string|null $rule_name 规章名称
- * @property string|null $rule_category 规章类别
- * @property string|null $rule_content 规章类别
- * @property int|null $rule_status 规章状态0冻结1使用
- * @property int|null $create_time 创建日期
- * @property int|null $end_time 废止时间
- * @property string|null $update_time 更新时间
- * @property string|null $delete_time 更新时间
- * @property int|null $version 规章版本
- * @property string|null $rule_name_version 规章名称+规章版本
- */
- class Rules extends \yii\db\ActiveRecord
- {
- public $rule_name_version;
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'rules';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'rule_name' => '规章名称',
- 'rule_content' => '规章要点',
- 'rule_category' => '规章类别',
- 'rule_status' => '规章状态0冻结1使用',
- 'create_time' => '创建日期',
- 'update_time' => '更新时间',
- 'version' => '规章版本',
- ];
- }
- }
|