Fleaupload.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 Fleaupload extends BaseModel
  17. {
  18. public $page_info;
  19. /**
  20. * 取单个内容
  21. * @access public
  22. * @author csdeshang
  23. * @param int $id 分类ID
  24. * @return array 数组类型的返回结果
  25. */
  26. public function getOneFleaupload($id){
  27. $result = Db::name('fleaupload')->where(array('fleaupload_id'=>intval($id)))->find();
  28. return $result;
  29. }
  30. /**
  31. * 新增
  32. * @access public
  33. * @author csdeshang
  34. * @param array $data 参数内容
  35. * @return bool 布尔类型的返回结果
  36. */
  37. public function addFleaupload($data){
  38. if (empty($data)){
  39. return false;
  40. }
  41. if (is_array($data)){
  42. $result = Db::name('fleaupload')->insertGetId($data);
  43. return $result;
  44. }else {
  45. return false;
  46. }
  47. }
  48. /**
  49. * 更新信息
  50. * @access public
  51. * @author csdeshang
  52. * @param array $data 更新数据
  53. * @param array $condition 条件数组
  54. * @return bool 布尔类型的返回结果
  55. */
  56. public function editFleaupload($data, $condition) {
  57. $result = Db::name('fleaupload')->where($condition)->update($data);
  58. return $result;
  59. }
  60. /**
  61. * 删除图片信息,根据where
  62. * @access public
  63. * @author csdeshang
  64. * @param array $condition 条件数组
  65. * @return bool 布尔类型的返回结果
  66. */
  67. public function delFleaupload($condition , $store_id){
  68. if (empty($condition)) {
  69. return false;
  70. }
  71. $image_more = Db::name('fleaupload')->where($condition)->field('fleafile_name')->select()->toArray();
  72. if (is_array($image_more) && !empty($image_more)) {
  73. foreach ($image_more as $v) {
  74. @unlink(BASE_UPLOAD_PATH . DIRECTORY_SEPARATOR . ATTACH_MFLEA . DIRECTORY_SEPARATOR . $store_id . DIRECTORY_SEPARATOR . $v['fleafile_name']);
  75. }
  76. }
  77. $state = Db::name('fleaupload')->where($condition)->delete();
  78. return $state;
  79. }
  80. }