HouseCommentreadrecord.php 515 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: xiaofeng
  5. * Date: 2018/3/4
  6. * Time: 上午9:25
  7. */
  8. namespace common\models;
  9. class HouseCommentreadrecord extends Common
  10. {
  11. public function rules()
  12. {
  13. return [
  14. [['cid','uid','ip'],'required','message'=>'{attribute}不能为空'],
  15. ['ip','ip'],
  16. ];
  17. }
  18. public function attributeLabels()
  19. {
  20. return [
  21. 'cid'=>'点评',
  22. 'uid'=>'用户',
  23. 'ip'=>'用户IP地址',
  24. ];
  25. }
  26. }