Sellerlog.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 Sellerlog extends BaseModel {
  17. public $page_info;
  18. /**
  19. * 读取列表
  20. * @access public
  21. * @author csdeshang
  22. * @param array $condition 条件
  23. * @param int $pagesize 分页
  24. * @param string $order 排序
  25. * @param string $field 字段
  26. * @return array
  27. */
  28. public function getSellerlogList($condition, $pagesize = '', $order = '', $field = '*') {
  29. if($pagesize){
  30. $result = Db::name('sellerlog')->field($field)->where($condition)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  31. $this->page_info = $result;
  32. return $result->items();
  33. }else{
  34. $result = Db::name('sellerlog')->field($field)->where($condition)->order($order)->select()->toArray();
  35. return $result;
  36. }
  37. }
  38. /**
  39. * 读取单条记录
  40. * @access public
  41. * @author csdeshang
  42. * @param type $condition 条件
  43. * @return type
  44. */
  45. public function getSellerlogInfo($condition) {
  46. $result = Db::name('sellerlog')->where($condition)->find();
  47. return $result;
  48. }
  49. /**
  50. * 增加
  51. * @access public
  52. * @author csdeshang
  53. * @param array $data 数据
  54. * @return bool
  55. */
  56. public function addSellerlog($data) {
  57. return Db::name('sellerlog')->insertGetId($data);
  58. }
  59. /**
  60. * 删除
  61. * @access public
  62. * @author csdeshang
  63. * @param array $condition 条件
  64. * @return bool
  65. */
  66. public function delSellerlog($condition) {
  67. return Db::name('sellerlog')->where($condition)->delete();
  68. }
  69. }