Document.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 数据层模型
  15. */
  16. class Document extends BaseModel {
  17. /**
  18. * 查询所有系统文章
  19. * @access public
  20. * @author csdeshang
  21. * @return type
  22. */
  23. public function getDocumentList() {
  24. return Db::name('document')->select()->toArray();
  25. }
  26. /**
  27. * 根据编号查询一条
  28. * @access public
  29. * @author csdeshang
  30. * @param int $id 文章id
  31. * @return array
  32. */
  33. public function getOneDocumentById($id) {
  34. return Db::name('document')->where('document_id',$id)->find();
  35. }
  36. /**
  37. * 根据标识码查询一条
  38. * @access public
  39. * @author csdeshang
  40. * @param type $code 标识码
  41. * @return type
  42. */
  43. public function getOneDocumentByCode($code) {
  44. return Db::name('document')->where('document_code',$code)->find();
  45. }
  46. /**
  47. * 更新
  48. * @access public
  49. * @author csdeshang
  50. * @param array $data 更新数据
  51. * @return bool
  52. */
  53. public function editDocument($data) {
  54. return Db::name('document')->where('document_id',$data['document_id'])->update($data);
  55. }
  56. }
  57. ?>