| 1234567891011121314151617181920212223242526 |
- <?php
- /**
- * 洛阳赤炎鹰网络科技有限公司
- * https://www.cyyvip.com
- * Copyright (c) 2022 赤店商城 All rights reserved.
- */
- namespace Common\Model;
- use Common\Model\CommonModel;
- class RoleModel extends CommonModel{
-
- //自动验证
- protected $_validate = array(
- //array(验证字段,验证规则,错误提示,验证条件,附加规则,验证时间)
- array('name', 'require', '角色名称不能为空!', 1, 'regex', CommonModel:: MODEL_BOTH ),
- );
-
- protected $_auto = array(
- array('create_time','time',1,'function'),
- array('update_time','time',2,'function'),
-
- );
-
- protected function _before_write(&$data) {
- parent::_before_write($data);
- }
- }
|