物业费,水电燃气费,电梯费,租金,临时收费等多种收费规则完全自定义,账单自动生成,无需人工计算
实时数据互通:一键报事报修,购买车辆月卡,管理家人信息,参加物业组织的活动,投票表决
<?php
namespace app\common\model;
use think\Model;
class Member extends Model {
// 表名,不含前缀
public $name = 'member';
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'create_time';
protected $updateTime = 'update_time';
public function community(){
return $this->belongsTo('Community','community_code','code');
}
public function house(){
return $this->belongsTo('House','house_code','code');
}
/**
* 根据小区编号,获取房产列表
* @param $cmCode
* @return false|\PDOStatement|string|\think\Collection
*/
public function getHouseByCMCode($cmCode) {
$result = $this->where(array('community_code'=>$cmCode))->field('code,name')->select();
return $result;
}
/**
* 根据小区编号,获取人员列表
* @param $cmCode
* @return false|\PDOStatement|string|\think\Collection
*/
public function getMemberByCMCode($cmCode) {
$result = $this->where(array('community_code'=>$cmCode))->field('id,name')->select();
return $result;
}
/**
* 根据小区编号,获取人员id
* @param $cmCode
* @return array
*/
public function getMemberIdByCMCode($cmCode) {
$result = $this->where(array('community_code'=>array('in',$cmCode)))->column('id');
return $result;
}
/**
* 判断指定的字段值是否已存在
* @param $key 待比对的数据库表字段名称
* @param $value 表字段值
* @param null $id 用户id,为空时,表示新记录,否则为已有记录
* @return bool
*/
public function checkExists($key,$value,$id=null){
$where = array(
$key => $value
);
if ($id) {
$rs = $this->where(array('id'=>$id))->find();
//修改后的字段值如果与原值一致,忽略
if ($rs[$key] == $value) {
return false;
}
}
$count = $this->where($where)->count();
return $count>0 ? true : false;
}
}
1、添加物业小区名称等基本信息
2、开发者可以直接增加、删除、修改成自己需要的字段名称
3、房产管理模块
4、编辑、录入小区基本信息到系统
5、人员管理模块
6、录入小区业主、住户等基本信息到系统
7、物业小区里面的车位管理功能:
8、车位使用管理
9、物业小区的报修管理、维修进度跟进
10、物业值班人员的设置
11、角色管理设置,给不同的人员设置不同的权限
需要安装部署小区物业管理系统的可以 QQ扫一下