TmpemailModel.class.php
432 Bytes
<?php
Class TmpemailModel extends Model{
//自动完成
protected $_auto = array (
array('addtime','time',1,'function'),// 新增 对time字段在新增的时候写入当前时间戳
);
//自动验证
protected $_validate =array(
array('title','require','标题不能为空',0,'',3), //新增和修改标题 标题必须填写、
array('content','require','内容不能为空',0,'',3),
);
}