<?php
class AttachmentTable extends We7Table {
protected $tableName = 'core_attachment';
public function local($local = true) {
if(! $local) {
return new WechatAttachmentTable();
}
return $this;
}
public function getById($att_id, $type = 1) {
return $this->query->from($this->tableName)->where('id', $att_id)->where('type', $type)->get();
}
public function searchAttachmentList() {
return $this->query->from($this->tableName)->orderby('createtime', 'desc')->getall();
}
public function searchWithType($type) {
$this->query->where(array('type' => $type));
return $this;
}
public function searchWithUniacid($uniacid) {
$this->query->where(array('uniacid' => $uniacid));
return $this;
}
public function searchWithUploadDir($module_upload_dir) {
$this->query->where(array('module_upload_dir' => $module_upload_dir));
return $this;
}
public function searchWithUid($uid) {
$this->query->where(array('uid' => $uid));
return $this;
}
public function searchWithTime($start_time, $end_time) {
$this->query->where(array('createtime >=' => $start_time))->where(array('createtime <=' => $end_time));
return $this;
}
public function searchWithGroupId($groupid) {
$this->query->where(array('group_id =' => $groupid));
return $this;
}
public function deleteById($id) {
return $this->where('id', $id)->delete();
}
public function searchWithUniacidOrUid($uniacid, $uid) {
if (empty($uniacid)) {
$this->query->where('uid', $uid);
} else {
$this->query->where('uniacid', $uniacid);
}
return $this;
}
}
class WechatAttachmentTable extends AttachmentTable {
protected $tableName = 'wechat_attachment';
}