Document.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. * 版权所有 2014-2028 浙江惠利玛产业互联网有限公司,并保留所有权利。
  9. * 网站地址: https://www.valimart.net/
  10. * ----------------------------------------------------------------------------
  11. *
  12. * ============================================================================
  13. * 数据层模型
  14. */
  15. class Document extends BaseModel {
  16. /**
  17. * 查询所有系统文章
  18. * @access public
  19. * @author csdeshang
  20. * @return type
  21. */
  22. public function getDocumentList() {
  23. return Db::name('document')->select()->toArray();
  24. }
  25. /**
  26. * 根据编号查询一条
  27. * @access public
  28. * @author csdeshang
  29. * @param int $id 文章id
  30. * @return array
  31. */
  32. public function getOneDocumentById($id) {
  33. return Db::name('document')->where('document_id',$id)->find();
  34. }
  35. /**
  36. * 根据标识码查询一条
  37. * @access public
  38. * @author csdeshang
  39. * @param type $code 标识码
  40. * @return type
  41. */
  42. public function getOneDocumentByCode($code) {
  43. return Db::name('document')->where('document_code',$code)->find();
  44. }
  45. /**
  46. * 更新
  47. * @access public
  48. * @author csdeshang
  49. * @param array $data 更新数据
  50. * @return bool
  51. */
  52. public function editDocument($data) {
  53. return Db::name('document')->where('document_id',$data['document_id'])->update($data);
  54. }
  55. }
  56. ?>