Rules.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "Rules".
  6. *
  7. * @property int $id id
  8. * @property string|null $rule_name 规章名称
  9. * @property string|null $rule_category 规章类别
  10. * @property string|null $rule_content 规章类别
  11. * @property int|null $rule_status 规章状态0冻结1使用
  12. * @property int|null $create_time 创建日期
  13. * @property int|null $end_time 废止时间
  14. * @property string|null $update_time 更新时间
  15. * @property string|null $delete_time 更新时间
  16. * @property int|null $version 规章版本
  17. * @property string|null $rule_name_version 规章名称+规章版本
  18. */
  19. class Rules extends \yii\db\ActiveRecord
  20. {
  21. public $rule_name_version;
  22. /**
  23. * {@inheritdoc}
  24. */
  25. public static function tableName()
  26. {
  27. return 'rules';
  28. }
  29. /**
  30. * {@inheritdoc}
  31. */
  32. public function rules()
  33. {
  34. return [
  35. ];
  36. }
  37. /**
  38. * {@inheritdoc}
  39. */
  40. public function attributeLabels()
  41. {
  42. return [
  43. 'id' => 'ID',
  44. 'rule_name' => '规章名称',
  45. 'rule_content' => '规章要点',
  46. 'rule_category' => '规章类别',
  47. 'rule_status' => '规章状态0冻结1使用',
  48. 'create_time' => '创建日期',
  49. 'update_time' => '更新时间',
  50. 'version' => '规章版本',
  51. ];
  52. }
  53. }