diff --git a/README.md b/README.md index dd276e67..0bea7fad 100644 --- a/README.md +++ b/README.md @@ -133,14 +133,13 @@ ppt //存放上课使用的ppt文件,已转换成对应的pdf,避免不同 96 mybatis基本使用5 2020/04/04 15:00-17:00 97 mybatis基本使用6 2020/04/04 20:00-22:00 98 Mybatis源码讲解1 2020/04/05 15:00-17:00 -99 何家云项目实战1 2020/04/11 15:00-17:00 -100 何家云项目实战2 2020/04/11 20:00-22:00 -101 何家云项目实战3 2020/04/12 15:00-17:00 -102 何家云项目实战4 2020/04/12 20:00-22:00 -103 何家云项目实战5 2020/04/18 15:00-17:00 -104 何家云项目实战6 2020/04/18 20:00-22:00 -105 何家云项目实战7 2020/04/19 15:00-17:00 -106 何家云项目实战8 2020/04/19 20:00-22:00 -......持续更新 +99 何家云项目实战 2020/04/11 15:00-17:00 +100 何家云项目实战2 2020/04/18 15:00-17:00 +101 何家云项目实战3 2020/04/18 20:00-22:00 +102 何家云项目实战4 2020/04/19 15:00-17:00 +103 何家云项目实战5 2020/04/25 15:00-17:00 +104 何家云项目实战6 2020/04/25 20:00-22:00 +105 后端课简历辅导 2020/05/10 15:00-17:00 +106 后端课面试指导 2020/05/10 20:00-22:00 ``` diff --git "a/javaframework/springmvc/05SpringMVC\347\232\204\345\237\272\346\234\254\344\275\277\347\224\2504/03SpringMVC\347\232\204\344\275\277\347\224\250.md" "b/javaframework/springmvc/05SpringMVC\347\232\204\345\237\272\346\234\254\344\275\277\347\224\2504/03SpringMVC\347\232\204\344\275\277\347\224\250.md" index 5bc96302..abab52f3 100644 --- "a/javaframework/springmvc/05SpringMVC\347\232\204\345\237\272\346\234\254\344\275\277\347\224\2504/03SpringMVC\347\232\204\344\275\277\347\224\250.md" +++ "b/javaframework/springmvc/05SpringMVC\347\232\204\345\237\272\346\234\254\344\275\277\347\224\2504/03SpringMVC\347\232\204\344\275\277\347\224\250.md" @@ -968,11 +968,11 @@ public class MySecondInterceptor implements HandlerInterceptor { ​ 2、过滤器依赖于servlet容器,而拦截器不依赖与Servlet容器 -​ 3、连接器几乎对所有的请求都起作用和,而拦截器只能对action请求起作用 +​ 3、过滤器几乎对所有的请求都起作用,而拦截器只能对action请求起作用 ​ 4、拦截器可以访问action的上下文,而过滤器不可以 -​ 5、在action的生命周期中,拦截器可以多次调用,而过滤器只能在容器初始化的时候调用一次 +​ 5、在controller的生命周期中,拦截器可以多次调用,而过滤器只能在web容器初始化的时候初始化一次,后续匹配的所有请求都会经过过滤器来进行过滤 ![image-20200313190146352](image\拦截器跟过滤器的执行流程.png) diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/03 \346\245\274\347\233\230\347\256\241\347\220\206.md" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/03 \346\245\274\347\233\230\347\256\241\347\220\206.md" new file mode 100644 index 00000000..13177b6f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/03 \346\245\274\347\233\230\347\256\241\347\220\206.md" @@ -0,0 +1,3162 @@ +# 03 楼盘管理 + +### 1、新增住宅向导-Step1 + +​ 本模块来完成新增住宅向导的功能 + +​ 1、当点击新增住宅向导之后,需要添加查询相关的公司数据作为下拉列表的展示,添加前端请求 + +创建新的请求文件 + +estate.js + +```js +import { axios } from '@/utils/request' + +export function selectCompany() { + return axios({ + url: '/estate/selectCompany', + method: 'get' + }) +} + +export function insertEstate(params) { + return axios({ + url: '/estate/insertEstate', + method: 'post', + data: params + }) +} + +``` + +```js + +``` + +​ 2、编写后端逻辑 + +EstateController.java + +```java +package com.bjmsb.controller; + +import com.alibaba.fastjson.JSONObject; +import com.bjmsb.bean.FcEstate; +import com.bjmsb.json.Common; +import com.bjmsb.service.EstateService; +import com.bjmsb.service.common.FcEstateService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.CrossOrigin; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@RestController +//@CrossOrigin(origins = "*",allowCredentials="true",allowedHeaders = "*",methods = {}) +public class EstateController { + + @Autowired + private EstateService estateService; + + @RequestMapping("/estate/selectCompany") + public JSONObject selectCompany(){ + System.out.println("/estate/selectCompany"); + List tblCompanyNames = estateService.selectCompany(); + return JSONObject.parseObject(JSONObject.toJSONString(new Common(tblCompanyNames))); + } + + @RequestMapping("/estate/insertEstate") + public JSONObject insertEstate(FcEstate fcEstate){ + System.out.println("insert estate"); + Integer result = estateService.insertEstate(fcEstate); + if (result==0){ + return JSONObject.parseObject(JSONObject.toJSONString(new Common("房产编码已存在","0"))); + }else{ + return JSONObject.parseObject(JSONObject.toJSONString(new Common("插入房产成功","1"))); + } + } +} +``` + +EstateService.java + +```java +package com.bjmsb.service; + +import com.bjmsb.bean.FcEstate; +import com.bjmsb.bean.TblCompany; +import com.bjmsb.mapper.FcEstateMapper; +import com.bjmsb.mapper.TblCompanyMapper; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class EstateService { + + @Autowired + private TblCompanyMapper tblCompanyMapper; + + @Autowired + private FcEstateMapper fcEstateMapper; + + public List selectCompany(){ + List tblCompanies = tblCompanyMapper.selectCompany(); + return tblCompanies; + } + + /** + * 在此逻辑中需要先做判断,判断数据库中是否已经存在编码,如果存在,那么对用户发出提示 + * @param fcEstate + * @return + */ + public Integer insertEstate(FcEstate fcEstate){ + int result = 0; + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("estate_code", fcEstate.getEstateCode()); + FcEstate fe = fcEstateMapper.selectOne(queryWrapper); + if (fe==null){ + result = fcEstateMapper.insert(fcEstate); + } + return result; + } +} +``` + +TblCompanyMapper.java + +```java +@Component +public interface TblCompanyMapper extends BaseMapper { + + public List selectCompany(); +} +``` + +TblCompanyMapper.xml + +```xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, company_full_name, company_simple_name, company_english_name, company_brand, company_type, company_trade, company_addr, post_code, company_phone, company_fax, company_website, company_email, company_national, company_land, open_bank, bank_account, company_leader, register_date, register_money, employee_number, company_intro, remark + + + + + + +``` + +FcEstateMapper.java + +```java +@Component +public interface FcEstateMapper extends BaseMapper { + +} +``` + +FcEstateMapper.xml + +```xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, estate_code, estate_name, estate_addr, cover_area, build_area, green_area, road_area, building_number, building_leader, company_name, company_behalf, contact, contact_phone, contact_addr, car_space_delay_rate, car_space_over_day, estate_type, street_lamp_number, hfcNum, remark, company + + +``` + +### 2、Step1-Step2数据传递问题 + +​ 当完成第二个页面的跳转之后,大家发现了一个问题,在页面的最上面会引入一个楼宇的数量,我们很明显的知道楼宇的数据来源于step1中设置的值,那么问题就来了,如何把第一个页面设置的值传递到第二个页面呢?这里我们使用vuex这样一个组件来完成具体的功能。 + +1、在step1中实现页面跳转之前,我们需要实现如下的定义: + +```js + this.$store.commit('SET_TITLE',{ + buildingNumber: this.form.buildingNumber + }) + this.$emit('nextStep') +``` + +2、在store目录下创建一个新的文件叫做oneStep.js的文件,定义如下内容 + +```js +const oneStep = { + state: { + buildingNumber: '' + }, + mutations: { + // 这里只能是同步的 + SET_TITLE(state, payload) { + console.log(payload) + state.buildingNumber = payload.buildingNumber + } + }, + actions: { + + }, + getters: { + + } +} +export default oneStep +``` + +3、在下面的index.js文件中将定义好的oneStep定义成一个模块 + +```js +import Vue from 'vue' +import Vuex from 'vuex' + +import app from './modules/app' +import user from './modules/user' +// default router permission control +import permission from './modules/permission' +import oneStep from './modules/oneStep' +// dynamic router permission control (Experimental) +// import permission from './modules/async-router' +import getters from './getters' + +Vue.use(Vuex) + +export default new Vuex.Store({ + modules: { + app, + user, + permission, + oneStep + }, + state: { + + }, + mutations: { + + }, + actions: { + + }, + getters +}) +``` + +4、在step2.vue中添加如下代码进行引入 + +```js + {{ this.$store.state.oneStep.buildingNumber }} +``` + +### 3、新增住宅向导-Step2 + +​ 下面开始来完成Step2的功能,其实这部分看起来是比较简单的,但是你需要注意了正儿八经开始做的时候,你就要疯了,原因也很简单,我们在Step1的时候设置过楼宇的数量,那么就意味着数据库中就应该由与之对应的数据库表记录,此时你发现数据库是空的,因此这种时候,我们需要先完成插入的功能,然后再完成数据更新的过程。 + +1、修改页面Step2.vue文件,添加如下代码 + +```vue + + + + + +``` + +2、编写后端服务 + +EstateController.java + +```java +package com.bjmsb.controller; + +import com.alibaba.fastjson.JSONObject; +import com.bjmsb.bean.FcBuilding; +import com.bjmsb.bean.FcEstate; +import com.bjmsb.json.Common; +import com.bjmsb.service.EstateService; +import com.bjmsb.service.common.FcEstateService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.CrossOrigin; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@RestController +//@CrossOrigin(origins = "*",allowCredentials="true",allowedHeaders = "*",methods = {}) +public class EstateController { + + @Autowired + private EstateService estateService; + + @RequestMapping("/estate/selectCompany") + public JSONObject selectCompany(){ + System.out.println("/estate/selectCompany"); + List tblCompanyNames = estateService.selectCompany(); + return JSONObject.parseObject(JSONObject.toJSONString(new Common(tblCompanyNames))); + } + + @RequestMapping("/estate/insertEstate") + public JSONObject insertEstate(FcEstate fcEstate){ + System.out.println("insert estate"); + Integer integer = estateService.insertEstate(fcEstate); + return JSONObject.parseObject(JSONObject.toJSONString(new Common("插入房产成功"))); + } + + @RequestMapping("/estate/selectBuilding") + public JSONObject selectBuilding(Integer buildingNumber,String estateCode){ + List fcBuildings = estateService.selectBuilding(buildingNumber, estateCode); + for (FcBuilding fcBuilding : fcBuildings) { + System.out.println(fcBuilding.getId()); + } + return JSONObject.parseObject(JSONObject.toJSONString(new Common(fcBuildings))); + } +} +``` + +EstateService.java + +```java +package com.bjmsb.service; + +import com.bjmsb.bean.FcBuilding; +import com.bjmsb.bean.FcEstate; +import com.bjmsb.bean.TblCompany; +import com.bjmsb.mapper.FcBuildingMapper; +import com.bjmsb.mapper.FcEstateMapper; +import com.bjmsb.mapper.TblCompanyMapper; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.List; + +@Service +public class EstateService { + + @Autowired + private TblCompanyMapper tblCompanyMapper; + + @Autowired + private FcEstateMapper fcEstateMapper; + @Autowired + private FcBuildingMapper fcBuildingMapper; + + public List selectCompany(){ + List tblCompanies = tblCompanyMapper.selectCompany(); + return tblCompanies; + } + + public Integer insertEstate(FcEstate fcEstate){ + int insert = fcEstateMapper.insert(fcEstate); + return insert; + } + + /** + * 在进行查询之前,因为数据库中没有原始数据,因此需要用户先插入数据然后再将数据回显更新 + * @param buildingNumber + * @param estaeCode + * @return + */ + public List selectBuilding(Integer buildingNumber,String estaeCode ){ + //定义返回的数据集合 + List fcBuildings = new ArrayList<>(); + //创建插入的对象 + //插入数据,完成数据插入之后,id会直接回显,因此直接显式即可 + for(int i = 0;i +
+ + 楼宇数量: + {{ this.$store.state.oneStep.buildingNumber }} + + + + + + + + + + + + + + + + + 下一步 + + +
+ + + + + + +``` + +编写后端逻辑 + +EstateController.java + +```java +package com.bjmsb.controller; + +import com.alibaba.fastjson.JSONObject; +import com.bjmsb.bean.FcBuilding; +import com.bjmsb.bean.FcEstate; +import com.bjmsb.json.Common; +import com.bjmsb.service.EstateService; +import com.bjmsb.service.common.FcEstateService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.CrossOrigin; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +@RestController +//@CrossOrigin(origins = "*",allowCredentials="true",allowedHeaders = "*",methods = {}) +public class EstateController { + + @Autowired + private EstateService estateService; + + @RequestMapping("/estate/selectCompany") + public JSONObject selectCompany(){ + System.out.println("/estate/selectCompany"); + List tblCompanyNames = estateService.selectCompany(); + return JSONObject.parseObject(JSONObject.toJSONString(new Common(tblCompanyNames))); + } + + @RequestMapping("/estate/insertEstate") + public JSONObject insertEstate(FcEstate fcEstate){ + System.out.println("insert estate"); + Integer integer = estateService.insertEstate(fcEstate); + return JSONObject.parseObject(JSONObject.toJSONString(new Common("插入房产成功"))); + } + + @RequestMapping("/estate/selectBuilding") + public JSONObject selectBuilding(Integer buildingNumber,String estateCode){ + List fcBuildings = estateService.selectBuilding(buildingNumber, estateCode); + for (FcBuilding fcBuilding : fcBuildings) { + System.out.println(fcBuilding.getId()); + } + return JSONObject.parseObject(JSONObject.toJSONString(new Common(fcBuildings))); + } + + @RequestMapping("/estate/updateBuilding") + public JSONObject updateBuilding(FcBuilding fcBuilding){ + System.out.println("update building"); + System.out.println(fcBuilding); + Integer update = estateService.updateBuilding(fcBuilding); + System.out.println(update); + return JSONObject.parseObject(JSONObject.toJSONString(new Common("插入楼宇成功"))); + } +} +``` + +EstateService.java + +```java +package com.bjmsb.service; + +import com.bjmsb.bean.FcBuilding; +import com.bjmsb.bean.FcEstate; +import com.bjmsb.bean.TblCompany; +import com.bjmsb.mapper.FcBuildingMapper; +import com.bjmsb.mapper.FcEstateMapper; +import com.bjmsb.mapper.TblCompanyMapper; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.List; + +@Service +public class EstateService { + + @Autowired + private TblCompanyMapper tblCompanyMapper; + @Autowired + private FcEstateMapper fcEstateMapper; + @Autowired + private FcBuildingMapper fcBuildingMapper; + + public List selectCompany(){ + List tblCompanies = tblCompanyMapper.selectCompany(); + return tblCompanies; + } + + public Integer insertEstate(FcEstate fcEstate){ + int insert = fcEstateMapper.insert(fcEstate); + return insert; + } + + /** + * 在进行查询之前,因为数据库中没有原始数据,因此需要用户先插入数据然后再将数据回显更新 + * @param buildingNumber + * @param estaeCode + * @return + */ + public List selectBuilding(Integer buildingNumber,String estaeCode ){ + //定义返回的数据集合 + List fcBuildings = new ArrayList<>(); + //创建插入的对象 + //插入数据,完成数据插入之后,id会直接回显,因此直接显式即可 + for(int i = 0;i +
+ + + 楼层数量: + 开始房号: + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 结束房号: + + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + + + + + + + + + + + 下一步 + + +
+ + + + + + +``` + +2、编写后端逻辑 + +UnitMessage.java + +```java +package com.bjmsb.vo; + +public class UnitMessage { + + private String buildingCode; + private Integer unitCount; + + public UnitMessage() { + } + + public UnitMessage(String buildingCode, Integer unitCount) { + this.buildingCode = buildingCode; + this.unitCount = unitCount; + } + + public String getBuildingCode() { + return buildingCode; + } + + public void setBuildingCode(String buildingCode) { + this.buildingCode = buildingCode; + } + + public Integer getUnitCount() { + return unitCount; + } + + public void setUnitCount(Integer unitCount) { + this.unitCount = unitCount; + } + + @Override + public String toString() { + return "UnitMessage{" + + "buildingCode='" + buildingCode + '\'' + + ", unitCount=" + unitCount + + '}'; + } +} + +``` + +EstateController.java + +```java + @RequestMapping("/estate/selectUnit") + public JSONObject selectUnit(@RequestBody UnitMessage[] unitMessages){ + System.out.println("selectUnit"); + System.out.println(unitMessages[0]); + List allUnit = new ArrayList<>(); + for (UnitMessage unitMessage : unitMessages) { + allUnit.addAll(estateService.selectUnit(unitMessage)); + } + System.out.println(allUnit.size()); + return JSONObject.parseObject(JSONObject.toJSONString(new Common(allUnit))); + } +@RequestMapping("/estate/updateUnit") + public JSONObject updateUnit(FcUnit fcUnit){ + System.out.println("update unit"); + System.out.println(fcUnit); + Integer update = estateService.updateUnit(fcUnit); + System.out.println(update); + return JSONObject.parseObject(JSONObject.toJSONString(new Common("更新单元成功"))); + } +``` + +EstateService.java + +```java + /** + * 此处的逻辑跟上述的逻辑相同,只需要插入对应的数据即可 + * @return + */ + public List selectUnit(UnitMessage unitMessage){ + //定义返回的集合 + List fcUnits = new ArrayList<>(); + //操作插入数据 + for (int i = 0;i +
+ + + 选择楼宇: + + + {{ item.buildingName }} + + 选择单元: + + + {{ item.unitName }} + + + 建筑面积: + + 使用面积: + + + + + + + + + 上一步 + 下一步 + + +
+ + + + + +``` + +2、后端逻辑编写 + +```java + @RequestMapping("/estate/insertCell") + public String insertCell(@RequestBody List cellMessage){ + System.out.println("estate insertCell"); + List fcCells = estateService.insertCell(cellMessage); + return JSONObject.toJSONString(new Common(fcCells)); + } + + @RequestMapping("/estate/selectBuildingName") + public String selectBuildingName(String estateCode){ + System.out.println("estate selectBuildingName"); + List fcBuildings = estateService.selectBuildingName(estateCode); + System.out.println(fcBuildings); + return JSONObject.toJSONString(new Common(fcBuildings)); + } + + @RequestMapping("/estate/selectUnitName") + public String selectUnitName(String buildingCode){ + System.out.println("select unitName"); + List fcUnits = estateService.selectUnitName(buildingCode); + System.out.println(fcUnits); + return JSONObject.toJSONString(new Common(fcUnits)); + } + + @RequestMapping("/estate/selectCell") + public String selectCell(String unitCode){ + System.out.println("select cell"); + System.out.println(unitCode); + List fcCells = estateService.selectCell(unitCode); + System.out.println(fcCells); + return JSONObject.toJSONString(new Common(fcCells)); + } + + @RequestMapping("/estate/updateCell") + public String updateCell(FcCell fcCell){ + System.out.println("update cell"); + System.out.println(fcCell); + Integer update = estateService.updateCell(fcCell); + System.out.println(update); + return JSONObject.toJSONString(new Common("更新房间成功")); + } +``` + +```java +public List insertCell(List cellMessages){ + List fcCells = new ArrayList<>(); + for (CellMessage cellMessage : cellMessages) { + for(int i = 1;i<=cellMessage.getStopFloor();i++){ + for(int j = 1;j<=Integer.valueOf(cellMessage.getStopCellId());j++){ + FcCell cell = new FcCell(); + cell.setUnitCode(cellMessage.getUnitCode()); + cell.setCellName(i+"0"+j); + cell.setCellCode(cellMessage.getUnitCode()+"C"+i+"0"+j); + cell.setFloorNumber(i); + fcCellMapper.insert(cell); + fcCells.add(cell); + } + } + } + return fcCells; + } + + /** + * 查询楼宇的名称 + * @param estateCode + * @return + */ + public List selectBuildingName(String estateCode){ + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("estate_code",estateCode); + queryWrapper.select("building_code","building_name"); + List fcBuildings = fcBuildingMapper.selectList(queryWrapper); + return fcBuildings; + } + + public List selectUnitName(String buildingCode){ + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("building_code",buildingCode); + queryWrapper.select("unit_code","unit_name"); + List fcUnits = fcUnitMapper.selectList(queryWrapper); + return fcUnits; + } + + public List selectCell(String unitCode){ + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("unit_code",unitCode); + List fcCells = fcCellMapper.selectList(queryWrapper); + return fcCells; + } + + public Integer updateCell(FcCell fcCell){ + int update = fcCellMapper.updateById(fcCell); + return update; + } +``` + +到此时为止,我们的新增住宅向导就编写完毕 + +### 8、批量增加楼宇 + +Step1.vue + +```vue + + + + + +``` + +Step2.vue + +```vue + + + + + + +``` + +后台逻辑: + +```java + @RequestMapping("/estate/selectCompany") + public JSONObject selectCompany(){ + System.out.println("/estate/selectCompany"); + List tblCompanyNames = estateService.selectCompany(); + return JSONObject.parseObject(JSONObject.toJSONString(new Common(tblCompanyNames))); + } + @RequestMapping("/estate/selectEstate") + public String selectEstate(String company){ + List fcEstates = estateService.selectEstate(company); + return JSONObject.toJSONString(new Common(fcEstates)); + } +@RequestMapping("/estate/selectCountBuilding") + public String selectCountBuilding(String estateCode){ + Integer integer = estateService.selectCountBuilding(estateCode); + System.out.println("-------------------"+integer); + return JSONObject.toJSONString(new Common(integer)); + } +``` + +```java + public List selectBuilding(Integer buildingNumber,String estateCode ){ + FcBuilding lastRecord = fcBuildingMapper.selectLastRecord(); + int count = 0; + if (lastRecord == null){ + count = 1; + }else{ + count = Integer.parseInt(lastRecord.getBuildingName().replace("第","").replace("号楼",""))+1; + } + //创建插入的对象 + //插入数据,完成数据插入之后,id会直接回显,因此直接显式即可 + for(int i = 0;i fcBuildings = fcBuildingMapper.selectList(null); + return fcBuildings; + } +public List selectEstate(String company){ + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("company",company); + queryWrapper.select("estate_code","estate_name"); + List list = fcEstateMapper.selectList(queryWrapper); + return list; + } + + public Integer selectCountBuilding(String estateCode){ + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("estate_code",estateCode); + Integer integer = fcBuildingMapper.selectCount(queryWrapper); + System.out.println("integer:"+integer); + return integer; + } +``` + +### 9、住宅维护 + +```vue + + + + +``` + +house.edit.vue + +```vue + + + + + + +``` + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.gitignore" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.gitignore" new file mode 100644 index 00000000..a2a3040a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.gitignore" @@ -0,0 +1,31 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/** +!**/src/test/** + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ + +### VS Code ### +.vscode/ diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" new file mode 100644 index 00000000..e76d1f32 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" @@ -0,0 +1,117 @@ +/* + * Copyright 2007-present the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import java.net.*; +import java.io.*; +import java.nio.channels.*; +import java.util.Properties; + +public class MavenWrapperDownloader { + + private static final String WRAPPER_VERSION = "0.5.6"; + /** + * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. + */ + private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" + + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar"; + + /** + * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to + * use instead of the default one. + */ + private static final String MAVEN_WRAPPER_PROPERTIES_PATH = + ".mvn/wrapper/maven-wrapper.properties"; + + /** + * Path where the maven-wrapper.jar will be saved to. + */ + private static final String MAVEN_WRAPPER_JAR_PATH = + ".mvn/wrapper/maven-wrapper.jar"; + + /** + * Name of the property which should be used to override the default download url for the wrapper. + */ + private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; + + public static void main(String args[]) { + System.out.println("- Downloader started"); + File baseDirectory = new File(args[0]); + System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); + + // If the maven-wrapper.properties exists, read it and check if it contains a custom + // wrapperUrl parameter. + File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); + String url = DEFAULT_DOWNLOAD_URL; + if(mavenWrapperPropertyFile.exists()) { + FileInputStream mavenWrapperPropertyFileInputStream = null; + try { + mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); + Properties mavenWrapperProperties = new Properties(); + mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); + url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); + } catch (IOException e) { + System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); + } finally { + try { + if(mavenWrapperPropertyFileInputStream != null) { + mavenWrapperPropertyFileInputStream.close(); + } + } catch (IOException e) { + // Ignore ... + } + } + } + System.out.println("- Downloading from: " + url); + + File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); + if(!outputFile.getParentFile().exists()) { + if(!outputFile.getParentFile().mkdirs()) { + System.out.println( + "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'"); + } + } + System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); + try { + downloadFileFromURL(url, outputFile); + System.out.println("Done"); + System.exit(0); + } catch (Throwable e) { + System.out.println("- Error downloading"); + e.printStackTrace(); + System.exit(1); + } + } + + private static void downloadFileFromURL(String urlString, File destination) throws Exception { + if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { + String username = System.getenv("MVNW_USERNAME"); + char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); + Authenticator.setDefault(new Authenticator() { + @Override + protected PasswordAuthentication getPasswordAuthentication() { + return new PasswordAuthentication(username, password); + } + }); + } + URL website = new URL(urlString); + ReadableByteChannel rbc; + rbc = Channels.newChannel(website.openStream()); + FileOutputStream fos = new FileOutputStream(destination); + fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); + fos.close(); + rbc.close(); + } + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.mvn/wrapper/maven-wrapper.jar" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.mvn/wrapper/maven-wrapper.jar" new file mode 100644 index 00000000..2cc7d4a5 Binary files /dev/null and "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.mvn/wrapper/maven-wrapper.jar" differ diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.mvn/wrapper/maven-wrapper.properties" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.mvn/wrapper/maven-wrapper.properties" new file mode 100644 index 00000000..642d572c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/.mvn/wrapper/maven-wrapper.properties" @@ -0,0 +1,2 @@ +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip +wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/README.md" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/README.md" new file mode 100644 index 00000000..281f4882 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/README.md" @@ -0,0 +1,5 @@ +前端项目地址 +浏览器打开: +https://github.com/db46rt00ors/property-server-manage +git打开: +https://github.com/db46rt00ors/property-server-manage.git \ No newline at end of file diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/mvnw" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/mvnw" new file mode 100644 index 00000000..a16b5431 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/mvnw" @@ -0,0 +1,310 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Maven Start Up Batch script +# +# Required ENV vars: +# ------------------ +# JAVA_HOME - location of a JDK home dir +# +# Optional ENV vars +# ----------------- +# M2_HOME - location of maven2's installed home dir +# MAVEN_OPTS - parameters passed to the Java VM when running Maven +# e.g. to debug Maven itself, use +# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# ---------------------------------------------------------------------------- + +if [ -z "$MAVEN_SKIP_RC" ] ; then + + if [ -f /etc/mavenrc ] ; then + . /etc/mavenrc + fi + + if [ -f "$HOME/.mavenrc" ] ; then + . "$HOME/.mavenrc" + fi + +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +mingw=false +case "`uname`" in + CYGWIN*) cygwin=true ;; + MINGW*) mingw=true;; + Darwin*) darwin=true + # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home + # See https://developer.apple.com/library/mac/qa/qa1170/_index.html + if [ -z "$JAVA_HOME" ]; then + if [ -x "/usr/libexec/java_home" ]; then + export JAVA_HOME="`/usr/libexec/java_home`" + else + export JAVA_HOME="/Library/Java/Home" + fi + fi + ;; +esac + +if [ -z "$JAVA_HOME" ] ; then + if [ -r /etc/gentoo-release ] ; then + JAVA_HOME=`java-config --jre-home` + fi +fi + +if [ -z "$M2_HOME" ] ; then + ## resolve links - $0 may be a link to maven's home + PRG="$0" + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG="`dirname "$PRG"`/$link" + fi + done + + saveddir=`pwd` + + M2_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + M2_HOME=`cd "$M2_HOME" && pwd` + + cd "$saveddir" + # echo Using m2 at $M2_HOME +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --unix "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --unix "$CLASSPATH"` +fi + +# For Mingw, ensure paths are in UNIX format before anything is touched +if $mingw ; then + [ -n "$M2_HOME" ] && + M2_HOME="`(cd "$M2_HOME"; pwd)`" + [ -n "$JAVA_HOME" ] && + JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" +fi + +if [ -z "$JAVA_HOME" ]; then + javaExecutable="`which javac`" + if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then + # readlink(1) is not available as standard on Solaris 10. + readLink=`which readlink` + if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then + if $darwin ; then + javaHome="`dirname \"$javaExecutable\"`" + javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" + else + javaExecutable="`readlink -f \"$javaExecutable\"`" + fi + javaHome="`dirname \"$javaExecutable\"`" + javaHome=`expr "$javaHome" : '\(.*\)/bin'` + JAVA_HOME="$javaHome" + export JAVA_HOME + fi + fi +fi + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD="`which java`" + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." >&2 + echo " We cannot execute $JAVACMD" >&2 + exit 1 +fi + +if [ -z "$JAVA_HOME" ] ; then + echo "Warning: JAVA_HOME environment variable is not set." +fi + +CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher + +# traverses directory structure from process work directory to filesystem root +# first directory with .mvn subdirectory is considered project base directory +find_maven_basedir() { + + if [ -z "$1" ] + then + echo "Path not specified to find_maven_basedir" + return 1 + fi + + basedir="$1" + wdir="$1" + while [ "$wdir" != '/' ] ; do + if [ -d "$wdir"/.mvn ] ; then + basedir=$wdir + break + fi + # workaround for JBEAP-8937 (on Solaris 10/Sparc) + if [ -d "${wdir}" ]; then + wdir=`cd "$wdir/.."; pwd` + fi + # end of workaround + done + echo "${basedir}" +} + +# concatenates all lines of a file +concat_lines() { + if [ -f "$1" ]; then + echo "$(tr -s '\n' ' ' < "$1")" + fi +} + +BASE_DIR=`find_maven_basedir "$(pwd)"` +if [ -z "$BASE_DIR" ]; then + exit 1; +fi + +########################################################################################## +# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +# This allows using the maven wrapper in projects that prohibit checking in binary data. +########################################################################################## +if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found .mvn/wrapper/maven-wrapper.jar" + fi +else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." + fi + if [ -n "$MVNW_REPOURL" ]; then + jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + else + jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + fi + while IFS="=" read key value; do + case "$key" in (wrapperUrl) jarUrl="$value"; break ;; + esac + done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" + if [ "$MVNW_VERBOSE" = true ]; then + echo "Downloading from: $jarUrl" + fi + wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" + if $cygwin; then + wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` + fi + + if command -v wget > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found wget ... using wget" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + wget "$jarUrl" -O "$wrapperJarPath" + else + wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" + fi + elif command -v curl > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found curl ... using curl" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + curl -o "$wrapperJarPath" "$jarUrl" -f + else + curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f + fi + + else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Falling back to using Java to download" + fi + javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" + # For Cygwin, switch paths to Windows format before running javac + if $cygwin; then + javaClass=`cygpath --path --windows "$javaClass"` + fi + if [ -e "$javaClass" ]; then + if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Compiling MavenWrapperDownloader.java ..." + fi + # Compiling the Java class + ("$JAVA_HOME/bin/javac" "$javaClass") + fi + if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + # Running the downloader + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Running MavenWrapperDownloader.java ..." + fi + ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") + fi + fi + fi +fi +########################################################################################## +# End of extension +########################################################################################## + +export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} +if [ "$MVNW_VERBOSE" = true ]; then + echo $MAVEN_PROJECTBASEDIR +fi +MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --path --windows "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --windows "$CLASSPATH"` + [ -n "$MAVEN_PROJECTBASEDIR" ] && + MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` +fi + +# Provide a "standardized" way to retrieve the CLI args that will +# work with both Windows and non-Windows executions. +MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" +export MAVEN_CMD_LINE_ARGS + +WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +exec "$JAVACMD" \ + $MAVEN_OPTS \ + -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ + "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ + ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/mvnw.cmd" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/mvnw.cmd" new file mode 100644 index 00000000..c8d43372 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/mvnw.cmd" @@ -0,0 +1,182 @@ +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM https://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Maven Start Up Batch script +@REM +@REM Required ENV vars: +@REM JAVA_HOME - location of a JDK home dir +@REM +@REM Optional ENV vars +@REM M2_HOME - location of maven2's installed home dir +@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands +@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending +@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven +@REM e.g. to debug Maven itself, use +@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM ---------------------------------------------------------------------------- + +@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' +@echo off +@REM set title of command window +title %0 +@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' +@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% + +@REM set %HOME% to equivalent of $HOME +if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") + +@REM Execute a user defined script before this one +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre +@REM check for pre script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" +if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" +:skipRcPre + +@setlocal + +set ERROR_CODE=0 + +@REM To isolate internal variables from possible post scripts, we use another setlocal +@setlocal + +@REM ==== START VALIDATION ==== +if not "%JAVA_HOME%" == "" goto OkJHome + +echo. +echo Error: JAVA_HOME not found in your environment. >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +:OkJHome +if exist "%JAVA_HOME%\bin\java.exe" goto init + +echo. +echo Error: JAVA_HOME is set to an invalid directory. >&2 +echo JAVA_HOME = "%JAVA_HOME%" >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +@REM ==== END VALIDATION ==== + +:init + +@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". +@REM Fallback to current working directory if not found. + +set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% +IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir + +set EXEC_DIR=%CD% +set WDIR=%EXEC_DIR% +:findBaseDir +IF EXIST "%WDIR%"\.mvn goto baseDirFound +cd .. +IF "%WDIR%"=="%CD%" goto baseDirNotFound +set WDIR=%CD% +goto findBaseDir + +:baseDirFound +set MAVEN_PROJECTBASEDIR=%WDIR% +cd "%EXEC_DIR%" +goto endDetectBaseDir + +:baseDirNotFound +set MAVEN_PROJECTBASEDIR=%EXEC_DIR% +cd "%EXEC_DIR%" + +:endDetectBaseDir + +IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig + +@setlocal EnableExtensions EnableDelayedExpansion +for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a +@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% + +:endReadAdditionalConfig + +SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" +set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" +set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + +FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( + IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B +) + +@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +@REM This allows using the maven wrapper in projects that prohibit checking in binary data. +if exist %WRAPPER_JAR% ( + if "%MVNW_VERBOSE%" == "true" ( + echo Found %WRAPPER_JAR% + ) +) else ( + if not "%MVNW_REPOURL%" == "" ( + SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + ) + if "%MVNW_VERBOSE%" == "true" ( + echo Couldn't find %WRAPPER_JAR%, downloading it ... + echo Downloading from: %DOWNLOAD_URL% + ) + + powershell -Command "&{"^ + "$webclient = new-object System.Net.WebClient;"^ + "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ + "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ + "}"^ + "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ + "}" + if "%MVNW_VERBOSE%" == "true" ( + echo Finished downloading %WRAPPER_JAR% + ) +) +@REM End of extension + +@REM Provide a "standardized" way to retrieve the CLI args that will +@REM work with both Windows and non-Windows executions. +set MAVEN_CMD_LINE_ARGS=%* + +%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* +if ERRORLEVEL 1 goto error +goto end + +:error +set ERROR_CODE=1 + +:end +@endlocal & set ERROR_CODE=%ERROR_CODE% + +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost +@REM check for post script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" +if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" +:skipRcPost + +@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' +if "%MAVEN_BATCH_PAUSE%" == "on" pause + +if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% + +exit /B %ERROR_CODE% diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/pom.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/pom.xml" new file mode 100644 index 00000000..6507335a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/pom.xml" @@ -0,0 +1,94 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 2.2.6.RELEASE + + + com.mashibing + family_service_platform + 0.0.1-SNAPSHOT + family_service_platform + Demo project for Spring Boot + + + 1.8 + + + + + org.springframework.boot + spring-boot-starter-web + + + org.mybatis.spring.boot + mybatis-spring-boot-starter + 2.1.2 + + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + mysql + mysql-connector-java + runtime + + + + com.baomidou + mybatis-plus-generator + 3.3.1 + + + com.baomidou + mybatis-plus-boot-starter + 3.3.1 + + + org.apache.velocity + velocity-engine-core + 2.2 + + + org.springframework.boot + spring-boot-starter-test + test + + + org.junit.vintage + junit-vintage-engine + + + + + com.alibaba + fastjson + 1.2.9 + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + src/main/java + + **/*.xml + + + + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" new file mode 100644 index 00000000..023c9a63 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" @@ -0,0 +1,15 @@ +package com.mashibing; + +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +@MapperScan +public class FamilyServicePlatformApplication { + + public static void main(String[] args) { + SpringApplication.run(FamilyServicePlatformApplication.class, args); + } + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" new file mode 100644 index 00000000..1997f89d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" @@ -0,0 +1,531 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 楼宇信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcBuilding implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房产编码 + */ + private String estateCode; + + /** + * 楼宇编码 + */ + private String buildingCode; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 楼宇功能 + */ + private String buildingFunction; + + /** + * 使用面积 + */ + private Double usedArea; + + /** + * 建筑面积 + */ + private Double buildArea; + + /** + * 建设许可证号 + */ + private String buildPermissionId; + + /** + * 销售许可证号 + */ + private String salePermissionId; + + /** + * 竣工日期 + */ + private Date finishDate; + + /** + * 封顶日期 + */ + private Date overRoofDate; + + /** + * 装修 + */ + private String decorate; + + /** + * 结构类别 + */ + private String structType; + + /** + * 完损等级 + */ + private String damageGrade; + + /** + * 单元数量 + */ + private Double unitCount; + + /** + * 楼宇类型 + */ + private String buildingType; + + /** + * 清扫层数 + */ + private Integer cleanFloor; + + /** + * 拖洗层数 + */ + private Integer mopFloor; + + /** + * 楼狼通道地面 + */ + private Double channelArea; + + /** + * 电梯轿箱 + */ + private Integer elevator; + + /** + * 通道门 + */ + private Integer channelDoor; + + /** + * 电梯门 + */ + private Integer evevatorDoor; + + /** + * 水井门 + */ + private Integer waterWellDoor; + + /** + * 电井门 + */ + private Integer electricWellDoor; + + /** + * 百叶窗 + */ + private Integer windowShades; + + /** + * 消防栓 + */ + private Integer hydrant; + + /** + * 整容镜 + */ + private Integer mirrors; + + /** + * 单元门 + */ + private Integer unitDoor; + + /** + * 硬化地面 + */ + private Double hardenGroundArea; + + /** + * 提纯绿地 + */ + private Double greenArea; + + /** + * 不提纯绿地 + */ + private Double noGreenArea; + + /** + * 人工水面 + */ + private Double waterByPerson; + + /** + * 是否使用电梯 + */ + private String isElevator; + + /** + * 是否需要二次水电 + */ + private String isSecondWaterElectric; + + /** + * 随机标识码 + */ + private String randomIdentify; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getEstateCode() { + return estateCode; + } + + public void setEstateCode(String estateCode) { + this.estateCode = estateCode; + } + + public String getBuildingCode() { + return buildingCode; + } + + public void setBuildingCode(String buildingCode) { + this.buildingCode = buildingCode; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getBuildingFunction() { + return buildingFunction; + } + + public void setBuildingFunction(String buildingFunction) { + this.buildingFunction = buildingFunction; + } + + public Double getUsedArea() { + return usedArea; + } + + public void setUsedArea(Double usedArea) { + this.usedArea = usedArea; + } + + public Double getBuildArea() { + return buildArea; + } + + public void setBuildArea(Double buildArea) { + this.buildArea = buildArea; + } + + public String getBuildPermissionId() { + return buildPermissionId; + } + + public void setBuildPermissionId(String buildPermissionId) { + this.buildPermissionId = buildPermissionId; + } + + public String getSalePermissionId() { + return salePermissionId; + } + + public void setSalePermissionId(String salePermissionId) { + this.salePermissionId = salePermissionId; + } + + public Date getFinishDate() { + return finishDate; + } + + public void setFinishDate(Date finishDate) { + this.finishDate = finishDate; + } + + public Date getOverRoofDate() { + return overRoofDate; + } + + public void setOverRoofDate(Date overRoofDate) { + this.overRoofDate = overRoofDate; + } + + public String getDecorate() { + return decorate; + } + + public void setDecorate(String decorate) { + this.decorate = decorate; + } + + public String getStructType() { + return structType; + } + + public void setStructType(String structType) { + this.structType = structType; + } + + public String getDamageGrade() { + return damageGrade; + } + + public void setDamageGrade(String damageGrade) { + this.damageGrade = damageGrade; + } + + public Double getUnitCount() { + return unitCount; + } + + public void setUnitCount(Double unitCount) { + this.unitCount = unitCount; + } + + public String getBuildingType() { + return buildingType; + } + + public void setBuildingType(String buildingType) { + this.buildingType = buildingType; + } + + public Integer getCleanFloor() { + return cleanFloor; + } + + public void setCleanFloor(Integer cleanFloor) { + this.cleanFloor = cleanFloor; + } + + public Integer getMopFloor() { + return mopFloor; + } + + public void setMopFloor(Integer mopFloor) { + this.mopFloor = mopFloor; + } + + public Double getChannelArea() { + return channelArea; + } + + public void setChannelArea(Double channelArea) { + this.channelArea = channelArea; + } + + public Integer getElevator() { + return elevator; + } + + public void setElevator(Integer elevator) { + this.elevator = elevator; + } + + public Integer getChannelDoor() { + return channelDoor; + } + + public void setChannelDoor(Integer channelDoor) { + this.channelDoor = channelDoor; + } + + public Integer getEvevatorDoor() { + return evevatorDoor; + } + + public void setEvevatorDoor(Integer evevatorDoor) { + this.evevatorDoor = evevatorDoor; + } + + public Integer getWaterWellDoor() { + return waterWellDoor; + } + + public void setWaterWellDoor(Integer waterWellDoor) { + this.waterWellDoor = waterWellDoor; + } + + public Integer getElectricWellDoor() { + return electricWellDoor; + } + + public void setElectricWellDoor(Integer electricWellDoor) { + this.electricWellDoor = electricWellDoor; + } + + public Integer getWindowShades() { + return windowShades; + } + + public void setWindowShades(Integer windowShades) { + this.windowShades = windowShades; + } + + public Integer getHydrant() { + return hydrant; + } + + public void setHydrant(Integer hydrant) { + this.hydrant = hydrant; + } + + public Integer getMirrors() { + return mirrors; + } + + public void setMirrors(Integer mirrors) { + this.mirrors = mirrors; + } + + public Integer getUnitDoor() { + return unitDoor; + } + + public void setUnitDoor(Integer unitDoor) { + this.unitDoor = unitDoor; + } + + public Double getHardenGroundArea() { + return hardenGroundArea; + } + + public void setHardenGroundArea(Double hardenGroundArea) { + this.hardenGroundArea = hardenGroundArea; + } + + public Double getGreenArea() { + return greenArea; + } + + public void setGreenArea(Double greenArea) { + this.greenArea = greenArea; + } + + public Double getNoGreenArea() { + return noGreenArea; + } + + public void setNoGreenArea(Double noGreenArea) { + this.noGreenArea = noGreenArea; + } + + public Double getWaterByPerson() { + return waterByPerson; + } + + public void setWaterByPerson(Double waterByPerson) { + this.waterByPerson = waterByPerson; + } + + public String getIsElevator() { + return isElevator; + } + + public void setIsElevator(String isElevator) { + this.isElevator = isElevator; + } + + public String getIsSecondWaterElectric() { + return isSecondWaterElectric; + } + + public void setIsSecondWaterElectric(String isSecondWaterElectric) { + this.isSecondWaterElectric = isSecondWaterElectric; + } + + public String getRandomIdentify() { + return randomIdentify; + } + + public void setRandomIdentify(String randomIdentify) { + this.randomIdentify = randomIdentify; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "FcBuilding{" + + "id=" + id + + ", estateCode=" + estateCode + + ", buildingCode=" + buildingCode + + ", buildingName=" + buildingName + + ", buildingFunction=" + buildingFunction + + ", usedArea=" + usedArea + + ", buildArea=" + buildArea + + ", buildPermissionId=" + buildPermissionId + + ", salePermissionId=" + salePermissionId + + ", finishDate=" + finishDate + + ", overRoofDate=" + overRoofDate + + ", decorate=" + decorate + + ", structType=" + structType + + ", damageGrade=" + damageGrade + + ", unitCount=" + unitCount + + ", buildingType=" + buildingType + + ", cleanFloor=" + cleanFloor + + ", mopFloor=" + mopFloor + + ", channelArea=" + channelArea + + ", elevator=" + elevator + + ", channelDoor=" + channelDoor + + ", evevatorDoor=" + evevatorDoor + + ", waterWellDoor=" + waterWellDoor + + ", electricWellDoor=" + electricWellDoor + + ", windowShades=" + windowShades + + ", hydrant=" + hydrant + + ", mirrors=" + mirrors + + ", unitDoor=" + unitDoor + + ", hardenGroundArea=" + hardenGroundArea + + ", greenArea=" + greenArea + + ", noGreenArea=" + noGreenArea + + ", waterByPerson=" + waterByPerson + + ", isElevator=" + isElevator + + ", isSecondWaterElectric=" + isSecondWaterElectric + + ", randomIdentify=" + randomIdentify + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" new file mode 100644 index 00000000..72f3bac2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" @@ -0,0 +1,474 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 房间信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcCell implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 房间编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 单元编码 + */ + private String unitCode; + + /** + * 房间编码 + */ + private String cellCode; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 户型编码 + */ + private String cellHouseCode; + + /** + * 朝向编码 + */ + private String cellTowardCode; + + /** + * 功能 + */ + private String cellFunction; + + /** + * 装修编码 + */ + private String cellDecorateCode; + + /** + * 使用面积 + */ + private Double cellUsedArea; + + /** + * 建筑面积 + */ + private Double cellBuildArea; + + /** + * 车库面积 + */ + private Double carportArea; + + /** + * 车位面积 + */ + private Double carArea; + + /** + * 阁楼面积 + */ + private Double loftArea; + + /** + * 储藏室面积 + */ + private Double storeArea; + + /** + * 楼层数 + */ + private Integer floorNumber; + + /** + * 上次欠缴 + */ + private Double lastDebt; + + /** + * 物业类型 + */ + private Long propertyType; + + /** + * 租金 + */ + private Double rentMoney; + + /** + * 长度 + */ + private Double length; + + /** + * 宽度 + */ + private Double width; + + /** + * 档口用途 + */ + private Long stallUse; + + /** + * 档口区域 + */ + private Long stallArea; + + /** + * 是否已售 + */ + private String isSale; + + /** + * 是否已租 + */ + private String isRent; + + /** + * 销售合同编号 + */ + private String saleContractId; + + /** + * 租赁合同编号 + */ + private String rentContractId; + + /** + * 备注 + */ + private String remark; + + /** + * 系数 + */ + private String factor; + + /** + * 房间性质 + */ + private Integer cellProperty; + + /** + * 储藏室号 + */ + private String storeId; + + /** + * 车牌号 + */ + private String carLicenceId; + + /** + * 车位号 + */ + private String carSpaceId; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUnitCode() { + return unitCode; + } + + public void setUnitCode(String unitCode) { + this.unitCode = unitCode; + } + + public String getCellCode() { + return cellCode; + } + + public void setCellCode(String cellCode) { + this.cellCode = cellCode; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getCellHouseCode() { + return cellHouseCode; + } + + public void setCellHouseCode(String cellHouseCode) { + this.cellHouseCode = cellHouseCode; + } + + public String getCellTowardCode() { + return cellTowardCode; + } + + public void setCellTowardCode(String cellTowardCode) { + this.cellTowardCode = cellTowardCode; + } + + public String getCellFunction() { + return cellFunction; + } + + public void setCellFunction(String cellFunction) { + this.cellFunction = cellFunction; + } + + public String getCellDecorateCode() { + return cellDecorateCode; + } + + public void setCellDecorateCode(String cellDecorateCode) { + this.cellDecorateCode = cellDecorateCode; + } + + public Double getCellUsedArea() { + return cellUsedArea; + } + + public void setCellUsedArea(Double cellUsedArea) { + this.cellUsedArea = cellUsedArea; + } + + public Double getCellBuildArea() { + return cellBuildArea; + } + + public void setCellBuildArea(Double cellBuildArea) { + this.cellBuildArea = cellBuildArea; + } + + public Double getCarportArea() { + return carportArea; + } + + public void setCarportArea(Double carportArea) { + this.carportArea = carportArea; + } + + public Double getCarArea() { + return carArea; + } + + public void setCarArea(Double carArea) { + this.carArea = carArea; + } + + public Double getLoftArea() { + return loftArea; + } + + public void setLoftArea(Double loftArea) { + this.loftArea = loftArea; + } + + public Double getStoreArea() { + return storeArea; + } + + public void setStoreArea(Double storeArea) { + this.storeArea = storeArea; + } + + public Integer getFloorNumber() { + return floorNumber; + } + + public void setFloorNumber(Integer floorNumber) { + this.floorNumber = floorNumber; + } + + public Double getLastDebt() { + return lastDebt; + } + + public void setLastDebt(Double lastDebt) { + this.lastDebt = lastDebt; + } + + public Long getPropertyType() { + return propertyType; + } + + public void setPropertyType(Long propertyType) { + this.propertyType = propertyType; + } + + public Double getRentMoney() { + return rentMoney; + } + + public void setRentMoney(Double rentMoney) { + this.rentMoney = rentMoney; + } + + public Double getLength() { + return length; + } + + public void setLength(Double length) { + this.length = length; + } + + public Double getWidth() { + return width; + } + + public void setWidth(Double width) { + this.width = width; + } + + public Long getStallUse() { + return stallUse; + } + + public void setStallUse(Long stallUse) { + this.stallUse = stallUse; + } + + public Long getStallArea() { + return stallArea; + } + + public void setStallArea(Long stallArea) { + this.stallArea = stallArea; + } + + public String getIsSale() { + return isSale; + } + + public void setIsSale(String isSale) { + this.isSale = isSale; + } + + public String getIsRent() { + return isRent; + } + + public void setIsRent(String isRent) { + this.isRent = isRent; + } + + public String getSaleContractId() { + return saleContractId; + } + + public void setSaleContractId(String saleContractId) { + this.saleContractId = saleContractId; + } + + public String getRentContractId() { + return rentContractId; + } + + public void setRentContractId(String rentContractId) { + this.rentContractId = rentContractId; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getFactor() { + return factor; + } + + public void setFactor(String factor) { + this.factor = factor; + } + + public Integer getCellProperty() { + return cellProperty; + } + + public void setCellProperty(Integer cellProperty) { + this.cellProperty = cellProperty; + } + + public String getStoreId() { + return storeId; + } + + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + public String getCarLicenceId() { + return carLicenceId; + } + + public void setCarLicenceId(String carLicenceId) { + this.carLicenceId = carLicenceId; + } + + public String getCarSpaceId() { + return carSpaceId; + } + + public void setCarSpaceId(String carSpaceId) { + this.carSpaceId = carSpaceId; + } + + @Override + public String toString() { + return "FcCell{" + + "id=" + id + + ", unitCode=" + unitCode + + ", cellCode=" + cellCode + + ", cellName=" + cellName + + ", cellHouseCode=" + cellHouseCode + + ", cellTowardCode=" + cellTowardCode + + ", cellFunction=" + cellFunction + + ", cellDecorateCode=" + cellDecorateCode + + ", cellUsedArea=" + cellUsedArea + + ", cellBuildArea=" + cellBuildArea + + ", carportArea=" + carportArea + + ", carArea=" + carArea + + ", loftArea=" + loftArea + + ", storeArea=" + storeArea + + ", floorNumber=" + floorNumber + + ", lastDebt=" + lastDebt + + ", propertyType=" + propertyType + + ", rentMoney=" + rentMoney + + ", length=" + length + + ", width=" + width + + ", stallUse=" + stallUse + + ", stallArea=" + stallArea + + ", isSale=" + isSale + + ", isRent=" + isRent + + ", saleContractId=" + saleContractId + + ", rentContractId=" + rentContractId + + ", remark=" + remark + + ", factor=" + factor + + ", cellProperty=" + cellProperty + + ", storeId=" + storeId + + ", carLicenceId=" + carLicenceId + + ", carSpaceId=" + carSpaceId + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" new file mode 100644 index 00000000..4f403639 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 房间加建信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcCellAddbuild implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属房间id + */ + private Integer cellId; + + /** + * 加建面积 + */ + private Double addbuildArea; + + /** + * 加建时间 + */ + private LocalDateTime addbuildTime; + + /** + * 加建状态 + */ + private String addbuildState; + + /** + * 加建说明 + */ + private String addbuildDesc; + + /** + * 加建附件 + */ + private String addbuildAccessory; + + /** + * 操作人 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Double getAddbuildArea() { + return addbuildArea; + } + + public void setAddbuildArea(Double addbuildArea) { + this.addbuildArea = addbuildArea; + } + + public LocalDateTime getAddbuildTime() { + return addbuildTime; + } + + public void setAddbuildTime(LocalDateTime addbuildTime) { + this.addbuildTime = addbuildTime; + } + + public String getAddbuildState() { + return addbuildState; + } + + public void setAddbuildState(String addbuildState) { + this.addbuildState = addbuildState; + } + + public String getAddbuildDesc() { + return addbuildDesc; + } + + public void setAddbuildDesc(String addbuildDesc) { + this.addbuildDesc = addbuildDesc; + } + + public String getAddbuildAccessory() { + return addbuildAccessory; + } + + public void setAddbuildAccessory(String addbuildAccessory) { + this.addbuildAccessory = addbuildAccessory; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "FcCellAddbuild{" + + "id=" + id + + ", cellId=" + cellId + + ", addbuildArea=" + addbuildArea + + ", addbuildTime=" + addbuildTime + + ", addbuildState=" + addbuildState + + ", addbuildDesc=" + addbuildDesc + + ", addbuildAccessory=" + addbuildAccessory + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" new file mode 100644 index 00000000..8b7db416 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" @@ -0,0 +1,336 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 楼盘信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcEstate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房产编码 + */ + private String estateCode; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 房产地址 + */ + private String estateAddr; + + /** + * 占地面积 + */ + private Double coverArea; + + /** + * 建筑面积 + */ + private Double buildArea; + + /** + * 绿地面积 + */ + private Double greenArea; + + /** + * 道路面积 + */ + private Double roadArea; + + /** + * 楼宇数量 + */ + private Double buildingNumber; + + /** + * 负责人 + */ + private String buildingLeader; + + /** + * 公司名称 + */ + private String companyName; + + /** + * 法人代表 + */ + private String companyBehalf; + + /** + * 联系人 + */ + private String contact; + + /** + * 联系电话 + */ + private String contactPhone; + + /** + * 联系地址 + */ + private String contactAddr; + + /** + * 车位滞纳金比率 + */ + private Double carSpaceDelayRate; + + /** + * 车位超期天数 + */ + private Integer carSpaceOverDay; + + /** + * 房产类型 + */ + private String estateType; + + /** + * 路灯数量 + */ + private Integer streetLampNumber; + + /** + * 化粪池数量 + */ + @TableField("hfcNum") + private Integer hfcNum; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getEstateCode() { + return estateCode; + } + + public void setEstateCode(String estateCode) { + this.estateCode = estateCode; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getEstateAddr() { + return estateAddr; + } + + public void setEstateAddr(String estateAddr) { + this.estateAddr = estateAddr; + } + + public Double getCoverArea() { + return coverArea; + } + + public void setCoverArea(Double coverArea) { + this.coverArea = coverArea; + } + + public Double getBuildArea() { + return buildArea; + } + + public void setBuildArea(Double buildArea) { + this.buildArea = buildArea; + } + + public Double getGreenArea() { + return greenArea; + } + + public void setGreenArea(Double greenArea) { + this.greenArea = greenArea; + } + + public Double getRoadArea() { + return roadArea; + } + + public void setRoadArea(Double roadArea) { + this.roadArea = roadArea; + } + + public Double getBuildingNumber() { + return buildingNumber; + } + + public void setBuildingNumber(Double buildingNumber) { + this.buildingNumber = buildingNumber; + } + + public String getBuildingLeader() { + return buildingLeader; + } + + public void setBuildingLeader(String buildingLeader) { + this.buildingLeader = buildingLeader; + } + + public String getCompanyName() { + return companyName; + } + + public void setCompanyName(String companyName) { + this.companyName = companyName; + } + + public String getCompanyBehalf() { + return companyBehalf; + } + + public void setCompanyBehalf(String companyBehalf) { + this.companyBehalf = companyBehalf; + } + + public String getContact() { + return contact; + } + + public void setContact(String contact) { + this.contact = contact; + } + + public String getContactPhone() { + return contactPhone; + } + + public void setContactPhone(String contactPhone) { + this.contactPhone = contactPhone; + } + + public String getContactAddr() { + return contactAddr; + } + + public void setContactAddr(String contactAddr) { + this.contactAddr = contactAddr; + } + + public Double getCarSpaceDelayRate() { + return carSpaceDelayRate; + } + + public void setCarSpaceDelayRate(Double carSpaceDelayRate) { + this.carSpaceDelayRate = carSpaceDelayRate; + } + + public Integer getCarSpaceOverDay() { + return carSpaceOverDay; + } + + public void setCarSpaceOverDay(Integer carSpaceOverDay) { + this.carSpaceOverDay = carSpaceOverDay; + } + + public String getEstateType() { + return estateType; + } + + public void setEstateType(String estateType) { + this.estateType = estateType; + } + + public Integer getStreetLampNumber() { + return streetLampNumber; + } + + public void setStreetLampNumber(Integer streetLampNumber) { + this.streetLampNumber = streetLampNumber; + } + + public Integer getHfcNum() { + return hfcNum; + } + + public void setHfcNum(Integer hfcNum) { + this.hfcNum = hfcNum; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "FcEstate{" + + "id=" + id + + ", estateCode=" + estateCode + + ", estateName=" + estateName + + ", estateAddr=" + estateAddr + + ", coverArea=" + coverArea + + ", buildArea=" + buildArea + + ", greenArea=" + greenArea + + ", roadArea=" + roadArea + + ", buildingNumber=" + buildingNumber + + ", buildingLeader=" + buildingLeader + + ", companyName=" + companyName + + ", companyBehalf=" + companyBehalf + + ", contact=" + contact + + ", contactPhone=" + contactPhone + + ", contactAddr=" + contactAddr + + ", carSpaceDelayRate=" + carSpaceDelayRate + + ", carSpaceOverDay=" + carSpaceOverDay + + ", estateType=" + estateType + + ", streetLampNumber=" + streetLampNumber + + ", hfcNum=" + hfcNum + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" new file mode 100644 index 00000000..c455aa05 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 单元信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcUnit implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 楼宇编号 + */ + private String buildingCode; + + /** + * 单元编码 + */ + private String unitCode; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 开始楼层 + */ + private Integer startFloor; + + /** + * 结束楼层 + */ + private Integer stopFloor; + + /** + * 开始房号 + */ + private Integer startCellId; + + /** + * 结束房号 + */ + private Integer stopCellId; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBuildingCode() { + return buildingCode; + } + + public void setBuildingCode(String buildingCode) { + this.buildingCode = buildingCode; + } + + public String getUnitCode() { + return unitCode; + } + + public void setUnitCode(String unitCode) { + this.unitCode = unitCode; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public Integer getStartFloor() { + return startFloor; + } + + public void setStartFloor(Integer startFloor) { + this.startFloor = startFloor; + } + + public Integer getStopFloor() { + return stopFloor; + } + + public void setStopFloor(Integer stopFloor) { + this.stopFloor = stopFloor; + } + + public Integer getStartCellId() { + return startCellId; + } + + public void setStartCellId(Integer startCellId) { + this.startCellId = startCellId; + } + + public Integer getStopCellId() { + return stopCellId; + } + + public void setStopCellId(Integer stopCellId) { + this.stopCellId = stopCellId; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "FcUnit{" + + "id=" + id + + ", buildingCode=" + buildingCode + + ", unitCode=" + unitCode + + ", unitName=" + unitName + + ", startFloor=" + startFloor + + ", stopFloor=" + stopFloor + + ", startCellId=" + startCellId + + ", stopCellId=" + stopCellId + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" new file mode 100644 index 00000000..d867e860 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" @@ -0,0 +1,221 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 房产信息临时表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyEstateTemporary implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 所属公司 + */ + private String company; + + /** + * 房产编码 + */ + private String estateCode; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 楼宇编码 + */ + private String buildingCode; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 单元编码 + */ + private String unitCode; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 房间编码 + */ + private String cellCode; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 建筑面积 + */ + private Double buildArea; + + /** + * 楼层数 + */ + private Integer floorNumber; + + /** + * 功能 + */ + private String function; + + /** + * 备注 + */ + private String remark; + + /** + * 操作人编码 + */ + private String operatePerson; + + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getEstateCode() { + return estateCode; + } + + public void setEstateCode(String estateCode) { + this.estateCode = estateCode; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getBuildingCode() { + return buildingCode; + } + + public void setBuildingCode(String buildingCode) { + this.buildingCode = buildingCode; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getUnitCode() { + return unitCode; + } + + public void setUnitCode(String unitCode) { + this.unitCode = unitCode; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public String getCellCode() { + return cellCode; + } + + public void setCellCode(String cellCode) { + this.cellCode = cellCode; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public Double getBuildArea() { + return buildArea; + } + + public void setBuildArea(Double buildArea) { + this.buildArea = buildArea; + } + + public Integer getFloorNumber() { + return floorNumber; + } + + public void setFloorNumber(Integer floorNumber) { + this.floorNumber = floorNumber; + } + + public String getFunction() { + return function; + } + + public void setFunction(String function) { + this.function = function; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + @Override + public String toString() { + return "FyEstateTemporary{" + + "company=" + company + + ", estateCode=" + estateCode + + ", estateName=" + estateName + + ", buildingCode=" + buildingCode + + ", buildingName=" + buildingName + + ", unitCode=" + unitCode + + ", unitName=" + unitName + + ", cellCode=" + cellCode + + ", cellName=" + cellName + + ", buildArea=" + buildArea + + ", floorNumber=" + floorNumber + + ", function=" + function + + ", remark=" + remark + + ", operatePerson=" + operatePerson + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" new file mode 100644 index 00000000..070de0e0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 历史费用临时表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyHistoryMoneyTemp implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 房间id + */ + private Integer cellId; + + /** + * 房产名称 + */ + private String cellName; + + /** + * 建筑面积 + */ + private Double buildArea; + + /** + * 单价 + */ + private Double priceUnit; + + /** + * 金额 + */ + private Double money; + + /** + * 费用起期 + */ + private LocalDateTime moneyStartDate; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 备注 + */ + private String remark; + + /** + * 操作人编码 + */ + private String operatePerson; + + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public Double getBuildArea() { + return buildArea; + } + + public void setBuildArea(Double buildArea) { + this.buildArea = buildArea; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public LocalDateTime getMoneyStartDate() { + return moneyStartDate; + } + + public void setMoneyStartDate(LocalDateTime moneyStartDate) { + this.moneyStartDate = moneyStartDate; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + @Override + public String toString() { + return "FyHistoryMoneyTemp{" + + "cellId=" + cellId + + ", cellName=" + cellName + + ", buildArea=" + buildArea + + ", priceUnit=" + priceUnit + + ", money=" + money + + ", moneyStartDate=" + moneyStartDate + + ", moneyStopDate=" + moneyStopDate + + ", remark=" + remark + + ", operatePerson=" + operatePerson + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" new file mode 100644 index 00000000..ba6be805 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" @@ -0,0 +1,363 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 作废单主单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyInvalidMain implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 作废单号 + */ + @TableId(value = "invalid_id", type = IdType.AUTO) + private String invalidId; + + /** + * 所属收款单号 + */ + private String receiveId; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 收费日期 + */ + private LocalDateTime receiveDate; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 费用金额 + */ + private Double money; + + /** + * 实收金额 + */ + private Double realReceiveMoney; + + /** + * 优惠金额 + */ + private Double discountMoney; + + /** + * 收款方式 + */ + private String receiveMethod; + + /** + * 是否业主 + */ + private String isCustomer; + + /** + * 收费金额 + */ + private Double receiveMoney; + + /** + * 费项id + */ + private Long moneyId; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 本次欠缴 + */ + private Double currentDelayMoney; + + /** + * 上次欠缴 + */ + private Double lastDelayMoney; + + /** + * 作废类型 + */ + private String invalidType; + + /** + * 收据号 + */ + private String receiptNumber; + + /** + * 发票号 + */ + private String invoiceNumber; + + /** + * 收款人 + */ + private String receivePerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 作废人 + */ + private String invalidPerson; + + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getRealReceiveMoney() { + return realReceiveMoney; + } + + public void setRealReceiveMoney(Double realReceiveMoney) { + this.realReceiveMoney = realReceiveMoney; + } + + public Double getDiscountMoney() { + return discountMoney; + } + + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + public String getReceiveMethod() { + return receiveMethod; + } + + public void setReceiveMethod(String receiveMethod) { + this.receiveMethod = receiveMethod; + } + + public String getIsCustomer() { + return isCustomer; + } + + public void setIsCustomer(String isCustomer) { + this.isCustomer = isCustomer; + } + + public Double getReceiveMoney() { + return receiveMoney; + } + + public void setReceiveMoney(Double receiveMoney) { + this.receiveMoney = receiveMoney; + } + + public Long getMoneyId() { + return moneyId; + } + + public void setMoneyId(Long moneyId) { + this.moneyId = moneyId; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Double getCurrentDelayMoney() { + return currentDelayMoney; + } + + public void setCurrentDelayMoney(Double currentDelayMoney) { + this.currentDelayMoney = currentDelayMoney; + } + + public Double getLastDelayMoney() { + return lastDelayMoney; + } + + public void setLastDelayMoney(Double lastDelayMoney) { + this.lastDelayMoney = lastDelayMoney; + } + + public String getInvalidType() { + return invalidType; + } + + public void setInvalidType(String invalidType) { + this.invalidType = invalidType; + } + + public String getReceiptNumber() { + return receiptNumber; + } + + public void setReceiptNumber(String receiptNumber) { + this.receiptNumber = receiptNumber; + } + + public String getInvoiceNumber() { + return invoiceNumber; + } + + public void setInvoiceNumber(String invoiceNumber) { + this.invoiceNumber = invoiceNumber; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getInvalidPerson() { + return invalidPerson; + } + + public void setInvalidPerson(String invalidPerson) { + this.invalidPerson = invalidPerson; + } + + @Override + public String toString() { + return "FyInvalidMain{" + + "invalidId=" + invalidId + + ", receiveId=" + receiveId + + ", cellId=" + cellId + + ", receiveDate=" + receiveDate + + ", customerName=" + customerName + + ", money=" + money + + ", realReceiveMoney=" + realReceiveMoney + + ", discountMoney=" + discountMoney + + ", receiveMethod=" + receiveMethod + + ", isCustomer=" + isCustomer + + ", receiveMoney=" + receiveMoney + + ", moneyId=" + moneyId + + ", estateId=" + estateId + + ", currentDelayMoney=" + currentDelayMoney + + ", lastDelayMoney=" + lastDelayMoney + + ", invalidType=" + invalidType + + ", receiptNumber=" + receiptNumber + + ", invoiceNumber=" + invoiceNumber + + ", receivePerson=" + receivePerson + + ", remark=" + remark + + ", company=" + company + + ", invalidReason=" + invalidReason + + ", invalidDate=" + invalidDate + + ", invalidPerson=" + invalidPerson + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" new file mode 100644 index 00000000..25b3d52f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 作废单子单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyInvalidSub implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 作废明细单号 + */ + @TableId(value = "invalid_detail_id", type = IdType.AUTO) + private String invalidDetailId; + + /** + * 所属作废单号 + */ + private String invalidId; + + /** + * 费项名称 + */ + private String moneySettingName; + + /** + * 计费单价 + */ + private Double chargeUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 实际用量 + */ + private Double realUsed; + + /** + * 费用金额 + */ + private Double money; + + /** + * 滞纳金 + */ + private Double delayMoney; + + /** + * 本次应付 + */ + private Double currentShouldPay; + + /** + * 超期天数 + */ + private Integer overDay; + + /** + * 费用起期 + */ + private LocalDateTime moneyStartDate; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 缴费限期 + */ + private LocalDateTime payLimitDay; + + /** + * 记录人 + */ + private String inputPerson; + + /** + * 所属台账id + */ + private String standingBookId; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 减免金额 + */ + private Double derateMoney; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 滞纳金减免金额 + */ + private Double delayDerateMoney; + + /** + * 楼层系数 + */ + private Double mopFloor; + + /** + * 费用倍数 + */ + private Integer moneyMult; + + + public String getInvalidDetailId() { + return invalidDetailId; + } + + public void setInvalidDetailId(String invalidDetailId) { + this.invalidDetailId = invalidDetailId; + } + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getMoneySettingName() { + return moneySettingName; + } + + public void setMoneySettingName(String moneySettingName) { + this.moneySettingName = moneySettingName; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getRealUsed() { + return realUsed; + } + + public void setRealUsed(Double realUsed) { + this.realUsed = realUsed; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getDelayMoney() { + return delayMoney; + } + + public void setDelayMoney(Double delayMoney) { + this.delayMoney = delayMoney; + } + + public Double getCurrentShouldPay() { + return currentShouldPay; + } + + public void setCurrentShouldPay(Double currentShouldPay) { + this.currentShouldPay = currentShouldPay; + } + + public Integer getOverDay() { + return overDay; + } + + public void setOverDay(Integer overDay) { + this.overDay = overDay; + } + + public LocalDateTime getMoneyStartDate() { + return moneyStartDate; + } + + public void setMoneyStartDate(LocalDateTime moneyStartDate) { + this.moneyStartDate = moneyStartDate; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public LocalDateTime getPayLimitDay() { + return payLimitDay; + } + + public void setPayLimitDay(LocalDateTime payLimitDay) { + this.payLimitDay = payLimitDay; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public String getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(String standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getDerateMoney() { + return derateMoney; + } + + public void setDerateMoney(Double derateMoney) { + this.derateMoney = derateMoney; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public Double getDelayDerateMoney() { + return delayDerateMoney; + } + + public void setDelayDerateMoney(Double delayDerateMoney) { + this.delayDerateMoney = delayDerateMoney; + } + + public Double getMopFloor() { + return mopFloor; + } + + public void setMopFloor(Double mopFloor) { + this.mopFloor = mopFloor; + } + + public Integer getMoneyMult() { + return moneyMult; + } + + public void setMoneyMult(Integer moneyMult) { + this.moneyMult = moneyMult; + } + + @Override + public String toString() { + return "FyInvalidSub{" + + "invalidDetailId=" + invalidDetailId + + ", invalidId=" + invalidId + + ", moneySettingName=" + moneySettingName + + ", chargeUnit=" + chargeUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", realUsed=" + realUsed + + ", money=" + money + + ", delayMoney=" + delayMoney + + ", currentShouldPay=" + currentShouldPay + + ", overDay=" + overDay + + ", moneyStartDate=" + moneyStartDate + + ", moneyStopDate=" + moneyStopDate + + ", payLimitDay=" + payLimitDay + + ", inputPerson=" + inputPerson + + ", standingBookId=" + standingBookId + + ", receiveCycle=" + receiveCycle + + ", derateMoney=" + derateMoney + + ", moneyId=" + moneyId + + ", delayDerateMoney=" + delayDerateMoney + + ", mopFloor=" + mopFloor + + ", moneyMult=" + moneyMult + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" new file mode 100644 index 00000000..3185d6c7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" @@ -0,0 +1,502 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 费项设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneySetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编号 + */ + private String moneySettingCode; + + /** + * 费项名称 + */ + private String moneySettingName; + + /** + * 收费方式 + */ + private String receiveType; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 费用类型 + */ + private String moneyType; + + /** + * 是否允许修改单价 + */ + private String isUpdatePrice; + + /** + * 是否便捷费项 + */ + private String isConvenientMoney; + + /** + * 最小使用量 + */ + private Double minUsedNumber; + + /** + * 是否阶梯收费 + */ + private String isStepReceive; + + /** + * 阶梯条件1 + */ + private Double stepCondition1; + + /** + * 阶梯单价1 + */ + private Double stepPrice1; + + /** + * 阶梯条件2 + */ + private Double stepCondition21; + + /** + * 阶梯条件2 + */ + private Double stepCondition22; + + /** + * 阶梯单价2 + */ + private Double stepPrice2; + + /** + * 阶梯条件3 + */ + private Double stepCondition31; + + /** + * 阶梯条件3 + */ + private Double stepCondition32; + + /** + * 阶梯单价3 + */ + private Double stepPrice3; + + /** + * 阶梯条件4 + */ + private Double stepCondition41; + + /** + * 阶梯条件4 + */ + private Double stepCondition42; + + /** + * 阶梯单价4 + */ + private Double stepPrice4; + + /** + * 阶梯条件5 + */ + private Double stepCondition5; + + /** + * 阶梯单价5 + */ + private Double stepPrice5; + + /** + * 续费短信 + */ + private String renewMessage; + + /** + * 从已收费的费用止期后N天发送短信 + */ + private Integer receiveWarnStopDay; + + /** + * 最多短信重复提醒次数 + */ + private Integer maxWarnNumber; + + /** + * 催缴短信 + */ + private String askMessage; + + /** + * 从未收取的缴费限期前N天发送短信 + */ + private Integer noReceiveWarnStopDay; + + /** + * 关联费项ID + */ + private Integer associateMoneyId; + + /** + * 滞纳金比率 + */ + private Double delayRate; + + /** + * 滞纳金超期天数 + */ + private Integer delayOverDay; + + /** + * 所属公司 + */ + private String company; + + /** + * 常规收费打印时隐藏单价 + */ + private String receivePrintHidden; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMoneySettingCode() { + return moneySettingCode; + } + + public void setMoneySettingCode(String moneySettingCode) { + this.moneySettingCode = moneySettingCode; + } + + public String getMoneySettingName() { + return moneySettingName; + } + + public void setMoneySettingName(String moneySettingName) { + this.moneySettingName = moneySettingName; + } + + public String getReceiveType() { + return receiveType; + } + + public void setReceiveType(String receiveType) { + this.receiveType = receiveType; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getMoneyType() { + return moneyType; + } + + public void setMoneyType(String moneyType) { + this.moneyType = moneyType; + } + + public String getIsUpdatePrice() { + return isUpdatePrice; + } + + public void setIsUpdatePrice(String isUpdatePrice) { + this.isUpdatePrice = isUpdatePrice; + } + + public String getIsConvenientMoney() { + return isConvenientMoney; + } + + public void setIsConvenientMoney(String isConvenientMoney) { + this.isConvenientMoney = isConvenientMoney; + } + + public Double getMinUsedNumber() { + return minUsedNumber; + } + + public void setMinUsedNumber(Double minUsedNumber) { + this.minUsedNumber = minUsedNumber; + } + + public String getIsStepReceive() { + return isStepReceive; + } + + public void setIsStepReceive(String isStepReceive) { + this.isStepReceive = isStepReceive; + } + + public Double getStepCondition1() { + return stepCondition1; + } + + public void setStepCondition1(Double stepCondition1) { + this.stepCondition1 = stepCondition1; + } + + public Double getStepPrice1() { + return stepPrice1; + } + + public void setStepPrice1(Double stepPrice1) { + this.stepPrice1 = stepPrice1; + } + + public Double getStepCondition21() { + return stepCondition21; + } + + public void setStepCondition21(Double stepCondition21) { + this.stepCondition21 = stepCondition21; + } + + public Double getStepCondition22() { + return stepCondition22; + } + + public void setStepCondition22(Double stepCondition22) { + this.stepCondition22 = stepCondition22; + } + + public Double getStepPrice2() { + return stepPrice2; + } + + public void setStepPrice2(Double stepPrice2) { + this.stepPrice2 = stepPrice2; + } + + public Double getStepCondition31() { + return stepCondition31; + } + + public void setStepCondition31(Double stepCondition31) { + this.stepCondition31 = stepCondition31; + } + + public Double getStepCondition32() { + return stepCondition32; + } + + public void setStepCondition32(Double stepCondition32) { + this.stepCondition32 = stepCondition32; + } + + public Double getStepPrice3() { + return stepPrice3; + } + + public void setStepPrice3(Double stepPrice3) { + this.stepPrice3 = stepPrice3; + } + + public Double getStepCondition41() { + return stepCondition41; + } + + public void setStepCondition41(Double stepCondition41) { + this.stepCondition41 = stepCondition41; + } + + public Double getStepCondition42() { + return stepCondition42; + } + + public void setStepCondition42(Double stepCondition42) { + this.stepCondition42 = stepCondition42; + } + + public Double getStepPrice4() { + return stepPrice4; + } + + public void setStepPrice4(Double stepPrice4) { + this.stepPrice4 = stepPrice4; + } + + public Double getStepCondition5() { + return stepCondition5; + } + + public void setStepCondition5(Double stepCondition5) { + this.stepCondition5 = stepCondition5; + } + + public Double getStepPrice5() { + return stepPrice5; + } + + public void setStepPrice5(Double stepPrice5) { + this.stepPrice5 = stepPrice5; + } + + public String getRenewMessage() { + return renewMessage; + } + + public void setRenewMessage(String renewMessage) { + this.renewMessage = renewMessage; + } + + public Integer getReceiveWarnStopDay() { + return receiveWarnStopDay; + } + + public void setReceiveWarnStopDay(Integer receiveWarnStopDay) { + this.receiveWarnStopDay = receiveWarnStopDay; + } + + public Integer getMaxWarnNumber() { + return maxWarnNumber; + } + + public void setMaxWarnNumber(Integer maxWarnNumber) { + this.maxWarnNumber = maxWarnNumber; + } + + public String getAskMessage() { + return askMessage; + } + + public void setAskMessage(String askMessage) { + this.askMessage = askMessage; + } + + public Integer getNoReceiveWarnStopDay() { + return noReceiveWarnStopDay; + } + + public void setNoReceiveWarnStopDay(Integer noReceiveWarnStopDay) { + this.noReceiveWarnStopDay = noReceiveWarnStopDay; + } + + public Integer getAssociateMoneyId() { + return associateMoneyId; + } + + public void setAssociateMoneyId(Integer associateMoneyId) { + this.associateMoneyId = associateMoneyId; + } + + public Double getDelayRate() { + return delayRate; + } + + public void setDelayRate(Double delayRate) { + this.delayRate = delayRate; + } + + public Integer getDelayOverDay() { + return delayOverDay; + } + + public void setDelayOverDay(Integer delayOverDay) { + this.delayOverDay = delayOverDay; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getReceivePrintHidden() { + return receivePrintHidden; + } + + public void setReceivePrintHidden(String receivePrintHidden) { + this.receivePrintHidden = receivePrintHidden; + } + + @Override + public String toString() { + return "FyMoneySetting{" + + "id=" + id + + ", moneySettingCode=" + moneySettingCode + + ", moneySettingName=" + moneySettingName + + ", receiveType=" + receiveType + + ", priceUnit=" + priceUnit + + ", receiveCycle=" + receiveCycle + + ", moneyType=" + moneyType + + ", isUpdatePrice=" + isUpdatePrice + + ", isConvenientMoney=" + isConvenientMoney + + ", minUsedNumber=" + minUsedNumber + + ", isStepReceive=" + isStepReceive + + ", stepCondition1=" + stepCondition1 + + ", stepPrice1=" + stepPrice1 + + ", stepCondition21=" + stepCondition21 + + ", stepCondition22=" + stepCondition22 + + ", stepPrice2=" + stepPrice2 + + ", stepCondition31=" + stepCondition31 + + ", stepCondition32=" + stepCondition32 + + ", stepPrice3=" + stepPrice3 + + ", stepCondition41=" + stepCondition41 + + ", stepCondition42=" + stepCondition42 + + ", stepPrice4=" + stepPrice4 + + ", stepCondition5=" + stepCondition5 + + ", stepPrice5=" + stepPrice5 + + ", renewMessage=" + renewMessage + + ", receiveWarnStopDay=" + receiveWarnStopDay + + ", maxWarnNumber=" + maxWarnNumber + + ", askMessage=" + askMessage + + ", noReceiveWarnStopDay=" + noReceiveWarnStopDay + + ", associateMoneyId=" + associateMoneyId + + ", delayRate=" + delayRate + + ", delayOverDay=" + delayOverDay + + ", company=" + company + + ", receivePrintHidden=" + receivePrintHidden + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" new file mode 100644 index 00000000..e3145667 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" @@ -0,0 +1,377 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用临时表1 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneyTemporary01 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编码 + */ + private Integer moneyId; + + /** + * 档案名称 + */ + private String recordName; + + /** + * 档案备注 + */ + private String recordRemark; + + /** + * 房间编码 + */ + private Integer cellId; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 表编号 + */ + private String boxId; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 本次用量 + */ + private Double currentUseNumber; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 操作人编码 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 楼层系数 + */ + private Double floorFactor; + + /** + * 费用倍数 + */ + private Integer moneyMult; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getRecordName() { + return recordName; + } + + public void setRecordName(String recordName) { + this.recordName = recordName; + } + + public String getRecordRemark() { + return recordRemark; + } + + public void setRecordRemark(String recordRemark) { + this.recordRemark = recordRemark; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getBoxId() { + return boxId; + } + + public void setBoxId(String boxId) { + this.boxId = boxId; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getCurrentUseNumber() { + return currentUseNumber; + } + + public void setCurrentUseNumber(Double currentUseNumber) { + this.currentUseNumber = currentUseNumber; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + public Integer getMoneyMult() { + return moneyMult; + } + + public void setMoneyMult(Integer moneyMult) { + this.moneyMult = moneyMult; + } + + @Override + public String toString() { + return "FyMoneyTemporary01{" + + "id=" + id + + ", moneyId=" + moneyId + + ", recordName=" + recordName + + ", recordRemark=" + recordRemark + + ", cellId=" + cellId + + ", estateName=" + estateName + + ", buildingName=" + buildingName + + ", unitName=" + unitName + + ", cellName=" + cellName + + ", customerName=" + customerName + + ", boxId=" + boxId + + ", priceUnit=" + priceUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", currentUseNumber=" + currentUseNumber + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + ", floorFactor=" + floorFactor + + ", moneyMult=" + moneyMult + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" new file mode 100644 index 00000000..248e91c1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" @@ -0,0 +1,321 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用临时表2 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneyTemporary02 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编码 + */ + private Integer moneyId; + + /** + * 档案名称 + */ + private String recordName; + + /** + * 档案备注 + */ + private String recordRemark; + + /** + * 房间编码 + */ + private Integer cellId; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 计费单位 + */ + private Double chargeUnit; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 操作人编码 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 楼层系数 + */ + private Double floorFactor; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getRecordName() { + return recordName; + } + + public void setRecordName(String recordName) { + this.recordName = recordName; + } + + public String getRecordRemark() { + return recordRemark; + } + + public void setRecordRemark(String recordRemark) { + this.recordRemark = recordRemark; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + @Override + public String toString() { + return "FyMoneyTemporary02{" + + "id=" + id + + ", moneyId=" + moneyId + + ", recordName=" + recordName + + ", recordRemark=" + recordRemark + + ", cellId=" + cellId + + ", estateName=" + estateName + + ", buildingName=" + buildingName + + ", unitName=" + unitName + + ", cellName=" + cellName + + ", customerName=" + customerName + + ", chargeUnit=" + chargeUnit + + ", priceUnit=" + priceUnit + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + ", floorFactor=" + floorFactor + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" new file mode 100644 index 00000000..04da5c4d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" @@ -0,0 +1,279 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用临时表3 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneyTemporary03 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编码 + */ + private Integer moneySettingCode; + + /** + * 档案名称 + */ + private String recordName; + + /** + * 档案备注 + */ + private String recordRemark; + + /** + * 公表名称 + */ + private String publicBoxName; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 分摊户数 + */ + private Double shareNumber; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 本次用量 + */ + private Double currentUseNumber; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 操作人编码 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMoneySettingCode() { + return moneySettingCode; + } + + public void setMoneySettingCode(Integer moneySettingCode) { + this.moneySettingCode = moneySettingCode; + } + + public String getRecordName() { + return recordName; + } + + public void setRecordName(String recordName) { + this.recordName = recordName; + } + + public String getRecordRemark() { + return recordRemark; + } + + public void setRecordRemark(String recordRemark) { + this.recordRemark = recordRemark; + } + + public String getPublicBoxName() { + return publicBoxName; + } + + public void setPublicBoxName(String publicBoxName) { + this.publicBoxName = publicBoxName; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getShareNumber() { + return shareNumber; + } + + public void setShareNumber(Double shareNumber) { + this.shareNumber = shareNumber; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getCurrentUseNumber() { + return currentUseNumber; + } + + public void setCurrentUseNumber(Double currentUseNumber) { + this.currentUseNumber = currentUseNumber; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "FyMoneyTemporary03{" + + "id=" + id + + ", moneySettingCode=" + moneySettingCode + + ", recordName=" + recordName + + ", recordRemark=" + recordRemark + + ", publicBoxName=" + publicBoxName + + ", priceUnit=" + priceUnit + + ", shareNumber=" + shareNumber + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", currentUseNumber=" + currentUseNumber + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" new file mode 100644 index 00000000..343ce915 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" @@ -0,0 +1,293 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用临时表4 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneyTemporary04 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编码 + */ + private Integer moneySettingCode; + + /** + * 房间编号 + */ + private Integer cellId; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 表编号 + */ + private String boxId; + + /** + * 分摊金额 + */ + private Double shareMoney; + + /** + * 本次分摊量 + */ + private Double currentShareNumber; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 主键标识 + */ + private String primaryIdentify; + + /** + * 操作人编码 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMoneySettingCode() { + return moneySettingCode; + } + + public void setMoneySettingCode(Integer moneySettingCode) { + this.moneySettingCode = moneySettingCode; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getBoxId() { + return boxId; + } + + public void setBoxId(String boxId) { + this.boxId = boxId; + } + + public Double getShareMoney() { + return shareMoney; + } + + public void setShareMoney(Double shareMoney) { + this.shareMoney = shareMoney; + } + + public Double getCurrentShareNumber() { + return currentShareNumber; + } + + public void setCurrentShareNumber(Double currentShareNumber) { + this.currentShareNumber = currentShareNumber; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getPrimaryIdentify() { + return primaryIdentify; + } + + public void setPrimaryIdentify(String primaryIdentify) { + this.primaryIdentify = primaryIdentify; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "FyMoneyTemporary04{" + + "id=" + id + + ", moneySettingCode=" + moneySettingCode + + ", cellId=" + cellId + + ", estateName=" + estateName + + ", buildingName=" + buildingName + + ", unitName=" + unitName + + ", cellName=" + cellName + + ", customerName=" + customerName + + ", boxId=" + boxId + + ", shareMoney=" + shareMoney + + ", currentShareNumber=" + currentShareNumber + + ", priceUnit=" + priceUnit + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + ", primaryIdentify=" + primaryIdentify + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" new file mode 100644 index 00000000..298cd463 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 预收款管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyPreReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 凭证号 + */ + private String voucherNumber; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 摘要 + */ + private String summary; + + /** + * 金额 + */ + private Double money; + + /** + * 经手人 + */ + private String handlerPerson; + + /** + * 收款日期 + */ + private LocalDateTime receiveDate; + + /** + * 录入人 + */ + private String inputPerson; + + /** + * 所属公司 + */ + private String company; + + /** + * 收款方式 + */ + private String receiveMethod; + + /** + * 数据来源 + */ + private String dataSource; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getVoucherNumber() { + return voucherNumber; + } + + public void setVoucherNumber(String voucherNumber) { + this.voucherNumber = voucherNumber; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getSummary() { + return summary; + } + + public void setSummary(String summary) { + this.summary = summary; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public String getHandlerPerson() { + return handlerPerson; + } + + public void setHandlerPerson(String handlerPerson) { + this.handlerPerson = handlerPerson; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getReceiveMethod() { + return receiveMethod; + } + + public void setReceiveMethod(String receiveMethod) { + this.receiveMethod = receiveMethod; + } + + public String getDataSource() { + return dataSource; + } + + public void setDataSource(String dataSource) { + this.dataSource = dataSource; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "FyPreReceive{" + + "id=" + id + + ", voucherNumber=" + voucherNumber + + ", cellId=" + cellId + + ", summary=" + summary + + ", money=" + money + + ", handlerPerson=" + handlerPerson + + ", receiveDate=" + receiveDate + + ", inputPerson=" + inputPerson + + ", company=" + company + + ", receiveMethod=" + receiveMethod + + ", dataSource=" + dataSource + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" new file mode 100644 index 00000000..04d92ce4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 物业费分布 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyPropertyMoneyDist implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private Integer cellId; + + /** + * 费项编号 + */ + private Integer moneyId; + + /** + * 是否共有费用 + */ + private String isPublicMoney; + + /** + * 当前读数 + */ + private Double currentReadNumber; + + /** + * 上次计费单位 + */ + private Double lastChargeUnit; + + /** + * 楼层系数 + */ + private Double floorFactor; + + /** + * 使用量倍数 + */ + private Integer useNumberMult; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getIsPublicMoney() { + return isPublicMoney; + } + + public void setIsPublicMoney(String isPublicMoney) { + this.isPublicMoney = isPublicMoney; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getLastChargeUnit() { + return lastChargeUnit; + } + + public void setLastChargeUnit(Double lastChargeUnit) { + this.lastChargeUnit = lastChargeUnit; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + public Integer getUseNumberMult() { + return useNumberMult; + } + + public void setUseNumberMult(Integer useNumberMult) { + this.useNumberMult = useNumberMult; + } + + @Override + public String toString() { + return "FyPropertyMoneyDist{" + + "id=" + id + + ", cellId=" + cellId + + ", moneyId=" + moneyId + + ", isPublicMoney=" + isPublicMoney + + ", currentReadNumber=" + currentReadNumber + + ", lastChargeUnit=" + lastChargeUnit + + ", floorFactor=" + floorFactor + + ", useNumberMult=" + useNumberMult + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" new file mode 100644 index 00000000..d684549f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" @@ -0,0 +1,95 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 公表信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyPublicBox implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 公表编号 + */ + private String publicBoxId; + + /** + * 所属费项 + */ + private Integer moneyId; + + /** + * 公表读数 + */ + private Double publicBoxReadNumber; + + /** + * 分摊方法 + */ + private String shareMethod; + + /** + * 公表状态 + */ + private String publicBoxState; + + + public String getPublicBoxId() { + return publicBoxId; + } + + public void setPublicBoxId(String publicBoxId) { + this.publicBoxId = publicBoxId; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public Double getPublicBoxReadNumber() { + return publicBoxReadNumber; + } + + public void setPublicBoxReadNumber(Double publicBoxReadNumber) { + this.publicBoxReadNumber = publicBoxReadNumber; + } + + public String getShareMethod() { + return shareMethod; + } + + public void setShareMethod(String shareMethod) { + this.shareMethod = shareMethod; + } + + public String getPublicBoxState() { + return publicBoxState; + } + + public void setPublicBoxState(String publicBoxState) { + this.publicBoxState = publicBoxState; + } + + @Override + public String toString() { + return "FyPublicBox{" + + "publicBoxId=" + publicBoxId + + ", moneyId=" + moneyId + + ", publicBoxReadNumber=" + publicBoxReadNumber + + ", shareMethod=" + shareMethod + + ", publicBoxState=" + publicBoxState + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" new file mode 100644 index 00000000..ac36b7f5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" @@ -0,0 +1,68 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 公表关联用户 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyPublicBoxUser implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动增长id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 表号 + */ + private String publicBoxId; + + /** + * 房间号 + */ + private Integer cellId; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPublicBoxId() { + return publicBoxId; + } + + public void setPublicBoxId(String publicBoxId) { + this.publicBoxId = publicBoxId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + @Override + public String toString() { + return "FyPublicBoxUser{" + + "id=" + id + + ", publicBoxId=" + publicBoxId + + ", cellId=" + cellId + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" new file mode 100644 index 00000000..1726aaf6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" @@ -0,0 +1,503 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 收款单主单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyReceiptMain implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 收款单号 + */ + @TableId(value = "id", type = IdType.AUTO) + private String id; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 收费日期 + */ + private LocalDateTime receiveDate; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 应付合计 + */ + private Double shouldPayTotal; + + /** + * 本次应收 + */ + private Double currentShouldReceive; + + /** + * 优惠金额 + */ + private Double discountMoney; + + /** + * 收款方式 + */ + private String receiveMethod; + + /** + * 是否业主 + */ + private String isCustomer; + + /** + * 本次实收 + */ + private Double currentRealReceive; + + /** + * 临客费项id + */ + private Long temporaryMoneyId; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 本次欠缴 + */ + private Double currentDelayMoney; + + /** + * 上次欠缴 + */ + private Double lastDelayMoney; + + /** + * 标题 + */ + private String title; + + /** + * 收款类型 + */ + private String receiveType; + + /** + * 收据号 + */ + private String receiptNumber; + + /** + * 发票号 + */ + private String invoiceNumber; + + /** + * 状态 + */ + private String status; + + /** + * 备注 + */ + private String remark; + + /** + * 收款人 + */ + private String receivePerson; + + /** + * 所属公司 + */ + private String company; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 修改原因 + */ + private String updateReason; + + /** + * 单据审核状态 + */ + private String receiptCheckStatus; + + /** + * 单据审核人 + */ + private String receiptCheckPerson; + + /** + * 单据审核时间 + */ + private LocalDateTime receiptCheckTime; + + /** + * 单据审核意见 + */ + private String receiptCheckAdvice; + + /** + * 现金审核状态 + */ + private String moneyCheckStatus; + + /** + * 现金审核人 + */ + private String moneyCheckPerson; + + /** + * 现金审核时间 + */ + private LocalDateTime moneyCheckTime; + + /** + * 现金审核意见 + */ + private String moneyCheckAdvice; + + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Double getShouldPayTotal() { + return shouldPayTotal; + } + + public void setShouldPayTotal(Double shouldPayTotal) { + this.shouldPayTotal = shouldPayTotal; + } + + public Double getCurrentShouldReceive() { + return currentShouldReceive; + } + + public void setCurrentShouldReceive(Double currentShouldReceive) { + this.currentShouldReceive = currentShouldReceive; + } + + public Double getDiscountMoney() { + return discountMoney; + } + + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + public String getReceiveMethod() { + return receiveMethod; + } + + public void setReceiveMethod(String receiveMethod) { + this.receiveMethod = receiveMethod; + } + + public String getIsCustomer() { + return isCustomer; + } + + public void setIsCustomer(String isCustomer) { + this.isCustomer = isCustomer; + } + + public Double getCurrentRealReceive() { + return currentRealReceive; + } + + public void setCurrentRealReceive(Double currentRealReceive) { + this.currentRealReceive = currentRealReceive; + } + + public Long getTemporaryMoneyId() { + return temporaryMoneyId; + } + + public void setTemporaryMoneyId(Long temporaryMoneyId) { + this.temporaryMoneyId = temporaryMoneyId; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Double getCurrentDelayMoney() { + return currentDelayMoney; + } + + public void setCurrentDelayMoney(Double currentDelayMoney) { + this.currentDelayMoney = currentDelayMoney; + } + + public Double getLastDelayMoney() { + return lastDelayMoney; + } + + public void setLastDelayMoney(Double lastDelayMoney) { + this.lastDelayMoney = lastDelayMoney; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getReceiveType() { + return receiveType; + } + + public void setReceiveType(String receiveType) { + this.receiveType = receiveType; + } + + public String getReceiptNumber() { + return receiptNumber; + } + + public void setReceiptNumber(String receiptNumber) { + this.receiptNumber = receiptNumber; + } + + public String getInvoiceNumber() { + return invoiceNumber; + } + + public void setInvoiceNumber(String invoiceNumber) { + this.invoiceNumber = invoiceNumber; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getUpdateReason() { + return updateReason; + } + + public void setUpdateReason(String updateReason) { + this.updateReason = updateReason; + } + + public String getReceiptCheckStatus() { + return receiptCheckStatus; + } + + public void setReceiptCheckStatus(String receiptCheckStatus) { + this.receiptCheckStatus = receiptCheckStatus; + } + + public String getReceiptCheckPerson() { + return receiptCheckPerson; + } + + public void setReceiptCheckPerson(String receiptCheckPerson) { + this.receiptCheckPerson = receiptCheckPerson; + } + + public LocalDateTime getReceiptCheckTime() { + return receiptCheckTime; + } + + public void setReceiptCheckTime(LocalDateTime receiptCheckTime) { + this.receiptCheckTime = receiptCheckTime; + } + + public String getReceiptCheckAdvice() { + return receiptCheckAdvice; + } + + public void setReceiptCheckAdvice(String receiptCheckAdvice) { + this.receiptCheckAdvice = receiptCheckAdvice; + } + + public String getMoneyCheckStatus() { + return moneyCheckStatus; + } + + public void setMoneyCheckStatus(String moneyCheckStatus) { + this.moneyCheckStatus = moneyCheckStatus; + } + + public String getMoneyCheckPerson() { + return moneyCheckPerson; + } + + public void setMoneyCheckPerson(String moneyCheckPerson) { + this.moneyCheckPerson = moneyCheckPerson; + } + + public LocalDateTime getMoneyCheckTime() { + return moneyCheckTime; + } + + public void setMoneyCheckTime(LocalDateTime moneyCheckTime) { + this.moneyCheckTime = moneyCheckTime; + } + + public String getMoneyCheckAdvice() { + return moneyCheckAdvice; + } + + public void setMoneyCheckAdvice(String moneyCheckAdvice) { + this.moneyCheckAdvice = moneyCheckAdvice; + } + + @Override + public String toString() { + return "FyReceiptMain{" + + "id=" + id + + ", cellId=" + cellId + + ", receiveDate=" + receiveDate + + ", customerName=" + customerName + + ", shouldPayTotal=" + shouldPayTotal + + ", currentShouldReceive=" + currentShouldReceive + + ", discountMoney=" + discountMoney + + ", receiveMethod=" + receiveMethod + + ", isCustomer=" + isCustomer + + ", currentRealReceive=" + currentRealReceive + + ", temporaryMoneyId=" + temporaryMoneyId + + ", estateId=" + estateId + + ", currentDelayMoney=" + currentDelayMoney + + ", lastDelayMoney=" + lastDelayMoney + + ", title=" + title + + ", receiveType=" + receiveType + + ", receiptNumber=" + receiptNumber + + ", invoiceNumber=" + invoiceNumber + + ", status=" + status + + ", remark=" + remark + + ", receivePerson=" + receivePerson + + ", company=" + company + + ", operateDate=" + operateDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", updateReason=" + updateReason + + ", receiptCheckStatus=" + receiptCheckStatus + + ", receiptCheckPerson=" + receiptCheckPerson + + ", receiptCheckTime=" + receiptCheckTime + + ", receiptCheckAdvice=" + receiptCheckAdvice + + ", moneyCheckStatus=" + moneyCheckStatus + + ", moneyCheckPerson=" + moneyCheckPerson + + ", moneyCheckTime=" + moneyCheckTime + + ", moneyCheckAdvice=" + moneyCheckAdvice + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" new file mode 100644 index 00000000..352d3143 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" @@ -0,0 +1,377 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 收款单子单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyReceiptSub implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 收款明细单号 + */ + @TableId(value = "receipt_detail_id", type = IdType.AUTO) + private Integer receiptDetailId; + + /** + * 所属收款单号 + */ + private String receiptId; + + /** + * 费项名称 + */ + private String moneySettingName; + + /** + * 计费单价 + */ + private Double chargeUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 实际用量 + */ + private Double realUsed; + + /** + * 费用金额 + */ + private Double money; + + /** + * 滞纳金 + */ + private Double delayMoney; + + /** + * 滞纳金减免金额 + */ + private Double delayDerateMoney; + + /** + * 本次应付 + */ + private Double currentShouldPay; + + /** + * 超期天数 + */ + private Integer overDay; + + /** + * 费用起期 + */ + private LocalDateTime moneyStartDate; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 缴费限期 + */ + private LocalDateTime payLimitDay; + + /** + * 楼层系数 + */ + private Double floorFactor; + + /** + * 记录人 + */ + private String inputPerson; + + /** + * 所属台账id + */ + private String standingBookId; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 费用减免金额 + */ + private Double derateMoney; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 变更原因 + */ + private String updateReason; + + /** + * 变更人id + */ + private String updatePerson; + + /** + * 变更时间 + */ + private LocalDateTime updateDate; + + /** + * 费用倍数 + */ + private Integer moneyMult; + + + public Integer getReceiptDetailId() { + return receiptDetailId; + } + + public void setReceiptDetailId(Integer receiptDetailId) { + this.receiptDetailId = receiptDetailId; + } + + public String getReceiptId() { + return receiptId; + } + + public void setReceiptId(String receiptId) { + this.receiptId = receiptId; + } + + public String getMoneySettingName() { + return moneySettingName; + } + + public void setMoneySettingName(String moneySettingName) { + this.moneySettingName = moneySettingName; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getRealUsed() { + return realUsed; + } + + public void setRealUsed(Double realUsed) { + this.realUsed = realUsed; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getDelayMoney() { + return delayMoney; + } + + public void setDelayMoney(Double delayMoney) { + this.delayMoney = delayMoney; + } + + public Double getDelayDerateMoney() { + return delayDerateMoney; + } + + public void setDelayDerateMoney(Double delayDerateMoney) { + this.delayDerateMoney = delayDerateMoney; + } + + public Double getCurrentShouldPay() { + return currentShouldPay; + } + + public void setCurrentShouldPay(Double currentShouldPay) { + this.currentShouldPay = currentShouldPay; + } + + public Integer getOverDay() { + return overDay; + } + + public void setOverDay(Integer overDay) { + this.overDay = overDay; + } + + public LocalDateTime getMoneyStartDate() { + return moneyStartDate; + } + + public void setMoneyStartDate(LocalDateTime moneyStartDate) { + this.moneyStartDate = moneyStartDate; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public LocalDateTime getPayLimitDay() { + return payLimitDay; + } + + public void setPayLimitDay(LocalDateTime payLimitDay) { + this.payLimitDay = payLimitDay; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public String getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(String standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getDerateMoney() { + return derateMoney; + } + + public void setDerateMoney(Double derateMoney) { + this.derateMoney = derateMoney; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getUpdateReason() { + return updateReason; + } + + public void setUpdateReason(String updateReason) { + this.updateReason = updateReason; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public Integer getMoneyMult() { + return moneyMult; + } + + public void setMoneyMult(Integer moneyMult) { + this.moneyMult = moneyMult; + } + + @Override + public String toString() { + return "FyReceiptSub{" + + "receiptDetailId=" + receiptDetailId + + ", receiptId=" + receiptId + + ", moneySettingName=" + moneySettingName + + ", chargeUnit=" + chargeUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", realUsed=" + realUsed + + ", money=" + money + + ", delayMoney=" + delayMoney + + ", delayDerateMoney=" + delayDerateMoney + + ", currentShouldPay=" + currentShouldPay + + ", overDay=" + overDay + + ", moneyStartDate=" + moneyStartDate + + ", moneyStopDate=" + moneyStopDate + + ", payLimitDay=" + payLimitDay + + ", floorFactor=" + floorFactor + + ", inputPerson=" + inputPerson + + ", standingBookId=" + standingBookId + + ", receiveCycle=" + receiveCycle + + ", derateMoney=" + derateMoney + + ", moneyId=" + moneyId + + ", updateReason=" + updateReason + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", moneyMult=" + moneyMult + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" new file mode 100644 index 00000000..dd320bda --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" @@ -0,0 +1,419 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 退款单主单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyRefundMain implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 退款单号 + */ + @TableId(value = "refund_id", type = IdType.AUTO) + private String refundId; + + /** + * 所属收款单号 + */ + private String receiptId; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 收费日期 + */ + private LocalDateTime receiveCycle; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 费用金额 + */ + private Double money; + + /** + * 实收金额 + */ + private Double realReceiveMoney; + + /** + * 优惠金额 + */ + private Double discountMoney; + + /** + * 收款方式 + */ + private String receiveMethod; + + /** + * 是否业主 + */ + private String isCustomer; + + /** + * 收款金额 + */ + private Double receiveMoney; + + /** + * 费项id + */ + private Long moneyId; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 本次欠缴 + */ + private Double currentDelayMoney; + + /** + * 上次欠缴 + */ + private Double lastDelayMoney; + + /** + * 退款类型 + */ + private String refundType; + + /** + * 收据号 + */ + private String receiptNumber; + + /** + * 发票号 + */ + private String invoiceNumber; + + /** + * 收款人 + */ + private String receivePerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + /** + * 退款原因 + */ + private String refundReason; + + /** + * 退款时间 + */ + private LocalDateTime refundTime; + + /** + * 退款人 + */ + private String refundPerson; + + /** + * 审核状态 + */ + private String checkStatus; + + /** + * 审核人 + */ + private String checkPerson; + + /** + * 审核时间 + */ + private LocalDateTime checkTime; + + /** + * 审核意见 + */ + private String checkAdvice; + + + public String getRefundId() { + return refundId; + } + + public void setRefundId(String refundId) { + this.refundId = refundId; + } + + public String getReceiptId() { + return receiptId; + } + + public void setReceiptId(String receiptId) { + this.receiptId = receiptId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public LocalDateTime getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(LocalDateTime receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getRealReceiveMoney() { + return realReceiveMoney; + } + + public void setRealReceiveMoney(Double realReceiveMoney) { + this.realReceiveMoney = realReceiveMoney; + } + + public Double getDiscountMoney() { + return discountMoney; + } + + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + public String getReceiveMethod() { + return receiveMethod; + } + + public void setReceiveMethod(String receiveMethod) { + this.receiveMethod = receiveMethod; + } + + public String getIsCustomer() { + return isCustomer; + } + + public void setIsCustomer(String isCustomer) { + this.isCustomer = isCustomer; + } + + public Double getReceiveMoney() { + return receiveMoney; + } + + public void setReceiveMoney(Double receiveMoney) { + this.receiveMoney = receiveMoney; + } + + public Long getMoneyId() { + return moneyId; + } + + public void setMoneyId(Long moneyId) { + this.moneyId = moneyId; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Double getCurrentDelayMoney() { + return currentDelayMoney; + } + + public void setCurrentDelayMoney(Double currentDelayMoney) { + this.currentDelayMoney = currentDelayMoney; + } + + public Double getLastDelayMoney() { + return lastDelayMoney; + } + + public void setLastDelayMoney(Double lastDelayMoney) { + this.lastDelayMoney = lastDelayMoney; + } + + public String getRefundType() { + return refundType; + } + + public void setRefundType(String refundType) { + this.refundType = refundType; + } + + public String getReceiptNumber() { + return receiptNumber; + } + + public void setReceiptNumber(String receiptNumber) { + this.receiptNumber = receiptNumber; + } + + public String getInvoiceNumber() { + return invoiceNumber; + } + + public void setInvoiceNumber(String invoiceNumber) { + this.invoiceNumber = invoiceNumber; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getRefundReason() { + return refundReason; + } + + public void setRefundReason(String refundReason) { + this.refundReason = refundReason; + } + + public LocalDateTime getRefundTime() { + return refundTime; + } + + public void setRefundTime(LocalDateTime refundTime) { + this.refundTime = refundTime; + } + + public String getRefundPerson() { + return refundPerson; + } + + public void setRefundPerson(String refundPerson) { + this.refundPerson = refundPerson; + } + + public String getCheckStatus() { + return checkStatus; + } + + public void setCheckStatus(String checkStatus) { + this.checkStatus = checkStatus; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public LocalDateTime getCheckTime() { + return checkTime; + } + + public void setCheckTime(LocalDateTime checkTime) { + this.checkTime = checkTime; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + @Override + public String toString() { + return "FyRefundMain{" + + "refundId=" + refundId + + ", receiptId=" + receiptId + + ", cellId=" + cellId + + ", receiveCycle=" + receiveCycle + + ", customerName=" + customerName + + ", money=" + money + + ", realReceiveMoney=" + realReceiveMoney + + ", discountMoney=" + discountMoney + + ", receiveMethod=" + receiveMethod + + ", isCustomer=" + isCustomer + + ", receiveMoney=" + receiveMoney + + ", moneyId=" + moneyId + + ", estateId=" + estateId + + ", currentDelayMoney=" + currentDelayMoney + + ", lastDelayMoney=" + lastDelayMoney + + ", refundType=" + refundType + + ", receiptNumber=" + receiptNumber + + ", invoiceNumber=" + invoiceNumber + + ", receivePerson=" + receivePerson + + ", remark=" + remark + + ", company=" + company + + ", refundReason=" + refundReason + + ", refundTime=" + refundTime + + ", refundPerson=" + refundPerson + + ", checkStatus=" + checkStatus + + ", checkPerson=" + checkPerson + + ", checkTime=" + checkTime + + ", checkAdvice=" + checkAdvice + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" new file mode 100644 index 00000000..d08a6e4c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 退款单子单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyRefundSub implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 退款单明细单号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属退款单号 + */ + private String refundId; + + /** + * 费项名称 + */ + private String moneySettingName; + + /** + * 计费单价 + */ + private Double chargeUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 实际用量 + */ + private Double realUsed; + + /** + * 费用金额 + */ + private Double money; + + /** + * 滞纳金 + */ + private Double delayMoney; + + /** + * 本次应付 + */ + private Double currentShouldPay; + + /** + * 超期天数 + */ + private Integer overDay; + + /** + * 费用起期 + */ + private LocalDateTime moneyStartDate; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 缴费限期 + */ + private LocalDateTime payLimitDay; + + /** + * 记录人 + */ + private String inputPerson; + + /** + * 所属台账id + */ + private String standingBookId; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 费用减免金额 + */ + private Double moneyDerate; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 滞纳金减免金额 + */ + private Double delayDerateMoney; + + /** + * 费用倍数 + */ + private Integer moneyMult; + + /** + * 楼层系数 + */ + private Double floorFactor; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRefundId() { + return refundId; + } + + public void setRefundId(String refundId) { + this.refundId = refundId; + } + + public String getMoneySettingName() { + return moneySettingName; + } + + public void setMoneySettingName(String moneySettingName) { + this.moneySettingName = moneySettingName; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getRealUsed() { + return realUsed; + } + + public void setRealUsed(Double realUsed) { + this.realUsed = realUsed; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getDelayMoney() { + return delayMoney; + } + + public void setDelayMoney(Double delayMoney) { + this.delayMoney = delayMoney; + } + + public Double getCurrentShouldPay() { + return currentShouldPay; + } + + public void setCurrentShouldPay(Double currentShouldPay) { + this.currentShouldPay = currentShouldPay; + } + + public Integer getOverDay() { + return overDay; + } + + public void setOverDay(Integer overDay) { + this.overDay = overDay; + } + + public LocalDateTime getMoneyStartDate() { + return moneyStartDate; + } + + public void setMoneyStartDate(LocalDateTime moneyStartDate) { + this.moneyStartDate = moneyStartDate; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public LocalDateTime getPayLimitDay() { + return payLimitDay; + } + + public void setPayLimitDay(LocalDateTime payLimitDay) { + this.payLimitDay = payLimitDay; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public String getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(String standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getMoneyDerate() { + return moneyDerate; + } + + public void setMoneyDerate(Double moneyDerate) { + this.moneyDerate = moneyDerate; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public Double getDelayDerateMoney() { + return delayDerateMoney; + } + + public void setDelayDerateMoney(Double delayDerateMoney) { + this.delayDerateMoney = delayDerateMoney; + } + + public Integer getMoneyMult() { + return moneyMult; + } + + public void setMoneyMult(Integer moneyMult) { + this.moneyMult = moneyMult; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + @Override + public String toString() { + return "FyRefundSub{" + + "id=" + id + + ", refundId=" + refundId + + ", moneySettingName=" + moneySettingName + + ", chargeUnit=" + chargeUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", realUsed=" + realUsed + + ", money=" + money + + ", delayMoney=" + delayMoney + + ", currentShouldPay=" + currentShouldPay + + ", overDay=" + overDay + + ", moneyStartDate=" + moneyStartDate + + ", moneyStopDate=" + moneyStopDate + + ", payLimitDay=" + payLimitDay + + ", inputPerson=" + inputPerson + + ", standingBookId=" + standingBookId + + ", receiveCycle=" + receiveCycle + + ", moneyDerate=" + moneyDerate + + ", moneyId=" + moneyId + + ", delayDerateMoney=" + delayDerateMoney + + ", moneyMult=" + moneyMult + + ", floorFactor=" + floorFactor + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" new file mode 100644 index 00000000..1f173ca4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 销售合同 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FySaleContract implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 合同编号 + */ + @TableId(value = "sale_contract_id", type = IdType.AUTO) + private String saleContractId; + + /** + * 所属房间编号 + */ + private Integer cellId; + + /** + * 合同金额 + */ + private Double contractMoney; + + /** + * 合同日期 + */ + private LocalDateTime contractDate; + + /** + * 付款方式 + */ + private String payMethod; + + /** + * 身份证号 + */ + private String idNumber; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 固定电话 + */ + private String onlinePhone; + + /** + * 手机号码 + */ + private String phoneNumber; + + /** + * 备注 + */ + private String remark; + + /** + * 合同附件 + */ + private String contractAttach; + + + public String getSaleContractId() { + return saleContractId; + } + + public void setSaleContractId(String saleContractId) { + this.saleContractId = saleContractId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Double getContractMoney() { + return contractMoney; + } + + public void setContractMoney(Double contractMoney) { + this.contractMoney = contractMoney; + } + + public LocalDateTime getContractDate() { + return contractDate; + } + + public void setContractDate(LocalDateTime contractDate) { + this.contractDate = contractDate; + } + + public String getPayMethod() { + return payMethod; + } + + public void setPayMethod(String payMethod) { + this.payMethod = payMethod; + } + + public String getIdNumber() { + return idNumber; + } + + public void setIdNumber(String idNumber) { + this.idNumber = idNumber; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getOnlinePhone() { + return onlinePhone; + } + + public void setOnlinePhone(String onlinePhone) { + this.onlinePhone = onlinePhone; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getContractAttach() { + return contractAttach; + } + + public void setContractAttach(String contractAttach) { + this.contractAttach = contractAttach; + } + + @Override + public String toString() { + return "FySaleContract{" + + "saleContractId=" + saleContractId + + ", cellId=" + cellId + + ", contractMoney=" + contractMoney + + ", contractDate=" + contractDate + + ", payMethod=" + payMethod + + ", idNumber=" + idNumber + + ", customerName=" + customerName + + ", onlinePhone=" + onlinePhone + + ", phoneNumber=" + phoneNumber + + ", remark=" + remark + + ", contractAttach=" + contractAttach + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" new file mode 100644 index 00000000..5121055b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 公摊费用台账概要 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyShareStandingBook implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 公摊费用编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 台账名称 + */ + private String standingBookName; + + /** + * 关联费用编码 + */ + private Integer associateCostCode; + + /** + * 备注 + */ + private String remark; + + /** + * 生成日期 + */ + private LocalDateTime createDate; + + /** + * 生成人 + */ + private String createPerson; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getStandingBookName() { + return standingBookName; + } + + public void setStandingBookName(String standingBookName) { + this.standingBookName = standingBookName; + } + + public Integer getAssociateCostCode() { + return associateCostCode; + } + + public void setAssociateCostCode(Integer associateCostCode) { + this.associateCostCode = associateCostCode; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "FyShareStandingBook{" + + "id=" + id + + ", standingBookName=" + standingBookName + + ", associateCostCode=" + associateCostCode + + ", remark=" + remark + + ", createDate=" + createDate + + ", createPerson=" + createPerson + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" new file mode 100644 index 00000000..196a3672 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" @@ -0,0 +1,223 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 公摊费用台账公表明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyShareStandingBookDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 公表明细id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属台账编号 + */ + private Double standingBookId; + + /** + * 公表名称 + */ + private String publicBoxName; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 分摊户数 + */ + private Double shareNumber; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 本次用量 + */ + private Double currentUseNumber; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Double getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(Double standingBookId) { + this.standingBookId = standingBookId; + } + + public String getPublicBoxName() { + return publicBoxName; + } + + public void setPublicBoxName(String publicBoxName) { + this.publicBoxName = publicBoxName; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getShareNumber() { + return shareNumber; + } + + public void setShareNumber(Double shareNumber) { + this.shareNumber = shareNumber; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getCurrentUseNumber() { + return currentUseNumber; + } + + public void setCurrentUseNumber(Double currentUseNumber) { + this.currentUseNumber = currentUseNumber; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + @Override + public String toString() { + return "FyShareStandingBookDetail{" + + "id=" + id + + ", standingBookId=" + standingBookId + + ", publicBoxName=" + publicBoxName + + ", priceUnit=" + priceUnit + + ", shareNumber=" + shareNumber + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", currentUseNumber=" + currentUseNumber + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" new file mode 100644 index 00000000..29b44da3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" @@ -0,0 +1,307 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 公摊费用台账用户明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyShareUserDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户明细id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属台账编号 + */ + private Double standingBookId; + + /** + * 所属房间编码 + */ + private Integer cellId; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 表编号 + */ + private String boxId; + + /** + * 分摊金额 + */ + private Double shareMoney; + + /** + * 本次分摊量 + */ + private Double currentShareNumber; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费标识 + */ + private String receiveIdentify; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 费用标识 + */ + private String costIdentify; + + /** + * 收费单号 + */ + private String receiveId; + + /** + * 退款次数 + */ + private Integer refundNumber; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 减免金额 + */ + private Double derateMoney; + + /** + * 应收金额 + */ + private Double shouldPay; + + /** + * 作废次数 + */ + private Integer invalidNumber; + + /** + * 减免滞纳金 + */ + private Double derateDelayMoney; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Double getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(Double standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getBoxId() { + return boxId; + } + + public void setBoxId(String boxId) { + this.boxId = boxId; + } + + public Double getShareMoney() { + return shareMoney; + } + + public void setShareMoney(Double shareMoney) { + this.shareMoney = shareMoney; + } + + public Double getCurrentShareNumber() { + return currentShareNumber; + } + + public void setCurrentShareNumber(Double currentShareNumber) { + this.currentShareNumber = currentShareNumber; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public String getReceiveIdentify() { + return receiveIdentify; + } + + public void setReceiveIdentify(String receiveIdentify) { + this.receiveIdentify = receiveIdentify; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public String getCostIdentify() { + return costIdentify; + } + + public void setCostIdentify(String costIdentify) { + this.costIdentify = costIdentify; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public Integer getRefundNumber() { + return refundNumber; + } + + public void setRefundNumber(Integer refundNumber) { + this.refundNumber = refundNumber; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getDerateMoney() { + return derateMoney; + } + + public void setDerateMoney(Double derateMoney) { + this.derateMoney = derateMoney; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public Integer getInvalidNumber() { + return invalidNumber; + } + + public void setInvalidNumber(Integer invalidNumber) { + this.invalidNumber = invalidNumber; + } + + public Double getDerateDelayMoney() { + return derateDelayMoney; + } + + public void setDerateDelayMoney(Double derateDelayMoney) { + this.derateDelayMoney = derateDelayMoney; + } + + @Override + public String toString() { + return "FyShareUserDetail{" + + "id=" + id + + ", standingBookId=" + standingBookId + + ", cellId=" + cellId + + ", customerName=" + customerName + + ", boxId=" + boxId + + ", shareMoney=" + shareMoney + + ", currentShareNumber=" + currentShareNumber + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveIdentify=" + receiveIdentify + + ", priceUnit=" + priceUnit + + ", costIdentify=" + costIdentify + + ", receiveId=" + receiveId + + ", refundNumber=" + refundNumber + + ", receiveCycle=" + receiveCycle + + ", derateMoney=" + derateMoney + + ", shouldPay=" + shouldPay + + ", invalidNumber=" + invalidNumber + + ", derateDelayMoney=" + derateDelayMoney + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" new file mode 100644 index 00000000..c23dfc0a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用台账概要 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyStandingBook implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 台账编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 台账名称 + */ + private String standingBookName; + + /** + * 关联费用编码 + */ + private Integer associateCostCode; + + /** + * 备注 + */ + private String remark; + + /** + * 生成日期 + */ + private LocalDateTime creationDate; + + /** + * 生成人 + */ + private String creationPerson; + + /** + * 关联台账账号 + */ + private String associateStandingBookId; + + /** + * 所属公司 + */ + private Integer company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getStandingBookName() { + return standingBookName; + } + + public void setStandingBookName(String standingBookName) { + this.standingBookName = standingBookName; + } + + public Integer getAssociateCostCode() { + return associateCostCode; + } + + public void setAssociateCostCode(Integer associateCostCode) { + this.associateCostCode = associateCostCode; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public LocalDateTime getCreationDate() { + return creationDate; + } + + public void setCreationDate(LocalDateTime creationDate) { + this.creationDate = creationDate; + } + + public String getCreationPerson() { + return creationPerson; + } + + public void setCreationPerson(String creationPerson) { + this.creationPerson = creationPerson; + } + + public String getAssociateStandingBookId() { + return associateStandingBookId; + } + + public void setAssociateStandingBookId(String associateStandingBookId) { + this.associateStandingBookId = associateStandingBookId; + } + + public Integer getCompany() { + return company; + } + + public void setCompany(Integer company) { + this.company = company; + } + + @Override + public String toString() { + return "FyStandingBook{" + + "id=" + id + + ", standingBookName=" + standingBookName + + ", associateCostCode=" + associateCostCode + + ", remark=" + remark + + ", creationDate=" + creationDate + + ", creationPerson=" + creationPerson + + ", associateStandingBookId=" + associateStandingBookId + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" new file mode 100644 index 00000000..e74226d7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" @@ -0,0 +1,391 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用台账明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyStandingBookDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 台账明细编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属台账编号 + */ + private Integer standingBookId; + + /** + * 所属房间编码 + */ + private Integer cellId; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 表编号 + */ + private String boxId; + + /** + * 计费单位 + */ + private Double chargeUnit; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 本次用量 + */ + private Double currentUseNumber; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 上次费用起期 + */ + private LocalDateTime lastPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次费用限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 费用标识 + */ + private String costIdentify; + + /** + * 收费标识 + */ + private String receiveIdentify; + + /** + * 收费单号 + */ + private String receiveId; + + /** + * 退款次数 + */ + private Integer refundNumber; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 减免费用 + */ + private Double derateMoney; + + /** + * 应收费用 + */ + private Double shouldReceive; + + /** + * 作废次数 + */ + private Integer invalidNumber; + + /** + * 楼层系数 + */ + private Double floorFactor; + + /** + * 减免滞纳金 + */ + private Double derateDelayMoney; + + /** + * 费用倍数 + */ + private Integer payMult; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(Integer standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getBoxId() { + return boxId; + } + + public void setBoxId(String boxId) { + this.boxId = boxId; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getCurrentUseNumber() { + return currentUseNumber; + } + + public void setCurrentUseNumber(Double currentUseNumber) { + this.currentUseNumber = currentUseNumber; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getLastPayStartDate() { + return lastPayStartDate; + } + + public void setLastPayStartDate(LocalDateTime lastPayStartDate) { + this.lastPayStartDate = lastPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public String getCostIdentify() { + return costIdentify; + } + + public void setCostIdentify(String costIdentify) { + this.costIdentify = costIdentify; + } + + public String getReceiveIdentify() { + return receiveIdentify; + } + + public void setReceiveIdentify(String receiveIdentify) { + this.receiveIdentify = receiveIdentify; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public Integer getRefundNumber() { + return refundNumber; + } + + public void setRefundNumber(Integer refundNumber) { + this.refundNumber = refundNumber; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getDerateMoney() { + return derateMoney; + } + + public void setDerateMoney(Double derateMoney) { + this.derateMoney = derateMoney; + } + + public Double getShouldReceive() { + return shouldReceive; + } + + public void setShouldReceive(Double shouldReceive) { + this.shouldReceive = shouldReceive; + } + + public Integer getInvalidNumber() { + return invalidNumber; + } + + public void setInvalidNumber(Integer invalidNumber) { + this.invalidNumber = invalidNumber; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + public Double getDerateDelayMoney() { + return derateDelayMoney; + } + + public void setDerateDelayMoney(Double derateDelayMoney) { + this.derateDelayMoney = derateDelayMoney; + } + + public Integer getPayMult() { + return payMult; + } + + public void setPayMult(Integer payMult) { + this.payMult = payMult; + } + + @Override + public String toString() { + return "FyStandingBookDetail{" + + "id=" + id + + ", standingBookId=" + standingBookId + + ", cellId=" + cellId + + ", customerName=" + customerName + + ", boxId=" + boxId + + ", chargeUnit=" + chargeUnit + + ", priceUnit=" + priceUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", currentUseNumber=" + currentUseNumber + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", lastPayStartDate=" + lastPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", costIdentify=" + costIdentify + + ", receiveIdentify=" + receiveIdentify + + ", receiveId=" + receiveId + + ", refundNumber=" + refundNumber + + ", receiveCycle=" + receiveCycle + + ", derateMoney=" + derateMoney + + ", shouldReceive=" + shouldReceive + + ", invalidNumber=" + invalidNumber + + ", floorFactor=" + floorFactor + + ", derateDelayMoney=" + derateDelayMoney + + ", payMult=" + payMult + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" new file mode 100644 index 00000000..4451f4b6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 临客费项设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyTemporaryMoneySetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 临客费项id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项名称 + */ + private String temporaryMoneyName; + + /** + * 上级费项id + */ + private Integer upperMoneyId; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 费项说明 + */ + private String moneyDescription; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTemporaryMoneyName() { + return temporaryMoneyName; + } + + public void setTemporaryMoneyName(String temporaryMoneyName) { + this.temporaryMoneyName = temporaryMoneyName; + } + + public Integer getUpperMoneyId() { + return upperMoneyId; + } + + public void setUpperMoneyId(Integer upperMoneyId) { + this.upperMoneyId = upperMoneyId; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public String getMoneyDescription() { + return moneyDescription; + } + + public void setMoneyDescription(String moneyDescription) { + this.moneyDescription = moneyDescription; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "FyTemporaryMoneySetting{" + + "id=" + id + + ", temporaryMoneyName=" + temporaryMoneyName + + ", upperMoneyId=" + upperMoneyId + + ", priceUnit=" + priceUnit + + ", moneyDescription=" + moneyDescription + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" new file mode 100644 index 00000000..e1cc2fff --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" @@ -0,0 +1,169 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 意见箱 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblAdviceBox implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String name; + + /** + * 类型 + */ + private String type; + + /** + * 状态 + */ + private String status; + + /** + * 管理员id + */ + private String adminId; + + /** + * 用户范围id + */ + private String userRangeId; + + /** + * 用户范围姓名 + */ + @TableField("User_range_name") + private String userRangeName; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getAdminId() { + return adminId; + } + + public void setAdminId(String adminId) { + this.adminId = adminId; + } + + public String getUserRangeId() { + return userRangeId; + } + + public void setUserRangeId(String userRangeId) { + this.userRangeId = userRangeId; + } + + public String getUserRangeName() { + return userRangeName; + } + + public void setUserRangeName(String userRangeName) { + this.userRangeName = userRangeName; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblAdviceBox{" + + "id=" + id + + ", name=" + name + + ", type=" + type + + ", status=" + status + + ", adminId=" + adminId + + ", userRangeId=" + userRangeId + + ", userRangeName=" + userRangeName + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" new file mode 100644 index 00000000..fbdd9156 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 题目可选答案信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblAnswerData implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 答案编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属题目编号 + */ + private Integer subjectId; + + /** + * 答案名称 + */ + private String answerName; + + /** + * 答案类型 + */ + private String answerType; + + /** + * 建档人 + */ + private String inputRecordPerson; + + /** + * 建档时间 + */ + private LocalDateTime inputRecordDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getSubjectId() { + return subjectId; + } + + public void setSubjectId(Integer subjectId) { + this.subjectId = subjectId; + } + + public String getAnswerName() { + return answerName; + } + + public void setAnswerName(String answerName) { + this.answerName = answerName; + } + + public String getAnswerType() { + return answerType; + } + + public void setAnswerType(String answerType) { + this.answerType = answerType; + } + + public String getInputRecordPerson() { + return inputRecordPerson; + } + + public void setInputRecordPerson(String inputRecordPerson) { + this.inputRecordPerson = inputRecordPerson; + } + + public LocalDateTime getInputRecordDate() { + return inputRecordDate; + } + + public void setInputRecordDate(LocalDateTime inputRecordDate) { + this.inputRecordDate = inputRecordDate; + } + + @Override + public String toString() { + return "TblAnswerData{" + + "id=" + id + + ", subjectId=" + subjectId + + ", answerName=" + answerName + + ", answerType=" + answerType + + ", inputRecordPerson=" + inputRecordPerson + + ", inputRecordDate=" + inputRecordDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" new file mode 100644 index 00000000..5bf6f9d7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" @@ -0,0 +1,110 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 参数档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblArgRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 参数编码 + */ + @TableId(value = "arg_code", type = IdType.AUTO) + private String argCode; + + /** + * 参数名称 + */ + private String argName; + + /** + * 参数值 + */ + private String argValue; + + /** + * 说明 + */ + private String argDesc; + + /** + * 排序号 + */ + private Integer argOrder; + + /** + * 所属产品 + */ + private String belongProduct; + + + public String getArgCode() { + return argCode; + } + + public void setArgCode(String argCode) { + this.argCode = argCode; + } + + public String getArgName() { + return argName; + } + + public void setArgName(String argName) { + this.argName = argName; + } + + public String getArgValue() { + return argValue; + } + + public void setArgValue(String argValue) { + this.argValue = argValue; + } + + public String getArgDesc() { + return argDesc; + } + + public void setArgDesc(String argDesc) { + this.argDesc = argDesc; + } + + public Integer getArgOrder() { + return argOrder; + } + + public void setArgOrder(Integer argOrder) { + this.argOrder = argOrder; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblArgRecord{" + + "argCode=" + argCode + + ", argName=" + argName + + ", argValue=" + argValue + + ", argDesc=" + argDesc + + ", argOrder=" + argOrder + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" new file mode 100644 index 00000000..eaeb744b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" @@ -0,0 +1,101 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 附件 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblAttupload implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 附件id + */ + @TableId(value = "attID", type = IdType.AUTO) + private Integer attID; + + /** + * 附件名称 + */ + @TableField("attName") + private String attName; + + /** + * 附件新名称 + */ + @TableField("attNewName") + private String attNewName; + + /** + * 唯一key + */ + @TableField("attKey") + private String attKey; + + /** + * 附件分类 + */ + @TableField("attClass") + private String attClass; + + + public Integer getAttID() { + return attID; + } + + public void setAttID(Integer attID) { + this.attID = attID; + } + + public String getAttName() { + return attName; + } + + public void setAttName(String attName) { + this.attName = attName; + } + + public String getAttNewName() { + return attNewName; + } + + public void setAttNewName(String attNewName) { + this.attNewName = attNewName; + } + + public String getAttKey() { + return attKey; + } + + public void setAttKey(String attKey) { + this.attKey = attKey; + } + + public String getAttClass() { + return attClass; + } + + public void setAttClass(String attClass) { + this.attClass = attClass; + } + + @Override + public String toString() { + return "TblAttupload{" + + "attID=" + attID + + ", attName=" + attName + + ", attNewName=" + attNewName + + ", attKey=" + attKey + + ", attClass=" + attClass + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" new file mode 100644 index 00000000..05d8de78 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" @@ -0,0 +1,54 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 颜色管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblColor implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 颜色 + */ + private String color; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getColor() { + return color; + } + + public void setColor(String color) { + this.color = color; + } + + @Override + public String toString() { + return "TblColor{" + + "id=" + id + + ", color=" + color + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" new file mode 100644 index 00000000..b7164ecd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 常用语 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCommonLanguage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 内容 + */ + private String content; + + /** + * 状态 + */ + private String status; + + /** + * 分类 + */ + private String category; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblCommonLanguage{" + + "id=" + id + + ", content=" + content + + ", status=" + status + + ", category=" + category + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" new file mode 100644 index 00000000..e4d1eed9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" @@ -0,0 +1,68 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 常用短信 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCommonMessage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 短信编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 短信内容 + */ + private String messageContent; + + /** + * 类型 + */ + private Long messageType; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMessageContent() { + return messageContent; + } + + public void setMessageContent(String messageContent) { + this.messageContent = messageContent; + } + + public Long getMessageType() { + return messageType; + } + + public void setMessageType(Long messageType) { + this.messageType = messageType; + } + + @Override + public String toString() { + return "TblCommonMessage{" + + "id=" + id + + ", messageContent=" + messageContent + + ", messageType=" + messageType + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" new file mode 100644 index 00000000..7cf5a810 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" @@ -0,0 +1,349 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 企业档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCompany implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 企业编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业全称 + */ + private String companyFullName; + + /** + * 企业简称 + */ + private String companySimpleName; + + /** + * 英文名称 + */ + private String companyEnglishName; + + /** + * 企业品牌 + */ + private String companyBrand; + + /** + * 企业类型 + */ + private String companyType; + + /** + * 所属行业 + */ + private String companyTrade; + + /** + * 企业地址 + */ + private String companyAddr; + + /** + * 邮政编码 + */ + private String postCode; + + /** + * 企业电话 + */ + private String companyPhone; + + /** + * 企业传真 + */ + private String companyFax; + + /** + * 企业网站 + */ + private String companyWebsite; + + /** + * 企业邮箱 + */ + private String companyEmail; + + /** + * 国税号 + */ + private String companyNational; + + /** + * 地税号 + */ + private String companyLand; + + /** + * 开户银行 + */ + private String openBank; + + /** + * 银行账号 + */ + private String bankAccount; + + /** + * 法人代表 + */ + private String companyLeader; + + /** + * 注册时间 + */ + private LocalDateTime registerDate; + + /** + * 注册资金 + */ + private Double registerMoney; + + /** + * 员工人数 + */ + private String employeeNumber; + + /** + * 企业简介 + */ + private String companyIntro; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCompanyFullName() { + return companyFullName; + } + + public void setCompanyFullName(String companyFullName) { + this.companyFullName = companyFullName; + } + + public String getCompanySimpleName() { + return companySimpleName; + } + + public void setCompanySimpleName(String companySimpleName) { + this.companySimpleName = companySimpleName; + } + + public String getCompanyEnglishName() { + return companyEnglishName; + } + + public void setCompanyEnglishName(String companyEnglishName) { + this.companyEnglishName = companyEnglishName; + } + + public String getCompanyBrand() { + return companyBrand; + } + + public void setCompanyBrand(String companyBrand) { + this.companyBrand = companyBrand; + } + + public String getCompanyType() { + return companyType; + } + + public void setCompanyType(String companyType) { + this.companyType = companyType; + } + + public String getCompanyTrade() { + return companyTrade; + } + + public void setCompanyTrade(String companyTrade) { + this.companyTrade = companyTrade; + } + + public String getCompanyAddr() { + return companyAddr; + } + + public void setCompanyAddr(String companyAddr) { + this.companyAddr = companyAddr; + } + + public String getPostCode() { + return postCode; + } + + public void setPostCode(String postCode) { + this.postCode = postCode; + } + + public String getCompanyPhone() { + return companyPhone; + } + + public void setCompanyPhone(String companyPhone) { + this.companyPhone = companyPhone; + } + + public String getCompanyFax() { + return companyFax; + } + + public void setCompanyFax(String companyFax) { + this.companyFax = companyFax; + } + + public String getCompanyWebsite() { + return companyWebsite; + } + + public void setCompanyWebsite(String companyWebsite) { + this.companyWebsite = companyWebsite; + } + + public String getCompanyEmail() { + return companyEmail; + } + + public void setCompanyEmail(String companyEmail) { + this.companyEmail = companyEmail; + } + + public String getCompanyNational() { + return companyNational; + } + + public void setCompanyNational(String companyNational) { + this.companyNational = companyNational; + } + + public String getCompanyLand() { + return companyLand; + } + + public void setCompanyLand(String companyLand) { + this.companyLand = companyLand; + } + + public String getOpenBank() { + return openBank; + } + + public void setOpenBank(String openBank) { + this.openBank = openBank; + } + + public String getBankAccount() { + return bankAccount; + } + + public void setBankAccount(String bankAccount) { + this.bankAccount = bankAccount; + } + + public String getCompanyLeader() { + return companyLeader; + } + + public void setCompanyLeader(String companyLeader) { + this.companyLeader = companyLeader; + } + + public LocalDateTime getRegisterDate() { + return registerDate; + } + + public void setRegisterDate(LocalDateTime registerDate) { + this.registerDate = registerDate; + } + + public Double getRegisterMoney() { + return registerMoney; + } + + public void setRegisterMoney(Double registerMoney) { + this.registerMoney = registerMoney; + } + + public String getEmployeeNumber() { + return employeeNumber; + } + + public void setEmployeeNumber(String employeeNumber) { + this.employeeNumber = employeeNumber; + } + + public String getCompanyIntro() { + return companyIntro; + } + + public void setCompanyIntro(String companyIntro) { + this.companyIntro = companyIntro; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "TblCompany{" + + "id=" + id + + ", companyFullName=" + companyFullName + + ", companySimpleName=" + companySimpleName + + ", companyEnglishName=" + companyEnglishName + + ", companyBrand=" + companyBrand + + ", companyType=" + companyType + + ", companyTrade=" + companyTrade + + ", companyAddr=" + companyAddr + + ", postCode=" + postCode + + ", companyPhone=" + companyPhone + + ", companyFax=" + companyFax + + ", companyWebsite=" + companyWebsite + + ", companyEmail=" + companyEmail + + ", companyNational=" + companyNational + + ", companyLand=" + companyLand + + ", openBank=" + openBank + + ", bankAccount=" + bankAccount + + ", companyLeader=" + companyLeader + + ", registerDate=" + registerDate + + ", registerMoney=" + registerMoney + + ", employeeNumber=" + employeeNumber + + ", companyIntro=" + companyIntro + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" new file mode 100644 index 00000000..f8c86ab3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" @@ -0,0 +1,237 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 单位名录 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCompanyRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 公司名称 + */ + private String companyName; + + /** + * 公司地址 + */ + private String companyAdd; + + /** + * 公司类型 + */ + private String companyType; + + /** + * 公司级别 + */ + private String compantGrade; + + /** + * 上级部门 + */ + private String parentCompany; + + /** + * 负责人 + */ + private String leader; + + /** + * 邮政编码 + */ + private String postCode; + + /** + * 公司电话 + */ + private String companyPhone; + + /** + * 传真号码 + */ + private String faxNumber; + + /** + * 电子邮件 + */ + private String email; + + /** + * 简单介绍 + */ + private String simpleDesc; + + /** + * 备注 + */ + private String remark; + + /** + * 录入人 + */ + private String inputPerson; + + /** + * 录入时间 + */ + private LocalDateTime inputTime; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCompanyName() { + return companyName; + } + + public void setCompanyName(String companyName) { + this.companyName = companyName; + } + + public String getCompanyAdd() { + return companyAdd; + } + + public void setCompanyAdd(String companyAdd) { + this.companyAdd = companyAdd; + } + + public String getCompanyType() { + return companyType; + } + + public void setCompanyType(String companyType) { + this.companyType = companyType; + } + + public String getCompantGrade() { + return compantGrade; + } + + public void setCompantGrade(String compantGrade) { + this.compantGrade = compantGrade; + } + + public String getParentCompany() { + return parentCompany; + } + + public void setParentCompany(String parentCompany) { + this.parentCompany = parentCompany; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getPostCode() { + return postCode; + } + + public void setPostCode(String postCode) { + this.postCode = postCode; + } + + public String getCompanyPhone() { + return companyPhone; + } + + public void setCompanyPhone(String companyPhone) { + this.companyPhone = companyPhone; + } + + public String getFaxNumber() { + return faxNumber; + } + + public void setFaxNumber(String faxNumber) { + this.faxNumber = faxNumber; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getSimpleDesc() { + return simpleDesc; + } + + public void setSimpleDesc(String simpleDesc) { + this.simpleDesc = simpleDesc; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public LocalDateTime getInputTime() { + return inputTime; + } + + public void setInputTime(LocalDateTime inputTime) { + this.inputTime = inputTime; + } + + @Override + public String toString() { + return "TblCompanyRecord{" + + "id=" + id + + ", companyName=" + companyName + + ", companyAdd=" + companyAdd + + ", companyType=" + companyType + + ", compantGrade=" + compantGrade + + ", parentCompany=" + parentCompany + + ", leader=" + leader + + ", postCode=" + postCode + + ", companyPhone=" + companyPhone + + ", faxNumber=" + faxNumber + + ", email=" + email + + ", simpleDesc=" + simpleDesc + + ", remark=" + remark + + ", inputPerson=" + inputPerson + + ", inputTime=" + inputTime + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" new file mode 100644 index 00000000..b1fb8c64 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" @@ -0,0 +1,293 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 企业公告 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblComparyNotice implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动增长id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 公告主题 + */ + private String noticeTheme; + + /** + * 公告内容 + */ + private String noticeContent; + + /** + * 开始时间 + */ + private LocalDateTime startDate; + + /** + * 结束时间 + */ + private LocalDateTime stopDate; + + /** + * 接受类型 + */ + private String receiveType; + + /** + * 公告分类 + */ + private Long noticeCategory; + + /** + * 附件名称 + */ + private String attachName; + + /** + * 附件路径 + */ + private String attachPath; + + /** + * 状态 + */ + private String status; + + /** + * 公告类别 + */ + private String noticeType; + + /** + * 公告附件 + */ + private String noticeAttach; + + /** + * 录入人 + */ + private String inputPerson; + + /** + * 录入时间 + */ + private LocalDateTime inputDate; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 审批时间 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 允许查看的用户编码 + */ + private String allowUserCode; + + /** + * 允许查看的用户名称 + */ + private String allowUserName; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getNoticeTheme() { + return noticeTheme; + } + + public void setNoticeTheme(String noticeTheme) { + this.noticeTheme = noticeTheme; + } + + public String getNoticeContent() { + return noticeContent; + } + + public void setNoticeContent(String noticeContent) { + this.noticeContent = noticeContent; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getReceiveType() { + return receiveType; + } + + public void setReceiveType(String receiveType) { + this.receiveType = receiveType; + } + + public Long getNoticeCategory() { + return noticeCategory; + } + + public void setNoticeCategory(Long noticeCategory) { + this.noticeCategory = noticeCategory; + } + + public String getAttachName() { + return attachName; + } + + public void setAttachName(String attachName) { + this.attachName = attachName; + } + + public String getAttachPath() { + return attachPath; + } + + public void setAttachPath(String attachPath) { + this.attachPath = attachPath; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getNoticeType() { + return noticeType; + } + + public void setNoticeType(String noticeType) { + this.noticeType = noticeType; + } + + public String getNoticeAttach() { + return noticeAttach; + } + + public void setNoticeAttach(String noticeAttach) { + this.noticeAttach = noticeAttach; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public LocalDateTime getInputDate() { + return inputDate; + } + + public void setInputDate(LocalDateTime inputDate) { + this.inputDate = inputDate; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getAllowUserCode() { + return allowUserCode; + } + + public void setAllowUserCode(String allowUserCode) { + this.allowUserCode = allowUserCode; + } + + public String getAllowUserName() { + return allowUserName; + } + + public void setAllowUserName(String allowUserName) { + this.allowUserName = allowUserName; + } + + @Override + public String toString() { + return "TblComparyNotice{" + + "id=" + id + + ", noticeTheme=" + noticeTheme + + ", noticeContent=" + noticeContent + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", receiveType=" + receiveType + + ", noticeCategory=" + noticeCategory + + ", attachName=" + attachName + + ", attachPath=" + attachPath + + ", status=" + status + + ", noticeType=" + noticeType + + ", noticeAttach=" + noticeAttach + + ", inputPerson=" + inputPerson + + ", inputDate=" + inputDate + + ", checkPerson=" + checkPerson + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", allowUserCode=" + allowUserCode + + ", allowUserName=" + allowUserName + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" new file mode 100644 index 00000000..de4723c0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 自定义类型 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCustomType implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 类型编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 类型名称 + */ + private String name; + + /** + * 类型状态 + */ + private String status; + + /** + * 类型分类 + */ + private String category; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + + @Override + public String toString() { + return "TblCustomType{" + + "id=" + id + + ", name=" + name + + ", status=" + status + + ", category=" + category + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" new file mode 100644 index 00000000..91778b33 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" @@ -0,0 +1,112 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 仪表盘 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDashboard implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 数据项 + */ + private String dataItem; + + /** + * 更多地址 + */ + private String morePath; + + /** + * 权限 + */ + private String privileges; + + /** + * 状态 + */ + @TableField("Status") + private String Status; + + /** + * 所属产品 + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDataItem() { + return dataItem; + } + + public void setDataItem(String dataItem) { + this.dataItem = dataItem; + } + + public String getMorePath() { + return morePath; + } + + public void setMorePath(String morePath) { + this.morePath = morePath; + } + + public String getPrivileges() { + return privileges; + } + + public void setPrivileges(String privileges) { + this.privileges = privileges; + } + + public String getStatus() { + return Status; + } + + public void setStatus(String Status) { + this.Status = Status; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblDashboard{" + + "id=" + id + + ", dataItem=" + dataItem + + ", morePath=" + morePath + + ", privileges=" + privileges + + ", Status=" + Status + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" new file mode 100644 index 00000000..0bb821f5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" @@ -0,0 +1,83 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 工作日期 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 日期 + */ + private LocalDateTime dt; + + /** + * 星期 + */ + private Integer weekday; + + /** + * 是否上班 + */ + private Integer isWork; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getDt() { + return dt; + } + + public void setDt(LocalDateTime dt) { + this.dt = dt; + } + + public Integer getWeekday() { + return weekday; + } + + public void setWeekday(Integer weekday) { + this.weekday = weekday; + } + + public Integer getIsWork() { + return isWork; + } + + public void setIsWork(Integer isWork) { + this.isWork = isWork; + } + + @Override + public String toString() { + return "TblDate{" + + "id=" + id + + ", dt=" + dt + + ", weekday=" + weekday + + ", isWork=" + isWork + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" new file mode 100644 index 00000000..d9d0ad54 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 数据库设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDbSetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 连接地址 + */ + @TableField("db_Url") + private String dbUrl; + + /** + * 用户名 + */ + private String dbUsername; + + /** + * 密码 + */ + private String dbPwd; + + /** + * 数据库名 + */ + private String dbLibName; + + /** + * 存放路径 + */ + private String savePath; + + /** + * 存放名称 + */ + private String saveName; + + + public String getDbUrl() { + return dbUrl; + } + + public void setDbUrl(String dbUrl) { + this.dbUrl = dbUrl; + } + + public String getDbUsername() { + return dbUsername; + } + + public void setDbUsername(String dbUsername) { + this.dbUsername = dbUsername; + } + + public String getDbPwd() { + return dbPwd; + } + + public void setDbPwd(String dbPwd) { + this.dbPwd = dbPwd; + } + + public String getDbLibName() { + return dbLibName; + } + + public void setDbLibName(String dbLibName) { + this.dbLibName = dbLibName; + } + + public String getSavePath() { + return savePath; + } + + public void setSavePath(String savePath) { + this.savePath = savePath; + } + + public String getSaveName() { + return saveName; + } + + public void setSaveName(String saveName) { + this.saveName = saveName; + } + + @Override + public String toString() { + return "TblDbSetting{" + + "dbUrl=" + dbUrl + + ", dbUsername=" + dbUsername + + ", dbPwd=" + dbPwd + + ", dbLibName=" + dbLibName + + ", savePath=" + savePath + + ", saveName=" + saveName + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" new file mode 100644 index 00000000..8211db58 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 数据库备份 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDbbackup implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 备份数据库名 + */ + private String dbName; + + /** + * 备份路径 + */ + private String dbUrl; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人姓名 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDbName() { + return dbName; + } + + public void setDbName(String dbName) { + this.dbName = dbName; + } + + public String getDbUrl() { + return dbUrl; + } + + public void setDbUrl(String dbUrl) { + this.dbUrl = dbUrl; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "TblDbbackup{" + + "id=" + id + + ", dbName=" + dbName + + ", dbUrl=" + dbUrl + + ", operateId=" + operateId + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" new file mode 100644 index 00000000..8a718586 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 数据库还原 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDbrecovery implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 还原数据库名 + */ + private String dbName; + + /** + * 还原路径 + */ + private String dbUrl; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人姓名 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDbName() { + return dbName; + } + + public void setDbName(String dbName) { + this.dbName = dbName; + } + + public String getDbUrl() { + return dbUrl; + } + + public void setDbUrl(String dbUrl) { + this.dbUrl = dbUrl; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "TblDbrecovery{" + + "id=" + id + + ", dbName=" + dbName + + ", dbUrl=" + dbUrl + + ", operateId=" + operateId + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" new file mode 100644 index 00000000..66c98ba8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" @@ -0,0 +1,136 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 数据库 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDbsource implements Serializable { + + private static final long serialVersionUID=1L; + + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String sourceName; + + /** + * 中文解释 + */ + private String sourceDesc; + + /** + * 类型 + */ + private String sourceType; + + /** + * 分类 + */ + private String sourceClass; + + /** + * 是否可以清空 + */ + private String idClear; + + /** + * 更新时间 + */ + private LocalDateTime updateDate; + + /** + * 所属产品 + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getSourceName() { + return sourceName; + } + + public void setSourceName(String sourceName) { + this.sourceName = sourceName; + } + + public String getSourceDesc() { + return sourceDesc; + } + + public void setSourceDesc(String sourceDesc) { + this.sourceDesc = sourceDesc; + } + + public String getSourceType() { + return sourceType; + } + + public void setSourceType(String sourceType) { + this.sourceType = sourceType; + } + + public String getSourceClass() { + return sourceClass; + } + + public void setSourceClass(String sourceClass) { + this.sourceClass = sourceClass; + } + + public String getIdClear() { + return idClear; + } + + public void setIdClear(String idClear) { + this.idClear = idClear; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblDbsource{" + + "id=" + id + + ", sourceName=" + sourceName + + ", sourceDesc=" + sourceDesc + + ", sourceType=" + sourceType + + ", sourceClass=" + sourceClass + + ", idClear=" + idClear + + ", updateDate=" + updateDate + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" new file mode 100644 index 00000000..e2c6bc93 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" @@ -0,0 +1,251 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 部门信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDept implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 部门id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 部门编码 + */ + private String deptCode; + + /** + * 部门名称 + */ + private String deptName; + + /** + * 部门负责人 + */ + private String deptLeader; + + /** + * 部门电话 + */ + private String deptPhone; + + /** + * 部门类型 + */ + private Long deptType; + + /** + * 部门传真 + */ + private String deptFax; + + /** + * 部门上级编号 + */ + private Integer deptParent; + + /** + * 部门层级线 + */ + private String deptLine; + + /** + * 部门权限 + */ + private String deptPrivileges; + + /** + * 部门管理权限 + */ + private String deptManagePrivileges; + + /** + * 机构类别 + */ + private String organCategory; + + /** + * 岗位编制数 + */ + private Integer deptPersonNumber; + + /** + * 建档人 + */ + private String inputPerson; + + /** + * 建档时间 + */ + private LocalDateTime inputTime; + + /** + * 部门备注 + */ + private String deptRemark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDeptCode() { + return deptCode; + } + + public void setDeptCode(String deptCode) { + this.deptCode = deptCode; + } + + public String getDeptName() { + return deptName; + } + + public void setDeptName(String deptName) { + this.deptName = deptName; + } + + public String getDeptLeader() { + return deptLeader; + } + + public void setDeptLeader(String deptLeader) { + this.deptLeader = deptLeader; + } + + public String getDeptPhone() { + return deptPhone; + } + + public void setDeptPhone(String deptPhone) { + this.deptPhone = deptPhone; + } + + public Long getDeptType() { + return deptType; + } + + public void setDeptType(Long deptType) { + this.deptType = deptType; + } + + public String getDeptFax() { + return deptFax; + } + + public void setDeptFax(String deptFax) { + this.deptFax = deptFax; + } + + public Integer getDeptParent() { + return deptParent; + } + + public void setDeptParent(Integer deptParent) { + this.deptParent = deptParent; + } + + public String getDeptLine() { + return deptLine; + } + + public void setDeptLine(String deptLine) { + this.deptLine = deptLine; + } + + public String getDeptPrivileges() { + return deptPrivileges; + } + + public void setDeptPrivileges(String deptPrivileges) { + this.deptPrivileges = deptPrivileges; + } + + public String getDeptManagePrivileges() { + return deptManagePrivileges; + } + + public void setDeptManagePrivileges(String deptManagePrivileges) { + this.deptManagePrivileges = deptManagePrivileges; + } + + public String getOrganCategory() { + return organCategory; + } + + public void setOrganCategory(String organCategory) { + this.organCategory = organCategory; + } + + public Integer getDeptPersonNumber() { + return deptPersonNumber; + } + + public void setDeptPersonNumber(Integer deptPersonNumber) { + this.deptPersonNumber = deptPersonNumber; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public LocalDateTime getInputTime() { + return inputTime; + } + + public void setInputTime(LocalDateTime inputTime) { + this.inputTime = inputTime; + } + + public String getDeptRemark() { + return deptRemark; + } + + public void setDeptRemark(String deptRemark) { + this.deptRemark = deptRemark; + } + + @Override + public String toString() { + return "TblDept{" + + "id=" + id + + ", deptCode=" + deptCode + + ", deptName=" + deptName + + ", deptLeader=" + deptLeader + + ", deptPhone=" + deptPhone + + ", deptType=" + deptType + + ", deptFax=" + deptFax + + ", deptParent=" + deptParent + + ", deptLine=" + deptLine + + ", deptPrivileges=" + deptPrivileges + + ", deptManagePrivileges=" + deptManagePrivileges + + ", organCategory=" + organCategory + + ", deptPersonNumber=" + deptPersonNumber + + ", inputPerson=" + inputPerson + + ", inputTime=" + inputTime + + ", deptRemark=" + deptRemark + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" new file mode 100644 index 00000000..0e500733 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" @@ -0,0 +1,54 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 部门key + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDeptkey implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * Key编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * key名称 + */ + private String deptName; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDeptName() { + return deptName; + } + + public void setDeptName(String deptName) { + this.deptName = deptName; + } + + @Override + public String toString() { + return "TblDeptkey{" + + "id=" + id + + ", deptName=" + deptName + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" new file mode 100644 index 00000000..0ee46f0e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" @@ -0,0 +1,109 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 桌面 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDesktop implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编码 + */ + private String id; + + /** + * 名称 + */ + private String name; + + /** + * 更多地址 + */ + private String morePath; + + /** + * 权限 + */ + private String privileges; + + /** + * 状态 + */ + private String status; + + /** + * 所属产品 + */ + private String belongProduct; + + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getMorePath() { + return morePath; + } + + public void setMorePath(String morePath) { + this.morePath = morePath; + } + + public String getPrivileges() { + return privileges; + } + + public void setPrivileges(String privileges) { + this.privileges = privileges; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblDesktop{" + + "id=" + id + + ", name=" + name + + ", morePath=" + morePath + + ", privileges=" + privileges + + ", status=" + status + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" new file mode 100644 index 00000000..94b6efe5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" @@ -0,0 +1,265 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 邮件接受 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEmailReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 接受id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属邮件id + */ + private Long emailSendId; + + /** + * 单个接收人id + */ + private String receiveId; + + /** + * 接受人群编码 + */ + private String receivePersonCode; + + /** + * 接受人群名称 + */ + private String receivePersonName; + + /** + * 邮件标题 + */ + private String emailTitle; + + /** + * 邮件内容 + */ + private String emailContent; + + /** + * 重要级别 + */ + private String importantGrade; + + /** + * 状态 + */ + private String status; + + /** + * 删除标志 + */ + private String isDelete; + + /** + * 密送标志 + */ + private String isSecretSend; + + /** + * 邮件附件 + */ + private String emailAttach; + + /** + * 接受类型 + */ + private String receiveType; + + /** + * 发送人id + */ + private String sendPersonId; + + /** + * 发送人姓名 + */ + private String sendPersonName; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + /** + * 接受时间 + */ + private LocalDateTime receiveDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getEmailSendId() { + return emailSendId; + } + + public void setEmailSendId(Long emailSendId) { + this.emailSendId = emailSendId; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public String getReceivePersonCode() { + return receivePersonCode; + } + + public void setReceivePersonCode(String receivePersonCode) { + this.receivePersonCode = receivePersonCode; + } + + public String getReceivePersonName() { + return receivePersonName; + } + + public void setReceivePersonName(String receivePersonName) { + this.receivePersonName = receivePersonName; + } + + public String getEmailTitle() { + return emailTitle; + } + + public void setEmailTitle(String emailTitle) { + this.emailTitle = emailTitle; + } + + public String getEmailContent() { + return emailContent; + } + + public void setEmailContent(String emailContent) { + this.emailContent = emailContent; + } + + public String getImportantGrade() { + return importantGrade; + } + + public void setImportantGrade(String importantGrade) { + this.importantGrade = importantGrade; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getIsDelete() { + return isDelete; + } + + public void setIsDelete(String isDelete) { + this.isDelete = isDelete; + } + + public String getIsSecretSend() { + return isSecretSend; + } + + public void setIsSecretSend(String isSecretSend) { + this.isSecretSend = isSecretSend; + } + + public String getEmailAttach() { + return emailAttach; + } + + public void setEmailAttach(String emailAttach) { + this.emailAttach = emailAttach; + } + + public String getReceiveType() { + return receiveType; + } + + public void setReceiveType(String receiveType) { + this.receiveType = receiveType; + } + + public String getSendPersonId() { + return sendPersonId; + } + + public void setSendPersonId(String sendPersonId) { + this.sendPersonId = sendPersonId; + } + + public String getSendPersonName() { + return sendPersonName; + } + + public void setSendPersonName(String sendPersonName) { + this.sendPersonName = sendPersonName; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + @Override + public String toString() { + return "TblEmailReceive{" + + "id=" + id + + ", emailSendId=" + emailSendId + + ", receiveId=" + receiveId + + ", receivePersonCode=" + receivePersonCode + + ", receivePersonName=" + receivePersonName + + ", emailTitle=" + emailTitle + + ", emailContent=" + emailContent + + ", importantGrade=" + importantGrade + + ", status=" + status + + ", isDelete=" + isDelete + + ", isSecretSend=" + isSecretSend + + ", emailAttach=" + emailAttach + + ", receiveType=" + receiveType + + ", sendPersonId=" + sendPersonId + + ", sendPersonName=" + sendPersonName + + ", sendDate=" + sendDate + + ", receiveDate=" + receiveDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" new file mode 100644 index 00000000..58761c5f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" @@ -0,0 +1,223 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 邮件发送 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEmailSend implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 邮件id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 接受人群编码 + */ + private String receivePersonCode; + + /** + * 接受人群名称 + */ + private String receivePersonName; + + /** + * 邮件标题 + */ + private String emailTitle; + + /** + * 邮件内容 + */ + private String emailContent; + + /** + * 重要级别 + */ + private String importantGrade; + + /** + * 是否草稿 + */ + private String isDraft; + + /** + * 删除标志 + */ + private String isDelete; + + /** + * 密送标志 + */ + private String isSecretSend; + + /** + * 邮件附件 + */ + private String emailAttach; + + /** + * 发送类型 + */ + private String sendType; + + /** + * 发送人id + */ + private String sendPerson; + + /** + * 发送人姓名 + */ + private String sendName; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getReceivePersonCode() { + return receivePersonCode; + } + + public void setReceivePersonCode(String receivePersonCode) { + this.receivePersonCode = receivePersonCode; + } + + public String getReceivePersonName() { + return receivePersonName; + } + + public void setReceivePersonName(String receivePersonName) { + this.receivePersonName = receivePersonName; + } + + public String getEmailTitle() { + return emailTitle; + } + + public void setEmailTitle(String emailTitle) { + this.emailTitle = emailTitle; + } + + public String getEmailContent() { + return emailContent; + } + + public void setEmailContent(String emailContent) { + this.emailContent = emailContent; + } + + public String getImportantGrade() { + return importantGrade; + } + + public void setImportantGrade(String importantGrade) { + this.importantGrade = importantGrade; + } + + public String getIsDraft() { + return isDraft; + } + + public void setIsDraft(String isDraft) { + this.isDraft = isDraft; + } + + public String getIsDelete() { + return isDelete; + } + + public void setIsDelete(String isDelete) { + this.isDelete = isDelete; + } + + public String getIsSecretSend() { + return isSecretSend; + } + + public void setIsSecretSend(String isSecretSend) { + this.isSecretSend = isSecretSend; + } + + public String getEmailAttach() { + return emailAttach; + } + + public void setEmailAttach(String emailAttach) { + this.emailAttach = emailAttach; + } + + public String getSendType() { + return sendType; + } + + public void setSendType(String sendType) { + this.sendType = sendType; + } + + public String getSendPerson() { + return sendPerson; + } + + public void setSendPerson(String sendPerson) { + this.sendPerson = sendPerson; + } + + public String getSendName() { + return sendName; + } + + public void setSendName(String sendName) { + this.sendName = sendName; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + @Override + public String toString() { + return "TblEmailSend{" + + "id=" + id + + ", receivePersonCode=" + receivePersonCode + + ", receivePersonName=" + receivePersonName + + ", emailTitle=" + emailTitle + + ", emailContent=" + emailContent + + ", importantGrade=" + importantGrade + + ", isDraft=" + isDraft + + ", isDelete=" + isDelete + + ", isSecretSend=" + isSecretSend + + ", emailAttach=" + emailAttach + + ", sendType=" + sendType + + ", sendPerson=" + sendPerson + + ", sendName=" + sendName + + ", sendDate=" + sendDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" new file mode 100644 index 00000000..c07df708 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" @@ -0,0 +1,377 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 员工通讯录 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEmployeeContact implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 排序号 + */ + private Integer orderId; + + /** + * 所属类别名称 + */ + private String categoryName; + + /** + * 所属类别id + */ + private String categoryId; + + /** + * 姓名 + */ + private String name; + + /** + * 工号 + */ + private String workNum; + + /** + * 部门 + */ + private String dept; + + /** + * 角色 + */ + private String role; + + /** + * 职位 + */ + private String position; + + /** + * 性别 + */ + private String gender; + + /** + * 生日 + */ + private String birthday; + + /** + * 办公电话 + */ + private String officePhone; + + /** + * 传真 + */ + private String fax; + + /** + * 移动电话 + */ + private String movePhone; + + /** + * 家庭电话 + */ + private String homePhone; + + /** + * 电子邮件 + */ + private String email; + + /** + * QQ号 + */ + private String qq; + + /** + * 微信号 + */ + private String wchat; + + /** + * 内部即时通 + */ + private String innerMsn; + + /** + * 地址 + */ + private String addr; + + /** + * 邮编 + */ + private String postCode; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人id + */ + private String createPersonId; + + /** + * 创建人名称 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getOrderId() { + return orderId; + } + + public void setOrderId(Integer orderId) { + this.orderId = orderId; + } + + public String getCategoryName() { + return categoryName; + } + + public void setCategoryName(String categoryName) { + this.categoryName = categoryName; + } + + public String getCategoryId() { + return categoryId; + } + + public void setCategoryId(String categoryId) { + this.categoryId = categoryId; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getWorkNum() { + return workNum; + } + + public void setWorkNum(String workNum) { + this.workNum = workNum; + } + + public String getDept() { + return dept; + } + + public void setDept(String dept) { + this.dept = dept; + } + + public String getRole() { + return role; + } + + public void setRole(String role) { + this.role = role; + } + + public String getPosition() { + return position; + } + + public void setPosition(String position) { + this.position = position; + } + + public String getGender() { + return gender; + } + + public void setGender(String gender) { + this.gender = gender; + } + + public String getBirthday() { + return birthday; + } + + public void setBirthday(String birthday) { + this.birthday = birthday; + } + + public String getOfficePhone() { + return officePhone; + } + + public void setOfficePhone(String officePhone) { + this.officePhone = officePhone; + } + + public String getFax() { + return fax; + } + + public void setFax(String fax) { + this.fax = fax; + } + + public String getMovePhone() { + return movePhone; + } + + public void setMovePhone(String movePhone) { + this.movePhone = movePhone; + } + + public String getHomePhone() { + return homePhone; + } + + public void setHomePhone(String homePhone) { + this.homePhone = homePhone; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getQq() { + return qq; + } + + public void setQq(String qq) { + this.qq = qq; + } + + public String getWchat() { + return wchat; + } + + public void setWchat(String wchat) { + this.wchat = wchat; + } + + public String getInnerMsn() { + return innerMsn; + } + + public void setInnerMsn(String innerMsn) { + this.innerMsn = innerMsn; + } + + public String getAddr() { + return addr; + } + + public void setAddr(String addr) { + this.addr = addr; + } + + public String getPostCode() { + return postCode; + } + + public void setPostCode(String postCode) { + this.postCode = postCode; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePersonId() { + return createPersonId; + } + + public void setCreatePersonId(String createPersonId) { + this.createPersonId = createPersonId; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblEmployeeContact{" + + "id=" + id + + ", orderId=" + orderId + + ", categoryName=" + categoryName + + ", categoryId=" + categoryId + + ", name=" + name + + ", workNum=" + workNum + + ", dept=" + dept + + ", role=" + role + + ", position=" + position + + ", gender=" + gender + + ", birthday=" + birthday + + ", officePhone=" + officePhone + + ", fax=" + fax + + ", movePhone=" + movePhone + + ", homePhone=" + homePhone + + ", email=" + email + + ", qq=" + qq + + ", wchat=" + wchat + + ", innerMsn=" + innerMsn + + ", addr=" + addr + + ", postCode=" + postCode + + ", remark=" + remark + + ", createPersonId=" + createPersonId + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" new file mode 100644 index 00000000..677f2aba --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 员工通讯录类别 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEmployeeContactCategory implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 类别名称 + */ + private String categoryName; + + /** + * 排序号 + */ + private Long orderId; + + /** + * 备注 + */ + private String remark; + + /** + * 上级类别id + */ + private String parentCategoryId; + + /** + * 标记线 + */ + private String line; + + /** + * 创建人id + */ + private String createPersonId; + + /** + * 创建人名称 + */ + private String createPerson; + + /** + * 权限字符串 + */ + private String privileges; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCategoryName() { + return categoryName; + } + + public void setCategoryName(String categoryName) { + this.categoryName = categoryName; + } + + public Long getOrderId() { + return orderId; + } + + public void setOrderId(Long orderId) { + this.orderId = orderId; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getParentCategoryId() { + return parentCategoryId; + } + + public void setParentCategoryId(String parentCategoryId) { + this.parentCategoryId = parentCategoryId; + } + + public String getLine() { + return line; + } + + public void setLine(String line) { + this.line = line; + } + + public String getCreatePersonId() { + return createPersonId; + } + + public void setCreatePersonId(String createPersonId) { + this.createPersonId = createPersonId; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public String getPrivileges() { + return privileges; + } + + public void setPrivileges(String privileges) { + this.privileges = privileges; + } + + @Override + public String toString() { + return "TblEmployeeContactCategory{" + + "id=" + id + + ", categoryName=" + categoryName + + ", orderId=" + orderId + + ", remark=" + remark + + ", parentCategoryId=" + parentCategoryId + + ", line=" + line + + ", createPersonId=" + createPersonId + + ", createPerson=" + createPerson + + ", privileges=" + privileges + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" new file mode 100644 index 00000000..c875af6b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 环境配置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEnvirSetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 序号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * logo图片名称 + */ + private String logoName; + + /** + * 产品名称 + */ + private String productName; + + /** + * 版本号 + */ + private String version; + + /** + * 当前版本标识 + */ + private String currentVersion; + + /** + * 类型 + */ + private String type; + + /** + * 是否主系统 + */ + private String isMain; + + /** + * 自定义文本一 + */ + private String customTextOne; + + /** + * 自定义文本二 + */ + private String customTextTwo; + + /** + * 自定义文本三 + */ + private String customTextThree; + + /** + * 自定义文本四 + */ + private String customTextFour; + + /** + * 设置时间 + */ + private LocalDateTime setTime; + + /** + * 产品代码 + */ + private String productId; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getLogoName() { + return logoName; + } + + public void setLogoName(String logoName) { + this.logoName = logoName; + } + + public String getProductName() { + return productName; + } + + public void setProductName(String productName) { + this.productName = productName; + } + + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version; + } + + public String getCurrentVersion() { + return currentVersion; + } + + public void setCurrentVersion(String currentVersion) { + this.currentVersion = currentVersion; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getIsMain() { + return isMain; + } + + public void setIsMain(String isMain) { + this.isMain = isMain; + } + + public String getCustomTextOne() { + return customTextOne; + } + + public void setCustomTextOne(String customTextOne) { + this.customTextOne = customTextOne; + } + + public String getCustomTextTwo() { + return customTextTwo; + } + + public void setCustomTextTwo(String customTextTwo) { + this.customTextTwo = customTextTwo; + } + + public String getCustomTextThree() { + return customTextThree; + } + + public void setCustomTextThree(String customTextThree) { + this.customTextThree = customTextThree; + } + + public String getCustomTextFour() { + return customTextFour; + } + + public void setCustomTextFour(String customTextFour) { + this.customTextFour = customTextFour; + } + + public LocalDateTime getSetTime() { + return setTime; + } + + public void setSetTime(LocalDateTime setTime) { + this.setTime = setTime; + } + + public String getProductId() { + return productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + @Override + public String toString() { + return "TblEnvirSetting{" + + "id=" + id + + ", logoName=" + logoName + + ", productName=" + productName + + ", version=" + version + + ", currentVersion=" + currentVersion + + ", type=" + type + + ", isMain=" + isMain + + ", customTextOne=" + customTextOne + + ", customTextTwo=" + customTextTwo + + ", customTextThree=" + customTextThree + + ", customTextFour=" + customTextFour + + ", setTime=" + setTime + + ", productId=" + productId + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" new file mode 100644 index 00000000..e305987c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" @@ -0,0 +1,391 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 功能模块 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblFunctionModel implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 模块编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 模块名称 + */ + private String modelName; + + /** + * 模块类型 + */ + private String modelType; + + /** + * 上级模块编码 + */ + private Long modelParent; + + /** + * 状态 + */ + private String modelStatus; + + /** + * 文件路径 + */ + private String modelUrl; + + /** + * 分析参考 + */ + private String modelAnalyseRef; + + /** + * 报表分析 + */ + private Integer modelReportAnalyse; + + /** + * 图标名称 + */ + private String modelIcon; + + /** + * 模块性质 + */ + private String modelProperty; + + /** + * 模块描述 + */ + private String modelDesc; + + /** + * 是否控制操作权限 + */ + private String isControl; + + /** + * 全部 + */ + private String mFull; + + /** + * 新增 + */ + private String mAdd; + + /** + * 修改 + */ + private String mMod; + + /** + * 删除 + */ + private String mDel; + + /** + * 导出 + */ + private String mExp; + + /** + * 审批 + */ + private String mAud; + + /** + * 执行 + */ + private String mExe; + + /** + * 查询 + */ + private String mQue; + + /** + * 个人 + */ + private String dPerson; + + /** + * 部门 + */ + private String dDept; + + /** + * 公司 + */ + private String dCompany; + + /** + * 排序字段 + */ + private Double orderid; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getModelName() { + return modelName; + } + + public void setModelName(String modelName) { + this.modelName = modelName; + } + + public String getModelType() { + return modelType; + } + + public void setModelType(String modelType) { + this.modelType = modelType; + } + + public Long getModelParent() { + return modelParent; + } + + public void setModelParent(Long modelParent) { + this.modelParent = modelParent; + } + + public String getModelStatus() { + return modelStatus; + } + + public void setModelStatus(String modelStatus) { + this.modelStatus = modelStatus; + } + + public String getModelUrl() { + return modelUrl; + } + + public void setModelUrl(String modelUrl) { + this.modelUrl = modelUrl; + } + + public String getModelAnalyseRef() { + return modelAnalyseRef; + } + + public void setModelAnalyseRef(String modelAnalyseRef) { + this.modelAnalyseRef = modelAnalyseRef; + } + + public Integer getModelReportAnalyse() { + return modelReportAnalyse; + } + + public void setModelReportAnalyse(Integer modelReportAnalyse) { + this.modelReportAnalyse = modelReportAnalyse; + } + + public String getModelIcon() { + return modelIcon; + } + + public void setModelIcon(String modelIcon) { + this.modelIcon = modelIcon; + } + + public String getModelProperty() { + return modelProperty; + } + + public void setModelProperty(String modelProperty) { + this.modelProperty = modelProperty; + } + + public String getModelDesc() { + return modelDesc; + } + + public void setModelDesc(String modelDesc) { + this.modelDesc = modelDesc; + } + + public String getIsControl() { + return isControl; + } + + public void setIsControl(String isControl) { + this.isControl = isControl; + } + + public String getmFull() { + return mFull; + } + + public void setmFull(String mFull) { + this.mFull = mFull; + } + + public String getmAdd() { + return mAdd; + } + + public void setmAdd(String mAdd) { + this.mAdd = mAdd; + } + + public String getmMod() { + return mMod; + } + + public void setmMod(String mMod) { + this.mMod = mMod; + } + + public String getmDel() { + return mDel; + } + + public void setmDel(String mDel) { + this.mDel = mDel; + } + + public String getmExp() { + return mExp; + } + + public void setmExp(String mExp) { + this.mExp = mExp; + } + + public String getmAud() { + return mAud; + } + + public void setmAud(String mAud) { + this.mAud = mAud; + } + + public String getmExe() { + return mExe; + } + + public void setmExe(String mExe) { + this.mExe = mExe; + } + + public String getmQue() { + return mQue; + } + + public void setmQue(String mQue) { + this.mQue = mQue; + } + + public String getdPerson() { + return dPerson; + } + + public void setdPerson(String dPerson) { + this.dPerson = dPerson; + } + + public String getdDept() { + return dDept; + } + + public void setdDept(String dDept) { + this.dDept = dDept; + } + + public String getdCompany() { + return dCompany; + } + + public void setdCompany(String dCompany) { + this.dCompany = dCompany; + } + + public Double getOrderid() { + return orderid; + } + + public void setOrderid(Double orderid) { + this.orderid = orderid; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblFunctionModel{" + + "id=" + id + + ", modelName=" + modelName + + ", modelType=" + modelType + + ", modelParent=" + modelParent + + ", modelStatus=" + modelStatus + + ", modelUrl=" + modelUrl + + ", modelAnalyseRef=" + modelAnalyseRef + + ", modelReportAnalyse=" + modelReportAnalyse + + ", modelIcon=" + modelIcon + + ", modelProperty=" + modelProperty + + ", modelDesc=" + modelDesc + + ", isControl=" + isControl + + ", mFull=" + mFull + + ", mAdd=" + mAdd + + ", mMod=" + mMod + + ", mDel=" + mDel + + ", mExp=" + mExp + + ", mAud=" + mAud + + ", mExe=" + mExe + + ", mQue=" + mQue + + ", dPerson=" + dPerson + + ", dDept=" + dDept + + ", dCompany=" + dCompany + + ", orderid=" + orderid + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" new file mode 100644 index 00000000..23224d89 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 群组档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblGroupRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动增长id + */ + private Integer groupRecordId; + + /** + * 群组名称 + */ + private String groupName; + + /** + * 群组类型 + */ + private String groupType; + + /** + * 群组说明 + */ + private String groupDesc; + + /** + * 组内成员id + */ + private String groupMemberId; + + /** + * 组内成员名称 + */ + private String groupMemberName; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getGroupRecordId() { + return groupRecordId; + } + + public void setGroupRecordId(Integer groupRecordId) { + this.groupRecordId = groupRecordId; + } + + public String getGroupName() { + return groupName; + } + + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public String getGroupType() { + return groupType; + } + + public void setGroupType(String groupType) { + this.groupType = groupType; + } + + public String getGroupDesc() { + return groupDesc; + } + + public void setGroupDesc(String groupDesc) { + this.groupDesc = groupDesc; + } + + public String getGroupMemberId() { + return groupMemberId; + } + + public void setGroupMemberId(String groupMemberId) { + this.groupMemberId = groupMemberId; + } + + public String getGroupMemberName() { + return groupMemberName; + } + + public void setGroupMemberName(String groupMemberName) { + this.groupMemberName = groupMemberName; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblGroupRecord{" + + "groupRecordId=" + groupRecordId + + ", groupName=" + groupName + + ", groupType=" + groupType + + ", groupDesc=" + groupDesc + + ", groupMemberId=" + groupMemberId + + ", groupMemberName=" + groupMemberName + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" new file mode 100644 index 00000000..40531a0d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" @@ -0,0 +1,54 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 分组待办事项 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblGroupsTodo implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 分组id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 待办事项id + */ + private String todoId; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTodoId() { + return todoId; + } + + public void setTodoId(String todoId) { + this.todoId = todoId; + } + + @Override + public String toString() { + return "TblGroupsTodo{" + + "id=" + id + + ", todoId=" + todoId + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" new file mode 100644 index 00000000..20512431 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" @@ -0,0 +1,67 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 分组用户 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblGroupsUser implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 分组id + */ + private Integer groupId; + + /** + * 对象id + */ + private String objId; + + /** + * 绑定类型 + */ + private Integer objType; + + + public Integer getGroupId() { + return groupId; + } + + public void setGroupId(Integer groupId) { + this.groupId = groupId; + } + + public String getObjId() { + return objId; + } + + public void setObjId(String objId) { + this.objId = objId; + } + + public Integer getObjType() { + return objType; + } + + public void setObjType(Integer objType) { + this.objType = objType; + } + + @Override + public String toString() { + return "TblGroupsUser{" + + "groupId=" + groupId + + ", objId=" + objId + + ", objType=" + objType + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" new file mode 100644 index 00000000..c2c00d40 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 登录日志 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblLoginLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 登录人员编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 登录日期 + */ + private LocalDateTime loginDate; + + /** + * 登录的ip地址 + */ + private String loginIp; + + /** + * 登录状态 + */ + private String loginStatus; + + /** + * 进入模块名称 + */ + private Long openMk; + + /** + * 登录机器名 + */ + private String loginMechineName; + + /** + * 端口号 + */ + private String loginPort; + + /** + * 登录入口 + */ + private String loginDoor; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getLoginDate() { + return loginDate; + } + + public void setLoginDate(LocalDateTime loginDate) { + this.loginDate = loginDate; + } + + public String getLoginIp() { + return loginIp; + } + + public void setLoginIp(String loginIp) { + this.loginIp = loginIp; + } + + public String getLoginStatus() { + return loginStatus; + } + + public void setLoginStatus(String loginStatus) { + this.loginStatus = loginStatus; + } + + public Long getOpenMk() { + return openMk; + } + + public void setOpenMk(Long openMk) { + this.openMk = openMk; + } + + public String getLoginMechineName() { + return loginMechineName; + } + + public void setLoginMechineName(String loginMechineName) { + this.loginMechineName = loginMechineName; + } + + public String getLoginPort() { + return loginPort; + } + + public void setLoginPort(String loginPort) { + this.loginPort = loginPort; + } + + public String getLoginDoor() { + return loginDoor; + } + + public void setLoginDoor(String loginDoor) { + this.loginDoor = loginDoor; + } + + @Override + public String toString() { + return "TblLoginLog{" + + "id=" + id + + ", loginDate=" + loginDate + + ", loginIp=" + loginIp + + ", loginStatus=" + loginStatus + + ", openMk=" + openMk + + ", loginMechineName=" + loginMechineName + + ", loginPort=" + loginPort + + ", loginDoor=" + loginDoor + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" new file mode 100644 index 00000000..25db7f66 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 主菜单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMainMenu implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 主菜单编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 主菜单名称 + */ + private String mainMenuName; + + /** + * 主菜单文件路径 + */ + private String mainMenuUrl; + + /** + * 主菜单图标 + */ + private String mainMenuIcon; + + /** + * 主菜单状态 + */ + private String mainMenuStatus; + + /** + * 菜单key + */ + private String mainMenuKey; + + /** + * 排序号 + */ + private Double mainMenuOrder; + + /** + * 产品id + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMainMenuName() { + return mainMenuName; + } + + public void setMainMenuName(String mainMenuName) { + this.mainMenuName = mainMenuName; + } + + public String getMainMenuUrl() { + return mainMenuUrl; + } + + public void setMainMenuUrl(String mainMenuUrl) { + this.mainMenuUrl = mainMenuUrl; + } + + public String getMainMenuIcon() { + return mainMenuIcon; + } + + public void setMainMenuIcon(String mainMenuIcon) { + this.mainMenuIcon = mainMenuIcon; + } + + public String getMainMenuStatus() { + return mainMenuStatus; + } + + public void setMainMenuStatus(String mainMenuStatus) { + this.mainMenuStatus = mainMenuStatus; + } + + public String getMainMenuKey() { + return mainMenuKey; + } + + public void setMainMenuKey(String mainMenuKey) { + this.mainMenuKey = mainMenuKey; + } + + public Double getMainMenuOrder() { + return mainMenuOrder; + } + + public void setMainMenuOrder(Double mainMenuOrder) { + this.mainMenuOrder = mainMenuOrder; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblMainMenu{" + + "id=" + id + + ", mainMenuName=" + mainMenuName + + ", mainMenuUrl=" + mainMenuUrl + + ", mainMenuIcon=" + mainMenuIcon + + ", mainMenuStatus=" + mainMenuStatus + + ", mainMenuKey=" + mainMenuKey + + ", mainMenuOrder=" + mainMenuOrder + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" new file mode 100644 index 00000000..fa25b4c3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" @@ -0,0 +1,110 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 短信充值单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMessageCharge implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 充值单号 + */ + private String chargeNumber; + + /** + * 充值账户 + */ + private String chargeAccount; + + /** + * 充值金额 + */ + private Double chargeMoney; + + /** + * 充值说明 + */ + private String chargeDesc; + + /** + * 充值人 + */ + private String chargePerson; + + /** + * 充值日期 + */ + private LocalDateTime chargeDate; + + + public String getChargeNumber() { + return chargeNumber; + } + + public void setChargeNumber(String chargeNumber) { + this.chargeNumber = chargeNumber; + } + + public String getChargeAccount() { + return chargeAccount; + } + + public void setChargeAccount(String chargeAccount) { + this.chargeAccount = chargeAccount; + } + + public Double getChargeMoney() { + return chargeMoney; + } + + public void setChargeMoney(Double chargeMoney) { + this.chargeMoney = chargeMoney; + } + + public String getChargeDesc() { + return chargeDesc; + } + + public void setChargeDesc(String chargeDesc) { + this.chargeDesc = chargeDesc; + } + + public String getChargePerson() { + return chargePerson; + } + + public void setChargePerson(String chargePerson) { + this.chargePerson = chargePerson; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + @Override + public String toString() { + return "TblMessageCharge{" + + "chargeNumber=" + chargeNumber + + ", chargeAccount=" + chargeAccount + + ", chargeMoney=" + chargeMoney + + ", chargeDesc=" + chargeDesc + + ", chargePerson=" + chargePerson + + ", chargeDate=" + chargeDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" new file mode 100644 index 00000000..1a49e4e4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 短信接受表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMessageReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 记录编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 手机号码 + */ + private String phone; + + /** + * 拓展号码 + */ + private String extendPhone; + + /** + * 短信内容 + */ + private String messageContent; + + /** + * 回复时间 + */ + private LocalDateTime replyDate; + + /** + * 位置序号 + */ + private String positionOrder; + + /** + * 接受时间 + */ + private LocalDateTime receiveDate; + + /** + * 读取标记 + */ + private Integer readTag; + + /** + * 读取时间 + */ + private LocalDateTime readDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone; + } + + public String getExtendPhone() { + return extendPhone; + } + + public void setExtendPhone(String extendPhone) { + this.extendPhone = extendPhone; + } + + public String getMessageContent() { + return messageContent; + } + + public void setMessageContent(String messageContent) { + this.messageContent = messageContent; + } + + public LocalDateTime getReplyDate() { + return replyDate; + } + + public void setReplyDate(LocalDateTime replyDate) { + this.replyDate = replyDate; + } + + public String getPositionOrder() { + return positionOrder; + } + + public void setPositionOrder(String positionOrder) { + this.positionOrder = positionOrder; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public Integer getReadTag() { + return readTag; + } + + public void setReadTag(Integer readTag) { + this.readTag = readTag; + } + + public LocalDateTime getReadDate() { + return readDate; + } + + public void setReadDate(LocalDateTime readDate) { + this.readDate = readDate; + } + + @Override + public String toString() { + return "TblMessageReceive{" + + "id=" + id + + ", phone=" + phone + + ", extendPhone=" + extendPhone + + ", messageContent=" + messageContent + + ", replyDate=" + replyDate + + ", positionOrder=" + positionOrder + + ", receiveDate=" + receiveDate + + ", readTag=" + readTag + + ", readDate=" + readDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" new file mode 100644 index 00000000..151eb2b6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" @@ -0,0 +1,83 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 信息发送 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMessageSend implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 内容 + */ + private String content; + + /** + * 发送人 + */ + private String sendPerson; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getSendPerson() { + return sendPerson; + } + + public void setSendPerson(String sendPerson) { + this.sendPerson = sendPerson; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + @Override + public String toString() { + return "TblMessageSend{" + + "id=" + id + + ", content=" + content + + ", sendPerson=" + sendPerson + + ", sendDate=" + sendDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" new file mode 100644 index 00000000..e388361f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" @@ -0,0 +1,68 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 信息接受 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMsgReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 接收人 + */ + private String receivePerson; + + /** + * 状态 + */ + private String status; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + @Override + public String toString() { + return "TblMsgReceive{" + + "id=" + id + + ", receivePerson=" + receivePerson + + ", status=" + status + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" new file mode 100644 index 00000000..5444a844 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" @@ -0,0 +1,251 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 我的记事本 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMyNote implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 创建人员编码 + */ + private String createPersonId; + + /** + * 标题 + */ + private String title; + + /** + * 类型 + */ + private String type; + + /** + * 地点 + */ + private String place; + + /** + * 内容 + */ + private String content; + + /** + * 是否私人性质 + */ + private Integer isPrivate; + + /** + * 是否重复 + */ + private Integer isRepeat; + + /** + * 重复 + */ + private String repeat; + + /** + * 重复至日结束 + */ + private LocalDateTime repeatStop; + + /** + * 是否提醒 + */ + private Integer isRemain; + + /** + * 提前N天提醒 + */ + private Integer remainDay; + + /** + * 开始时间 + */ + private LocalDateTime startDate; + + /** + * 结束时间 + */ + private LocalDateTime stopDate; + + /** + * 预约人员 + */ + private String orderPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCreatePersonId() { + return createPersonId; + } + + public void setCreatePersonId(String createPersonId) { + this.createPersonId = createPersonId; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getPlace() { + return place; + } + + public void setPlace(String place) { + this.place = place; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public Integer getIsPrivate() { + return isPrivate; + } + + public void setIsPrivate(Integer isPrivate) { + this.isPrivate = isPrivate; + } + + public Integer getIsRepeat() { + return isRepeat; + } + + public void setIsRepeat(Integer isRepeat) { + this.isRepeat = isRepeat; + } + + public String getRepeat() { + return repeat; + } + + public void setRepeat(String repeat) { + this.repeat = repeat; + } + + public LocalDateTime getRepeatStop() { + return repeatStop; + } + + public void setRepeatStop(LocalDateTime repeatStop) { + this.repeatStop = repeatStop; + } + + public Integer getIsRemain() { + return isRemain; + } + + public void setIsRemain(Integer isRemain) { + this.isRemain = isRemain; + } + + public Integer getRemainDay() { + return remainDay; + } + + public void setRemainDay(Integer remainDay) { + this.remainDay = remainDay; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getOrderPerson() { + return orderPerson; + } + + public void setOrderPerson(String orderPerson) { + this.orderPerson = orderPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblMyNote{" + + "id=" + id + + ", createPersonId=" + createPersonId + + ", title=" + title + + ", type=" + type + + ", place=" + place + + ", content=" + content + + ", isPrivate=" + isPrivate + + ", isRepeat=" + isRepeat + + ", repeat=" + repeat + + ", repeatStop=" + repeatStop + + ", isRemain=" + isRemain + + ", remainDay=" + remainDay + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", orderPerson=" + orderPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" new file mode 100644 index 00000000..16849628 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 我的意见 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMyadvice implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 标题 + */ + private String title; + + /** + * 内容 + */ + private String content; + + /** + * 意见箱 + */ + private Integer adviceBox; + + /** + * 状态 + */ + private String status; + + /** + * 附件名称 + */ + private String attachName; + + /** + * 发表人id + */ + private String publisherId; + + /** + * 发表人名称 + */ + private String publisherName; + + /** + * 发表时间 + */ + private LocalDateTime publisherDate; + + /** + * 回复内容 + */ + private String replyContent; + + /** + * 回复人id + */ + private String replyId; + + /** + * 回复人名称 + */ + private String replyName; + + /** + * 回复时间 + */ + private LocalDateTime replyDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public Integer getAdviceBox() { + return adviceBox; + } + + public void setAdviceBox(Integer adviceBox) { + this.adviceBox = adviceBox; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getAttachName() { + return attachName; + } + + public void setAttachName(String attachName) { + this.attachName = attachName; + } + + public String getPublisherId() { + return publisherId; + } + + public void setPublisherId(String publisherId) { + this.publisherId = publisherId; + } + + public String getPublisherName() { + return publisherName; + } + + public void setPublisherName(String publisherName) { + this.publisherName = publisherName; + } + + public LocalDateTime getPublisherDate() { + return publisherDate; + } + + public void setPublisherDate(LocalDateTime publisherDate) { + this.publisherDate = publisherDate; + } + + public String getReplyContent() { + return replyContent; + } + + public void setReplyContent(String replyContent) { + this.replyContent = replyContent; + } + + public String getReplyId() { + return replyId; + } + + public void setReplyId(String replyId) { + this.replyId = replyId; + } + + public String getReplyName() { + return replyName; + } + + public void setReplyName(String replyName) { + this.replyName = replyName; + } + + public LocalDateTime getReplyDate() { + return replyDate; + } + + public void setReplyDate(LocalDateTime replyDate) { + this.replyDate = replyDate; + } + + @Override + public String toString() { + return "TblMyadvice{" + + "id=" + id + + ", title=" + title + + ", content=" + content + + ", adviceBox=" + adviceBox + + ", status=" + status + + ", attachName=" + attachName + + ", publisherId=" + publisherId + + ", publisherName=" + publisherName + + ", publisherDate=" + publisherDate + + ", replyContent=" + replyContent + + ", replyId=" + replyId + + ", replyName=" + replyName + + ", replyDate=" + replyDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" new file mode 100644 index 00000000..b1696b20 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" @@ -0,0 +1,96 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 我的驾驶舱 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMydash implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属驾驶舱id + */ + private Integer dashId; + + /** + * 排序号 + */ + private Long orderId; + + /** + * 用户名 + */ + private String username; + + /** + * 显示条数 + */ + private String showNum; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getDashId() { + return dashId; + } + + public void setDashId(Integer dashId) { + this.dashId = dashId; + } + + public Long getOrderId() { + return orderId; + } + + public void setOrderId(Long orderId) { + this.orderId = orderId; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getShowNum() { + return showNum; + } + + public void setShowNum(String showNum) { + this.showNum = showNum; + } + + @Override + public String toString() { + return "TblMydash{" + + "id=" + id + + ", dashId=" + dashId + + ", orderId=" + orderId + + ", username=" + username + + ", showNum=" + showNum + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" new file mode 100644 index 00000000..dc446f8b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" @@ -0,0 +1,96 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 我的桌面 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMydesk implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属模块 + */ + private String belongModel; + + /** + * 排序号 + */ + private Long orderId; + + /** + * 用户名 + */ + private String username; + + /** + * 显示条数 + */ + private String showNum; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBelongModel() { + return belongModel; + } + + public void setBelongModel(String belongModel) { + this.belongModel = belongModel; + } + + public Long getOrderId() { + return orderId; + } + + public void setOrderId(Long orderId) { + this.orderId = orderId; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getShowNum() { + return showNum; + } + + public void setShowNum(String showNum) { + this.showNum = showNum; + } + + @Override + public String toString() { + return "TblMydesk{" + + "id=" + id + + ", belongModel=" + belongModel + + ", orderId=" + orderId + + ", username=" + username + + ", showNum=" + showNum + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" new file mode 100644 index 00000000..a260a4eb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" @@ -0,0 +1,237 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 我的日程 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMyplan implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 主题 + */ + private String planTheme; + + /** + * 地点 + */ + private String planAddr; + + /** + * 开始时间 + */ + private LocalDateTime startDate; + + /** + * 结束时间 + */ + private LocalDateTime stopDate; + + /** + * 分类 + */ + private String planType; + + /** + * 状态 + */ + private String planStatus; + + /** + * 优先级 + */ + private String planPrior; + + /** + * 备用字段 + */ + private String fieldBak; + + /** + * 日程描述 + */ + private String planDesc; + + /** + * 附件名称 + */ + private String attachName; + + /** + * 附件路径 + */ + private String attachUrl; + + /** + * 所有者 + */ + private String owner; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 日程附件 + */ + private String planAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPlanTheme() { + return planTheme; + } + + public void setPlanTheme(String planTheme) { + this.planTheme = planTheme; + } + + public String getPlanAddr() { + return planAddr; + } + + public void setPlanAddr(String planAddr) { + this.planAddr = planAddr; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getPlanType() { + return planType; + } + + public void setPlanType(String planType) { + this.planType = planType; + } + + public String getPlanStatus() { + return planStatus; + } + + public void setPlanStatus(String planStatus) { + this.planStatus = planStatus; + } + + public String getPlanPrior() { + return planPrior; + } + + public void setPlanPrior(String planPrior) { + this.planPrior = planPrior; + } + + public String getFieldBak() { + return fieldBak; + } + + public void setFieldBak(String fieldBak) { + this.fieldBak = fieldBak; + } + + public String getPlanDesc() { + return planDesc; + } + + public void setPlanDesc(String planDesc) { + this.planDesc = planDesc; + } + + public String getAttachName() { + return attachName; + } + + public void setAttachName(String attachName) { + this.attachName = attachName; + } + + public String getAttachUrl() { + return attachUrl; + } + + public void setAttachUrl(String attachUrl) { + this.attachUrl = attachUrl; + } + + public String getOwner() { + return owner; + } + + public void setOwner(String owner) { + this.owner = owner; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getPlanAttach() { + return planAttach; + } + + public void setPlanAttach(String planAttach) { + this.planAttach = planAttach; + } + + @Override + public String toString() { + return "TblMyplan{" + + "id=" + id + + ", planTheme=" + planTheme + + ", planAddr=" + planAddr + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", planType=" + planType + + ", planStatus=" + planStatus + + ", planPrior=" + planPrior + + ", fieldBak=" + fieldBak + + ", planDesc=" + planDesc + + ", attachName=" + attachName + + ", attachUrl=" + attachUrl + + ", owner=" + owner + + ", createDate=" + createDate + + ", planAttach=" + planAttach + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" new file mode 100644 index 00000000..458b823f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" @@ -0,0 +1,222 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 个人设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMyset implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 用户编码 + */ + private String username; + + /** + * 是否需要提醒 + */ + private String idRemain; + + /** + * 提醒间隔时间 + */ + private String remainInterval; + + /** + * 弹出提醒窗口 + */ + private String remainWindowOpen; + + /** + * 消息提醒 + */ + private String messageRemain; + + /** + * 默认主页面 + */ + private String defaultMain; + + /** + * 邮箱全称 + */ + private String emailAll; + + /** + * smtp地址 + */ + private String smtpAddr; + + /** + * 登录用户 + */ + private String loginUser; + + /** + * 登录密码 + */ + private String loginPwd; + + /** + * 邮件端口 + */ + private String mailPort; + + /** + * 发送人名称 + */ + private String sendPerson; + + /** + * 分页行数 + */ + private Integer pageCount; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getIdRemain() { + return idRemain; + } + + public void setIdRemain(String idRemain) { + this.idRemain = idRemain; + } + + public String getRemainInterval() { + return remainInterval; + } + + public void setRemainInterval(String remainInterval) { + this.remainInterval = remainInterval; + } + + public String getRemainWindowOpen() { + return remainWindowOpen; + } + + public void setRemainWindowOpen(String remainWindowOpen) { + this.remainWindowOpen = remainWindowOpen; + } + + public String getMessageRemain() { + return messageRemain; + } + + public void setMessageRemain(String messageRemain) { + this.messageRemain = messageRemain; + } + + public String getDefaultMain() { + return defaultMain; + } + + public void setDefaultMain(String defaultMain) { + this.defaultMain = defaultMain; + } + + public String getEmailAll() { + return emailAll; + } + + public void setEmailAll(String emailAll) { + this.emailAll = emailAll; + } + + public String getSmtpAddr() { + return smtpAddr; + } + + public void setSmtpAddr(String smtpAddr) { + this.smtpAddr = smtpAddr; + } + + public String getLoginUser() { + return loginUser; + } + + public void setLoginUser(String loginUser) { + this.loginUser = loginUser; + } + + public String getLoginPwd() { + return loginPwd; + } + + public void setLoginPwd(String loginPwd) { + this.loginPwd = loginPwd; + } + + public String getMailPort() { + return mailPort; + } + + public void setMailPort(String mailPort) { + this.mailPort = mailPort; + } + + public String getSendPerson() { + return sendPerson; + } + + public void setSendPerson(String sendPerson) { + this.sendPerson = sendPerson; + } + + public Integer getPageCount() { + return pageCount; + } + + public void setPageCount(Integer pageCount) { + this.pageCount = pageCount; + } + + @Override + public String toString() { + return "TblMyset{" + + "id=" + id + + ", username=" + username + + ", idRemain=" + idRemain + + ", remainInterval=" + remainInterval + + ", remainWindowOpen=" + remainWindowOpen + + ", messageRemain=" + messageRemain + + ", defaultMain=" + defaultMain + + ", emailAll=" + emailAll + + ", smtpAddr=" + smtpAddr + + ", loginUser=" + loginUser + + ", loginPwd=" + loginPwd + + ", mailPort=" + mailPort + + ", sendPerson=" + sendPerson + + ", pageCount=" + pageCount + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" new file mode 100644 index 00000000..a95c03cc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 网络硬盘_文件夹 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblNetdiskDir implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 文件夹名称 + */ + private String name; + + /** + * 上级文件夹 + */ + private Integer parentDir; + + /** + * 是否共享 + */ + private String isShare; + + /** + * 创建用户编码 + */ + private String userId; + + /** + * 创建日期 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Integer getParentDir() { + return parentDir; + } + + public void setParentDir(Integer parentDir) { + this.parentDir = parentDir; + } + + public String getIsShare() { + return isShare; + } + + public void setIsShare(String isShare) { + this.isShare = isShare; + } + + public String getUserId() { + return userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblNetdiskDir{" + + "id=" + id + + ", name=" + name + + ", parentDir=" + parentDir + + ", isShare=" + isShare + + ", userId=" + userId + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" new file mode 100644 index 00000000..97932db2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 网络硬盘路径 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblNetdiskUrl implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 文件夹id + */ + private Integer dirId; + + /** + * 文件原名称 + */ + private String fileName; + + /** + * 新名称 + */ + private String newName; + + /** + * 文件类型 + */ + private String fileType; + + /** + * 文档大小 + */ + private Integer fileSize; + + /** + * 上传时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getDirId() { + return dirId; + } + + public void setDirId(Integer dirId) { + this.dirId = dirId; + } + + public String getFileName() { + return fileName; + } + + public void setFileName(String fileName) { + this.fileName = fileName; + } + + public String getNewName() { + return newName; + } + + public void setNewName(String newName) { + this.newName = newName; + } + + public String getFileType() { + return fileType; + } + + public void setFileType(String fileType) { + this.fileType = fileType; + } + + public Integer getFileSize() { + return fileSize; + } + + public void setFileSize(Integer fileSize) { + this.fileSize = fileSize; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblNetdiskUrl{" + + "id=" + id + + ", dirId=" + dirId + + ", fileName=" + fileName + + ", newName=" + newName + + ", fileType=" + fileType + + ", fileSize=" + fileSize + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" new file mode 100644 index 00000000..e96f7a75 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 职位档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblPositionRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 职位名称 + */ + private String positionName; + + /** + * 职位描述 + */ + private String positionDesc; + + /** + * 岗位职责 + */ + private String positionDuty; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPositionName() { + return positionName; + } + + public void setPositionName(String positionName) { + this.positionName = positionName; + } + + public String getPositionDesc() { + return positionDesc; + } + + public void setPositionDesc(String positionDesc) { + this.positionDesc = positionDesc; + } + + public String getPositionDuty() { + return positionDuty; + } + + public void setPositionDuty(String positionDuty) { + this.positionDuty = positionDuty; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblPositionRecord{" + + "id=" + id + + ", positionName=" + positionName + + ", positionDesc=" + positionDesc + + ", positionDuty=" + positionDuty + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" new file mode 100644 index 00000000..820ad3d1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 打印纸张宽度设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblPrintPaper implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String paperName; + + /** + * 值 + */ + private String paperValue; + + /** + * 状态 + */ + private Integer paperStatus; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPaperName() { + return paperName; + } + + public void setPaperName(String paperName) { + this.paperName = paperName; + } + + public String getPaperValue() { + return paperValue; + } + + public void setPaperValue(String paperValue) { + this.paperValue = paperValue; + } + + public Integer getPaperStatus() { + return paperStatus; + } + + public void setPaperStatus(Integer paperStatus) { + this.paperStatus = paperStatus; + } + + @Override + public String toString() { + return "TblPrintPaper{" + + "id=" + id + + ", paperName=" + paperName + + ", paperValue=" + paperValue + + ", paperStatus=" + paperStatus + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" new file mode 100644 index 00000000..c08cfdbc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 打印参数 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblPrintParam implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 打印参数编号 + */ + @TableId(value = "print_id", type = IdType.AUTO) + private String printId; + + /** + * 打印参数名称 + */ + private String printName; + + /** + * 打印参数值 + */ + private String printValue; + + /** + * 打印参数描述 + */ + private String printDesc; + + + public String getPrintId() { + return printId; + } + + public void setPrintId(String printId) { + this.printId = printId; + } + + public String getPrintName() { + return printName; + } + + public void setPrintName(String printName) { + this.printName = printName; + } + + public String getPrintValue() { + return printValue; + } + + public void setPrintValue(String printValue) { + this.printValue = printValue; + } + + public String getPrintDesc() { + return printDesc; + } + + public void setPrintDesc(String printDesc) { + this.printDesc = printDesc; + } + + @Override + public String toString() { + return "TblPrintParam{" + + "printId=" + printId + + ", printName=" + printName + + ", printValue=" + printValue + + ", printDesc=" + printDesc + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" new file mode 100644 index 00000000..8c9c0f65 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 快捷方式 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblQuick implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 快捷方式名称 + */ + private String quickName; + + /** + * 链接参数 + */ + private String urlParam; + + /** + * 程序路径 + */ + private String codePath; + + /** + * 图标名称 + */ + private String iconName; + + /** + * 机器名 + */ + private String mechineName; + + /** + * 公共类型 + */ + private String publicType; + + /** + * 类别 + */ + private String type; + + /** + * 创建人 + */ + private String inputRecordPerson; + + /** + * 创建时间 + */ + private LocalDateTime inputRecordDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getQuickName() { + return quickName; + } + + public void setQuickName(String quickName) { + this.quickName = quickName; + } + + public String getUrlParam() { + return urlParam; + } + + public void setUrlParam(String urlParam) { + this.urlParam = urlParam; + } + + public String getCodePath() { + return codePath; + } + + public void setCodePath(String codePath) { + this.codePath = codePath; + } + + public String getIconName() { + return iconName; + } + + public void setIconName(String iconName) { + this.iconName = iconName; + } + + public String getMechineName() { + return mechineName; + } + + public void setMechineName(String mechineName) { + this.mechineName = mechineName; + } + + public String getPublicType() { + return publicType; + } + + public void setPublicType(String publicType) { + this.publicType = publicType; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getInputRecordPerson() { + return inputRecordPerson; + } + + public void setInputRecordPerson(String inputRecordPerson) { + this.inputRecordPerson = inputRecordPerson; + } + + public LocalDateTime getInputRecordDate() { + return inputRecordDate; + } + + public void setInputRecordDate(LocalDateTime inputRecordDate) { + this.inputRecordDate = inputRecordDate; + } + + @Override + public String toString() { + return "TblQuick{" + + "id=" + id + + ", quickName=" + quickName + + ", urlParam=" + urlParam + + ", codePath=" + codePath + + ", iconName=" + iconName + + ", mechineName=" + mechineName + + ", publicType=" + publicType + + ", type=" + type + + ", inputRecordPerson=" + inputRecordPerson + + ", inputRecordDate=" + inputRecordDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" new file mode 100644 index 00000000..85154b9a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 角色档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblRole implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 角色编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 角色名称 + */ + private String roleName; + + /** + * 角色类型 + */ + private String roleType; + + /** + * 操作权限 + */ + private String rolePrivileges; + + /** + * 角色备注 + */ + private String roleRemark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRoleName() { + return roleName; + } + + public void setRoleName(String roleName) { + this.roleName = roleName; + } + + public String getRoleType() { + return roleType; + } + + public void setRoleType(String roleType) { + this.roleType = roleType; + } + + public String getRolePrivileges() { + return rolePrivileges; + } + + public void setRolePrivileges(String rolePrivileges) { + this.rolePrivileges = rolePrivileges; + } + + public String getRoleRemark() { + return roleRemark; + } + + public void setRoleRemark(String roleRemark) { + this.roleRemark = roleRemark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblRole{" + + "id=" + id + + ", roleName=" + roleName + + ", roleType=" + roleType + + ", rolePrivileges=" + rolePrivileges + + ", roleRemark=" + roleRemark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" new file mode 100644 index 00000000..149454d1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" @@ -0,0 +1,53 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 角色菜单权限 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblRoleMenuPrivi implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 角色id + */ + private Integer roleId; + + /** + * 模块id + */ + private Integer modelId; + + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + public Integer getModelId() { + return modelId; + } + + public void setModelId(Integer modelId) { + this.modelId = modelId; + } + + @Override + public String toString() { + return "TblRoleMenuPrivi{" + + "roleId=" + roleId + + ", modelId=" + modelId + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" new file mode 100644 index 00000000..b3d38343 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" @@ -0,0 +1,321 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 规章制度 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblRule implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动增长id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 标题 + */ + private String title; + + /** + * 内容 + */ + private String content; + + /** + * 适用范围 + */ + private String useRange; + + /** + * 分类 + */ + private Long category; + + /** + * 文号 + */ + private String articleNumber; + + /** + * 制度等级 + */ + private String level; + + /** + * 保密等级 + */ + private String secretLevel; + + /** + * 主题词 + */ + private String titleWord; + + /** + * 发文单位 + */ + private String publishCompany; + + /** + * 附件名称 + */ + private String attachName; + + /** + * 附件路径 + */ + private String attachPath; + + /** + * 状态 + */ + private String status; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 审批时间 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 允许查看的用户编码 + */ + private String allowUserCode; + + /** + * 允许查看的用户名称 + */ + private String allowUserName; + + /** + * 规章制度附件 + */ + private String ruleAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getUseRange() { + return useRange; + } + + public void setUseRange(String useRange) { + this.useRange = useRange; + } + + public Long getCategory() { + return category; + } + + public void setCategory(Long category) { + this.category = category; + } + + public String getArticleNumber() { + return articleNumber; + } + + public void setArticleNumber(String articleNumber) { + this.articleNumber = articleNumber; + } + + public String getLevel() { + return level; + } + + public void setLevel(String level) { + this.level = level; + } + + public String getSecretLevel() { + return secretLevel; + } + + public void setSecretLevel(String secretLevel) { + this.secretLevel = secretLevel; + } + + public String getTitleWord() { + return titleWord; + } + + public void setTitleWord(String titleWord) { + this.titleWord = titleWord; + } + + public String getPublishCompany() { + return publishCompany; + } + + public void setPublishCompany(String publishCompany) { + this.publishCompany = publishCompany; + } + + public String getAttachName() { + return attachName; + } + + public void setAttachName(String attachName) { + this.attachName = attachName; + } + + public String getAttachPath() { + return attachPath; + } + + public void setAttachPath(String attachPath) { + this.attachPath = attachPath; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getAllowUserCode() { + return allowUserCode; + } + + public void setAllowUserCode(String allowUserCode) { + this.allowUserCode = allowUserCode; + } + + public String getAllowUserName() { + return allowUserName; + } + + public void setAllowUserName(String allowUserName) { + this.allowUserName = allowUserName; + } + + public String getRuleAttach() { + return ruleAttach; + } + + public void setRuleAttach(String ruleAttach) { + this.ruleAttach = ruleAttach; + } + + @Override + public String toString() { + return "TblRule{" + + "id=" + id + + ", title=" + title + + ", content=" + content + + ", useRange=" + useRange + + ", category=" + category + + ", articleNumber=" + articleNumber + + ", level=" + level + + ", secretLevel=" + secretLevel + + ", titleWord=" + titleWord + + ", publishCompany=" + publishCompany + + ", attachName=" + attachName + + ", attachPath=" + attachPath + + ", status=" + status + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", checkPerson=" + checkPerson + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", allowUserCode=" + allowUserCode + + ", allowUserName=" + allowUserName + + ", ruleAttach=" + ruleAttach + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" new file mode 100644 index 00000000..3f42d89e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 发送日志表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblSendLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 记录编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 发送者名称 + */ + private String sendName; + + /** + * 请求时间 + */ + private LocalDateTime requestDate; + + /** + * 定时标志 + */ + private Integer sendTag; + + /** + * 定时时间 + */ + private LocalDateTime timingDate; + + /** + * 短信类型 + */ + private Integer messageType; + + /** + * 拓展号码 + */ + private String extendPhone; + + /** + * 接受手机号码 + */ + private String receivePhone; + + /** + * 短信内容 + */ + private String messageContent; + + /** + * 是否发送 + */ + private Integer isSend; + + /** + * 接收人标识 + */ + private String receiveIdentify; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getSendName() { + return sendName; + } + + public void setSendName(String sendName) { + this.sendName = sendName; + } + + public LocalDateTime getRequestDate() { + return requestDate; + } + + public void setRequestDate(LocalDateTime requestDate) { + this.requestDate = requestDate; + } + + public Integer getSendTag() { + return sendTag; + } + + public void setSendTag(Integer sendTag) { + this.sendTag = sendTag; + } + + public LocalDateTime getTimingDate() { + return timingDate; + } + + public void setTimingDate(LocalDateTime timingDate) { + this.timingDate = timingDate; + } + + public Integer getMessageType() { + return messageType; + } + + public void setMessageType(Integer messageType) { + this.messageType = messageType; + } + + public String getExtendPhone() { + return extendPhone; + } + + public void setExtendPhone(String extendPhone) { + this.extendPhone = extendPhone; + } + + public String getReceivePhone() { + return receivePhone; + } + + public void setReceivePhone(String receivePhone) { + this.receivePhone = receivePhone; + } + + public String getMessageContent() { + return messageContent; + } + + public void setMessageContent(String messageContent) { + this.messageContent = messageContent; + } + + public Integer getIsSend() { + return isSend; + } + + public void setIsSend(Integer isSend) { + this.isSend = isSend; + } + + public String getReceiveIdentify() { + return receiveIdentify; + } + + public void setReceiveIdentify(String receiveIdentify) { + this.receiveIdentify = receiveIdentify; + } + + @Override + public String toString() { + return "TblSendLog{" + + "id=" + id + + ", sendName=" + sendName + + ", requestDate=" + requestDate + + ", sendTag=" + sendTag + + ", timingDate=" + timingDate + + ", messageType=" + messageType + + ", extendPhone=" + extendPhone + + ", receivePhone=" + receivePhone + + ", messageContent=" + messageContent + + ", isSend=" + isSend + + ", receiveIdentify=" + receiveIdentify + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" new file mode 100644 index 00000000..d7df3ba7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 快捷方式图标 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblShortcutIcon implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String iconName; + + /** + * 图标路径 + */ + private String iconPath; + + /** + * 状态 + */ + private String status; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getIconName() { + return iconName; + } + + public void setIconName(String iconName) { + this.iconName = iconName; + } + + public String getIconPath() { + return iconPath; + } + + public void setIconPath(String iconPath) { + this.iconPath = iconPath; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + @Override + public String toString() { + return "TblShortcutIcon{" + + "id=" + id + + ", iconName=" + iconName + + ", iconPath=" + iconPath + + ", status=" + status + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" new file mode 100644 index 00000000..1164245c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" @@ -0,0 +1,68 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 到期日期 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblStopDate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String name; + + /** + * 天数 + */ + private String days; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDays() { + return days; + } + + public void setDays(String days) { + this.days = days; + } + + @Override + public String toString() { + return "TblStopDate{" + + "id=" + id + + ", name=" + name + + ", days=" + days + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" new file mode 100644 index 00000000..fe86f78e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" @@ -0,0 +1,95 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 系统图标 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblSysDiagrams implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 图标名称 + */ + private String diagramName; + + /** + * 归属人 + */ + private Integer belongPerson; + + /** + * 图标编号 + */ + private Integer diagramId; + + /** + * 图标版本 + */ + private Integer diagramVersion; + + /** + * 图标定义 + */ + private String diagramDefinition; + + + public String getDiagramName() { + return diagramName; + } + + public void setDiagramName(String diagramName) { + this.diagramName = diagramName; + } + + public Integer getBelongPerson() { + return belongPerson; + } + + public void setBelongPerson(Integer belongPerson) { + this.belongPerson = belongPerson; + } + + public Integer getDiagramId() { + return diagramId; + } + + public void setDiagramId(Integer diagramId) { + this.diagramId = diagramId; + } + + public Integer getDiagramVersion() { + return diagramVersion; + } + + public void setDiagramVersion(Integer diagramVersion) { + this.diagramVersion = diagramVersion; + } + + public String getDiagramDefinition() { + return diagramDefinition; + } + + public void setDiagramDefinition(String diagramDefinition) { + this.diagramDefinition = diagramDefinition; + } + + @Override + public String toString() { + return "TblSysDiagrams{" + + "diagramName=" + diagramName + + ", belongPerson=" + belongPerson + + ", diagramId=" + diagramId + + ", diagramVersion=" + diagramVersion + + ", diagramDefinition=" + diagramDefinition + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" new file mode 100644 index 00000000..85674420 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 系统日志 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblSystemLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 日志内容 + */ + private String logContent; + + /** + * 模块编码 + */ + private String modelId; + + /** + * ip地址 + */ + private String ipAddr; + + /** + * 部门权限 + */ + private String deptPrivileges; + + /** + * 操作人编码 + */ + private String operateId; + + /** + * 操作人名称 + */ + private String operateName; + + /** + * 部门编码 + */ + private String deptId; + + /** + * 部门名称 + */ + private String deptName; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getLogContent() { + return logContent; + } + + public void setLogContent(String logContent) { + this.logContent = logContent; + } + + public String getModelId() { + return modelId; + } + + public void setModelId(String modelId) { + this.modelId = modelId; + } + + public String getIpAddr() { + return ipAddr; + } + + public void setIpAddr(String ipAddr) { + this.ipAddr = ipAddr; + } + + public String getDeptPrivileges() { + return deptPrivileges; + } + + public void setDeptPrivileges(String deptPrivileges) { + this.deptPrivileges = deptPrivileges; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperateName() { + return operateName; + } + + public void setOperateName(String operateName) { + this.operateName = operateName; + } + + public String getDeptId() { + return deptId; + } + + public void setDeptId(String deptId) { + this.deptId = deptId; + } + + public String getDeptName() { + return deptName; + } + + public void setDeptName(String deptName) { + this.deptName = deptName; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "TblSystemLog{" + + "id=" + id + + ", logContent=" + logContent + + ", modelId=" + modelId + + ", ipAddr=" + ipAddr + + ", deptPrivileges=" + deptPrivileges + + ", operateId=" + operateId + + ", operateName=" + operateName + + ", deptId=" + deptId + + ", deptName=" + deptName + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" new file mode 100644 index 00000000..0cdc45d0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 待办事项 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblTodo implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String name; + + /** + * 权限 + */ + private String privileges; + + /** + * 状态 + */ + private String status; + + /** + * 链接地址 + */ + private String url; + + /** + * 显示行数 + */ + private Integer showNumber; + + /** + * 天数 + */ + private Integer days; + + /** + * 所属产品 + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getPrivileges() { + return privileges; + } + + public void setPrivileges(String privileges) { + this.privileges = privileges; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public Integer getShowNumber() { + return showNumber; + } + + public void setShowNumber(Integer showNumber) { + this.showNumber = showNumber; + } + + public Integer getDays() { + return days; + } + + public void setDays(Integer days) { + this.days = days; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblTodo{" + + "id=" + id + + ", name=" + name + + ", privileges=" + privileges + + ", status=" + status + + ", url=" + url + + ", showNumber=" + showNumber + + ", days=" + days + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" new file mode 100644 index 00000000..589ee04a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 类型库 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblType implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 类型编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 类型名称 + */ + private String typeName; + + /** + * 状态 + */ + private String typeStatus; + + /** + * 所属产品 + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTypeName() { + return typeName; + } + + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + public String getTypeStatus() { + return typeStatus; + } + + public void setTypeStatus(String typeStatus) { + this.typeStatus = typeStatus; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblType{" + + "id=" + id + + ", typeName=" + typeName + + ", typeStatus=" + typeStatus + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" new file mode 100644 index 00000000..0c5b3d4b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" @@ -0,0 +1,53 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 用户部门表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserDept implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户编号 + */ + private Integer userId; + + /** + * 部门编号 + */ + private Integer deptId; + + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public Integer getDeptId() { + return deptId; + } + + public void setDeptId(Integer deptId) { + this.deptId = deptId; + } + + @Override + public String toString() { + return "TblUserDept{" + + "userId=" + userId + + ", deptId=" + deptId + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" new file mode 100644 index 00000000..b3ab8b8f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 用户分组 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserGroup implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 群组名称 + */ + private String groupName; + + /** + * 群组类型 + */ + private String groupType; + + /** + * 说明 + */ + private String groupDesc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getGroupName() { + return groupName; + } + + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public String getGroupType() { + return groupType; + } + + public void setGroupType(String groupType) { + this.groupType = groupType; + } + + public String getGroupDesc() { + return groupDesc; + } + + public void setGroupDesc(String groupDesc) { + this.groupDesc = groupDesc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "TblUserGroup{" + + "id=" + id + + ", groupName=" + groupName + + ", groupType=" + groupType + + ", groupDesc=" + groupDesc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" new file mode 100644 index 00000000..60eb7902 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" @@ -0,0 +1,401 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 用户档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 用户姓名 + */ + private String userName; + + /** + * 用户密码 + */ + private String userPassword; + + /** + * 用户类型 + */ + private String userType; + + /** + * 岗位角色 + */ + private TblRole tblRole; + + /** + * 用户性别 + */ + private String userGender; + + /** + * 所属部门 + */ + private TblDept tblDept; + + /** + * 职位 + */ + private Integer userJob; + + /** + * 用户状态 + */ + private String userStatus; + + /** + * 办公电话 + */ + private String officePhone; + + /** + * 内线电话 + */ + private String innerPhone; + + /** + * 移动电话 + */ + private String movePhone; + + /** + * 电子邮箱 + */ + private String email; + + /** + * 允许发送手机短信 + */ + private String isSendMsg; + + /** + * 有效开始日期 + */ + private LocalDateTime startDate; + + /** + * 有效结束日期 + */ + private LocalDateTime stopDate; + + /** + * 出生日期 + */ + private LocalDateTime birthday; + + /** + * 登陆ip规则 + */ + private String ipRule; + + /** + * 入职日期 + */ + private LocalDateTime userHiredate; + + /** + * 允许发送微信 + */ + private String isSendWchat; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private TblCompany tblCompany; + + /** + * 是否部门管理者 + */ + private String isDeptAdmin; + + /** + * 最后登陆时间 + */ + private LocalDateTime lastLoginDate; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getUserPassword() { + return userPassword; + } + + public void setUserPassword(String userPassword) { + this.userPassword = userPassword; + } + + public String getUserType() { + return userType; + } + + public void setUserType(String userType) { + this.userType = userType; + } + + public String getUserGender() { + return userGender; + } + + public void setUserGender(String userGender) { + this.userGender = userGender; + } + + public Integer getUserJob() { + return userJob; + } + + public void setUserJob(Integer userJob) { + this.userJob = userJob; + } + + public String getUserStatus() { + return userStatus; + } + + public void setUserStatus(String userStatus) { + this.userStatus = userStatus; + } + + public String getOfficePhone() { + return officePhone; + } + + public void setOfficePhone(String officePhone) { + this.officePhone = officePhone; + } + + public String getInnerPhone() { + return innerPhone; + } + + public void setInnerPhone(String innerPhone) { + this.innerPhone = innerPhone; + } + + public String getMovePhone() { + return movePhone; + } + + public void setMovePhone(String movePhone) { + this.movePhone = movePhone; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getIsSendMsg() { + return isSendMsg; + } + + public void setIsSendMsg(String isSendMsg) { + this.isSendMsg = isSendMsg; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public LocalDateTime getBirthday() { + return birthday; + } + + public void setBirthday(LocalDateTime birthday) { + this.birthday = birthday; + } + + public String getIpRule() { + return ipRule; + } + + public void setIpRule(String ipRule) { + this.ipRule = ipRule; + } + + public LocalDateTime getUserHiredate() { + return userHiredate; + } + + public void setUserHiredate(LocalDateTime userHiredate) { + this.userHiredate = userHiredate; + } + + public String getIsSendWchat() { + return isSendWchat; + } + + public void setIsSendWchat(String isSendWchat) { + this.isSendWchat = isSendWchat; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public TblRole getTblRole() { + return tblRole; + } + + public void setTblRole(TblRole tblRole) { + this.tblRole = tblRole; + } + + public TblDept getTblDept() { + return tblDept; + } + + public void setTblDept(TblDept tblDept) { + this.tblDept = tblDept; + } + + public TblCompany getTblCompany() { + return tblCompany; + } + + public void setTblCompany(TblCompany tblCompany) { + this.tblCompany = tblCompany; + } + + public String getIsDeptAdmin() { + return isDeptAdmin; + } + + public void setIsDeptAdmin(String isDeptAdmin) { + this.isDeptAdmin = isDeptAdmin; + } + + public LocalDateTime getLastLoginDate() { + return lastLoginDate; + } + + public void setLastLoginDate(LocalDateTime lastLoginDate) { + this.lastLoginDate = lastLoginDate; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + private String token; + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token; + } + + @Override + public String toString() { + return "TblUserRecord{" + + "id=" + id + + ", userName='" + userName + '\'' + + ", userPassword='" + userPassword + '\'' + + ", userType='" + userType + '\'' + + ", tblRole=" + tblRole + + ", userGender='" + userGender + '\'' + + ", tblDept=" + tblDept + + ", userJob=" + userJob + + ", userStatus='" + userStatus + '\'' + + ", officePhone='" + officePhone + '\'' + + ", innerPhone='" + innerPhone + '\'' + + ", movePhone='" + movePhone + '\'' + + ", email='" + email + '\'' + + ", isSendMsg='" + isSendMsg + '\'' + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", birthday=" + birthday + + ", ipRule='" + ipRule + '\'' + + ", userHiredate=" + userHiredate + + ", isSendWchat='" + isSendWchat + '\'' + + ", remark='" + remark + '\'' + + ", tblCompany=" + tblCompany + + ", isDeptAdmin='" + isDeptAdmin + '\'' + + ", lastLoginDate=" + lastLoginDate + + ", createPerson='" + createPerson + '\'' + + ", createDate=" + createDate + + '}'; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" new file mode 100644 index 00000000..d20516b2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" @@ -0,0 +1,53 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 用户角色表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserRole implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户编号 + */ + private String userId; + + /** + * 角色编号 + */ + private Integer roleId; + + + public String getUserId() { + return userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + @Override + public String toString() { + return "TblUserRole{" + + "userId=" + userId + + ", roleId=" + roleId + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" new file mode 100644 index 00000000..2728b2e4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" @@ -0,0 +1,53 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 用户子公司表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserSubCompany implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户编号 + */ + private Integer userId; + + /** + * 子公司编号 + */ + private Integer companyId; + + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public Integer getCompanyId() { + return companyId; + } + + public void setCompanyId(Integer companyId) { + this.companyId = companyId; + } + + @Override + public String toString() { + return "TblUserSubCompany{" + + "userId=" + userId + + ", companyId=" + companyId + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" new file mode 100644 index 00000000..4b6632c0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 视频点播 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVod implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 视频编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 视频名称 + */ + private String videoName; + + /** + * 来源 + */ + private String videoSource; + + /** + * 视频类型 + */ + private Long videlType; + + /** + * 节目名称 + */ + private String programName; + + /** + * 节目路径 + */ + private String programUrl; + + /** + * 简介 + */ + private String simpleIntro; + + /** + * 是否在首页显示 + */ + private String isFirst; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getVideoName() { + return videoName; + } + + public void setVideoName(String videoName) { + this.videoName = videoName; + } + + public String getVideoSource() { + return videoSource; + } + + public void setVideoSource(String videoSource) { + this.videoSource = videoSource; + } + + public Long getVidelType() { + return videlType; + } + + public void setVidelType(Long videlType) { + this.videlType = videlType; + } + + public String getProgramName() { + return programName; + } + + public void setProgramName(String programName) { + this.programName = programName; + } + + public String getProgramUrl() { + return programUrl; + } + + public void setProgramUrl(String programUrl) { + this.programUrl = programUrl; + } + + public String getSimpleIntro() { + return simpleIntro; + } + + public void setSimpleIntro(String simpleIntro) { + this.simpleIntro = simpleIntro; + } + + public String getIsFirst() { + return isFirst; + } + + public void setIsFirst(String isFirst) { + this.isFirst = isFirst; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblVod{" + + "id=" + id + + ", videoName=" + videoName + + ", videoSource=" + videoSource + + ", videlType=" + videlType + + ", programName=" + programName + + ", programUrl=" + programUrl + + ", simpleIntro=" + simpleIntro + + ", isFirst=" + isFirst + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" new file mode 100644 index 00000000..f483e2b9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" @@ -0,0 +1,97 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 投票数据表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVoteData implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 投票编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 投票项目编号 + */ + private Integer voteProjectId; + + /** + * 投票用户编码 + */ + private String voteUserId; + + /** + * 投票用户名称 + */ + private String voteUserName; + + /** + * 投票时间 + */ + private LocalDateTime voteDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getVoteProjectId() { + return voteProjectId; + } + + public void setVoteProjectId(Integer voteProjectId) { + this.voteProjectId = voteProjectId; + } + + public String getVoteUserId() { + return voteUserId; + } + + public void setVoteUserId(String voteUserId) { + this.voteUserId = voteUserId; + } + + public String getVoteUserName() { + return voteUserName; + } + + public void setVoteUserName(String voteUserName) { + this.voteUserName = voteUserName; + } + + public LocalDateTime getVoteDate() { + return voteDate; + } + + public void setVoteDate(LocalDateTime voteDate) { + this.voteDate = voteDate; + } + + @Override + public String toString() { + return "TblVoteData{" + + "id=" + id + + ", voteProjectId=" + voteProjectId + + ", voteUserId=" + voteUserId + + ", voteUserName=" + voteUserName + + ", voteDate=" + voteDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" new file mode 100644 index 00000000..d9e2f382 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 投票数据明细表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVoteDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 投票编号 + */ + private Integer voteId; + + /** + * 答案编号 + */ + private Integer answerId; + + /** + * 答案 + */ + private String result; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getVoteId() { + return voteId; + } + + public void setVoteId(Integer voteId) { + this.voteId = voteId; + } + + public Integer getAnswerId() { + return answerId; + } + + public void setAnswerId(Integer answerId) { + this.answerId = answerId; + } + + public String getResult() { + return result; + } + + public void setResult(String result) { + this.result = result; + } + + @Override + public String toString() { + return "TblVoteDetail{" + + "id=" + id + + ", voteId=" + voteId + + ", answerId=" + answerId + + ", result=" + result + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" new file mode 100644 index 00000000..8217a55d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 投票项目表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVoteProject1 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 项目编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 项目名称 + */ + private String projectName; + + /** + * 项目类型 + */ + private String projectType; + + /** + * 项目标志 + */ + private String projectTag; + + /** + * 项目说明 + */ + private String projectDesc; + + /** + * 建档人 + */ + private String inputRecordPerson; + + /** + * 建档时间 + */ + private LocalDateTime inputRecordDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProjectName() { + return projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getProjectType() { + return projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getProjectTag() { + return projectTag; + } + + public void setProjectTag(String projectTag) { + this.projectTag = projectTag; + } + + public String getProjectDesc() { + return projectDesc; + } + + public void setProjectDesc(String projectDesc) { + this.projectDesc = projectDesc; + } + + public String getInputRecordPerson() { + return inputRecordPerson; + } + + public void setInputRecordPerson(String inputRecordPerson) { + this.inputRecordPerson = inputRecordPerson; + } + + public LocalDateTime getInputRecordDate() { + return inputRecordDate; + } + + public void setInputRecordDate(LocalDateTime inputRecordDate) { + this.inputRecordDate = inputRecordDate; + } + + @Override + public String toString() { + return "TblVoteProject1{" + + "id=" + id + + ", projectName=" + projectName + + ", projectType=" + projectType + + ", projectTag=" + projectTag + + ", projectDesc=" + projectDesc + + ", inputRecordPerson=" + inputRecordPerson + + ", inputRecordDate=" + inputRecordDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" new file mode 100644 index 00000000..575b2534 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" @@ -0,0 +1,97 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 投票题目表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVoteSubject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 题目编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属项目编号 + */ + private Integer projectId; + + /** + * 题目名称 + */ + private String subjectName; + + /** + * 建档人 + */ + private String inputRecordPerson; + + /** + * 建档时间 + */ + private LocalDateTime inputRecordDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getProjectId() { + return projectId; + } + + public void setProjectId(Integer projectId) { + this.projectId = projectId; + } + + public String getSubjectName() { + return subjectName; + } + + public void setSubjectName(String subjectName) { + this.subjectName = subjectName; + } + + public String getInputRecordPerson() { + return inputRecordPerson; + } + + public void setInputRecordPerson(String inputRecordPerson) { + this.inputRecordPerson = inputRecordPerson; + } + + public LocalDateTime getInputRecordDate() { + return inputRecordDate; + } + + public void setInputRecordDate(LocalDateTime inputRecordDate) { + this.inputRecordDate = inputRecordDate; + } + + @Override + public String toString() { + return "TblVoteSubject{" + + "id=" + id + + ", projectId=" + projectId + + ", subjectName=" + subjectName + + ", inputRecordPerson=" + inputRecordPerson + + ", inputRecordDate=" + inputRecordDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" new file mode 100644 index 00000000..f2224f62 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" @@ -0,0 +1,83 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 工作日期 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblWorkDate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 日期 + */ + private LocalDateTime dt; + + /** + * 星期 + */ + private Integer weekday; + + /** + * 是否上班 + */ + private Integer isWork; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getDt() { + return dt; + } + + public void setDt(LocalDateTime dt) { + this.dt = dt; + } + + public Integer getWeekday() { + return weekday; + } + + public void setWeekday(Integer weekday) { + this.weekday = weekday; + } + + public Integer getIsWork() { + return isWork; + } + + public void setIsWork(Integer isWork) { + this.isWork = isWork; + } + + @Override + public String toString() { + return "TblWorkDate{" + + "id=" + id + + ", dt=" + dt + + ", weekday=" + weekday + + ", isWork=" + isWork + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" new file mode 100644 index 00000000..aa323c34 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 催缴短信提醒日志 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyAskMsgRemindLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间id + */ + private Integer cellId; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 接受号码 + */ + private String receivePhone; + + /** + * 缴费限期 + */ + private LocalDateTime payLimitDay; + + /** + * 提醒天数 + */ + private Integer remindDays; + + /** + * 房产名称 + */ + private String cellName; + + /** + * 发送人id + */ + private String sendPersonId; + + /** + * 发送人名称 + */ + private String sendPersonName; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getReceivePhone() { + return receivePhone; + } + + public void setReceivePhone(String receivePhone) { + this.receivePhone = receivePhone; + } + + public LocalDateTime getPayLimitDay() { + return payLimitDay; + } + + public void setPayLimitDay(LocalDateTime payLimitDay) { + this.payLimitDay = payLimitDay; + } + + public Integer getRemindDays() { + return remindDays; + } + + public void setRemindDays(Integer remindDays) { + this.remindDays = remindDays; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getSendPersonId() { + return sendPersonId; + } + + public void setSendPersonId(String sendPersonId) { + this.sendPersonId = sendPersonId; + } + + public String getSendPersonName() { + return sendPersonName; + } + + public void setSendPersonName(String sendPersonName) { + this.sendPersonName = sendPersonName; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + @Override + public String toString() { + return "WyAskMsgRemindLog{" + + "id=" + id + + ", cellId=" + cellId + + ", moneyId=" + moneyId + + ", receivePhone=" + receivePhone + + ", payLimitDay=" + payLimitDay + + ", remindDays=" + remindDays + + ", cellName=" + cellName + + ", sendPersonId=" + sendPersonId + + ", sendPersonName=" + sendPersonName + + ", sendDate=" + sendDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" new file mode 100644 index 00000000..105fc9f3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 车辆管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCarManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 车牌号 + */ + private String carLicnece; + + /** + * 停车牌号 + */ + private String stopCarLicence; + + /** + * 车主姓名 + */ + private String carOwnerName; + + /** + * 车位 + */ + private String carport; + + /** + * 入场时间 + */ + private LocalDateTime inDate; + + /** + * 出场时间 + */ + private LocalDateTime outDate; + + /** + * 值班人 + */ + private String agent; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCarLicnece() { + return carLicnece; + } + + public void setCarLicnece(String carLicnece) { + this.carLicnece = carLicnece; + } + + public String getStopCarLicence() { + return stopCarLicence; + } + + public void setStopCarLicence(String stopCarLicence) { + this.stopCarLicence = stopCarLicence; + } + + public String getCarOwnerName() { + return carOwnerName; + } + + public void setCarOwnerName(String carOwnerName) { + this.carOwnerName = carOwnerName; + } + + public String getCarport() { + return carport; + } + + public void setCarport(String carport) { + this.carport = carport; + } + + public LocalDateTime getInDate() { + return inDate; + } + + public void setInDate(LocalDateTime inDate) { + this.inDate = inDate; + } + + public LocalDateTime getOutDate() { + return outDate; + } + + public void setOutDate(LocalDateTime outDate) { + this.outDate = outDate; + } + + public String getAgent() { + return agent; + } + + public void setAgent(String agent) { + this.agent = agent; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCarManage{" + + "id=" + id + + ", carLicnece=" + carLicnece + + ", stopCarLicence=" + stopCarLicence + + ", carOwnerName=" + carOwnerName + + ", carport=" + carport + + ", inDate=" + inDate + + ", outDate=" + outDate + + ", agent=" + agent + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" new file mode 100644 index 00000000..7cf11524 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 车位管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCarSpaceManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 车位编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 车位类型 + */ + private Long carSpaceType; + + /** + * 车牌号码 + */ + private String carLicenceId; + + /** + * 预售价格 + */ + private Double preSalePrice; + + /** + * 预租价格 + */ + private Double preRentPrice; + + /** + * 停车证号 + */ + private String stopCarLicence; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 管理类别 + */ + private String manageType; + + /** + * 车位位置 + */ + private String carSapcePosition; + + /** + * 车位面积 + */ + private Double carSapceArea; + + /** + * 产权人id + */ + private Integer ownerId; + + /** + * 产权人名称 + */ + private String ownerName; + + /** + * 实售价格 + */ + private Double realSalePrice; + + /** + * 车位类别 + */ + private String carSpaceCategory; + + /** + * 当前状态 + */ + private String status; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 销售人 + */ + private String salePerson; + + /** + * 销售时间 + */ + private LocalDateTime saleDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getCarSpaceType() { + return carSpaceType; + } + + public void setCarSpaceType(Long carSpaceType) { + this.carSpaceType = carSpaceType; + } + + public String getCarLicenceId() { + return carLicenceId; + } + + public void setCarLicenceId(String carLicenceId) { + this.carLicenceId = carLicenceId; + } + + public Double getPreSalePrice() { + return preSalePrice; + } + + public void setPreSalePrice(Double preSalePrice) { + this.preSalePrice = preSalePrice; + } + + public Double getPreRentPrice() { + return preRentPrice; + } + + public void setPreRentPrice(Double preRentPrice) { + this.preRentPrice = preRentPrice; + } + + public String getStopCarLicence() { + return stopCarLicence; + } + + public void setStopCarLicence(String stopCarLicence) { + this.stopCarLicence = stopCarLicence; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public String getManageType() { + return manageType; + } + + public void setManageType(String manageType) { + this.manageType = manageType; + } + + public String getCarSapcePosition() { + return carSapcePosition; + } + + public void setCarSapcePosition(String carSapcePosition) { + this.carSapcePosition = carSapcePosition; + } + + public Double getCarSapceArea() { + return carSapceArea; + } + + public void setCarSapceArea(Double carSapceArea) { + this.carSapceArea = carSapceArea; + } + + public Integer getOwnerId() { + return ownerId; + } + + public void setOwnerId(Integer ownerId) { + this.ownerId = ownerId; + } + + public String getOwnerName() { + return ownerName; + } + + public void setOwnerName(String ownerName) { + this.ownerName = ownerName; + } + + public Double getRealSalePrice() { + return realSalePrice; + } + + public void setRealSalePrice(Double realSalePrice) { + this.realSalePrice = realSalePrice; + } + + public String getCarSpaceCategory() { + return carSpaceCategory; + } + + public void setCarSpaceCategory(String carSpaceCategory) { + this.carSpaceCategory = carSpaceCategory; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getSalePerson() { + return salePerson; + } + + public void setSalePerson(String salePerson) { + this.salePerson = salePerson; + } + + public LocalDateTime getSaleDate() { + return saleDate; + } + + public void setSaleDate(LocalDateTime saleDate) { + this.saleDate = saleDate; + } + + @Override + public String toString() { + return "WyCarSpaceManage{" + + "id=" + id + + ", carSpaceType=" + carSpaceType + + ", carLicenceId=" + carLicenceId + + ", preSalePrice=" + preSalePrice + + ", preRentPrice=" + preRentPrice + + ", stopCarLicence=" + stopCarLicence + + ", estateId=" + estateId + + ", manageType=" + manageType + + ", carSapcePosition=" + carSapcePosition + + ", carSapceArea=" + carSapceArea + + ", ownerId=" + ownerId + + ", ownerName=" + ownerName + + ", realSalePrice=" + realSalePrice + + ", carSpaceCategory=" + carSpaceCategory + + ", status=" + status + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", salePerson=" + salePerson + + ", saleDate=" + saleDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" new file mode 100644 index 00000000..214b45ea --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" @@ -0,0 +1,363 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 车位租赁 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCarSpaceRent implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 合同编号 + */ + private String constractId; + + /** + * 所属车位编号 + */ + private String carSpaceId; + + /** + * 租期开始日 + */ + private LocalDateTime rentStartDate; + + /** + * 租期结束日 + */ + private LocalDateTime rentStopDate; + + /** + * 承租月数 + */ + private Double rentMonth; + + /** + * 使用人id + */ + private Integer userId; + + /** + * 使用人名称 + */ + private String userName; + + /** + * 车牌号码 + */ + private String carLicenceId; + + /** + * 停车证号 + */ + private String stopCarLicence; + + /** + * 月租金 + */ + private Double rentPerMonth; + + /** + * 月服务费 + */ + private Double serviceMoneyPerMonth; + + /** + * 签订日期 + */ + private LocalDateTime signDate; + + /** + * 生效日期 + */ + private LocalDateTime startDate; + + /** + * 终止日期 + */ + private LocalDateTime stopDate; + + /** + * 状态 + */ + private String status; + + /** + * 备注 + */ + private String remark; + + /** + * 中介费 + */ + private Double agentMoney; + + /** + * 是否收取租金 + */ + private String isRentMoney; + + /** + * 合同附件 + */ + private String contractAttach; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getConstractId() { + return constractId; + } + + public void setConstractId(String constractId) { + this.constractId = constractId; + } + + public String getCarSpaceId() { + return carSpaceId; + } + + public void setCarSpaceId(String carSpaceId) { + this.carSpaceId = carSpaceId; + } + + public LocalDateTime getRentStartDate() { + return rentStartDate; + } + + public void setRentStartDate(LocalDateTime rentStartDate) { + this.rentStartDate = rentStartDate; + } + + public LocalDateTime getRentStopDate() { + return rentStopDate; + } + + public void setRentStopDate(LocalDateTime rentStopDate) { + this.rentStopDate = rentStopDate; + } + + public Double getRentMonth() { + return rentMonth; + } + + public void setRentMonth(Double rentMonth) { + this.rentMonth = rentMonth; + } + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getCarLicenceId() { + return carLicenceId; + } + + public void setCarLicenceId(String carLicenceId) { + this.carLicenceId = carLicenceId; + } + + public String getStopCarLicence() { + return stopCarLicence; + } + + public void setStopCarLicence(String stopCarLicence) { + this.stopCarLicence = stopCarLicence; + } + + public Double getRentPerMonth() { + return rentPerMonth; + } + + public void setRentPerMonth(Double rentPerMonth) { + this.rentPerMonth = rentPerMonth; + } + + public Double getServiceMoneyPerMonth() { + return serviceMoneyPerMonth; + } + + public void setServiceMoneyPerMonth(Double serviceMoneyPerMonth) { + this.serviceMoneyPerMonth = serviceMoneyPerMonth; + } + + public LocalDateTime getSignDate() { + return signDate; + } + + public void setSignDate(LocalDateTime signDate) { + this.signDate = signDate; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public Double getAgentMoney() { + return agentMoney; + } + + public void setAgentMoney(Double agentMoney) { + this.agentMoney = agentMoney; + } + + public String getIsRentMoney() { + return isRentMoney; + } + + public void setIsRentMoney(String isRentMoney) { + this.isRentMoney = isRentMoney; + } + + public String getContractAttach() { + return contractAttach; + } + + public void setContractAttach(String contractAttach) { + this.contractAttach = contractAttach; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyCarSpaceRent{" + + "id=" + id + + ", constractId=" + constractId + + ", carSpaceId=" + carSpaceId + + ", rentStartDate=" + rentStartDate + + ", rentStopDate=" + rentStopDate + + ", rentMonth=" + rentMonth + + ", userId=" + userId + + ", userName=" + userName + + ", carLicenceId=" + carLicenceId + + ", stopCarLicence=" + stopCarLicence + + ", rentPerMonth=" + rentPerMonth + + ", serviceMoneyPerMonth=" + serviceMoneyPerMonth + + ", signDate=" + signDate + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", status=" + status + + ", remark=" + remark + + ", agentMoney=" + agentMoney + + ", isRentMoney=" + isRentMoney + + ", contractAttach=" + contractAttach + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" new file mode 100644 index 00000000..1cfc6ba6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" @@ -0,0 +1,461 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 车位租赁缴费明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCarSpaceRentDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属租赁id + */ + private Long rentId; + + /** + * 缴费类型 + */ + private String payType; + + /** + * 缴费开始日 + */ + private LocalDateTime payStartDate; + + /** + * 缴费结束日 + */ + private LocalDateTime payStopDate; + + /** + * 应收金额 + */ + private Double shouldReceive; + + /** + * 优惠金额 + */ + private Double discountMoney; + + /** + * 滞纳金 + */ + private Double delayMoney; + + /** + * 实收金额 + */ + private Double realReceiveMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 收款人id + */ + private String receiveId; + + /** + * 收款人名称 + */ + private String receivePersonName; + + /** + * 收款时间 + */ + private LocalDateTime receiveDate; + + /** + * 发票号码 + */ + private String invoiceNumber; + + /** + * 收款状态 + */ + private String receiveStatus; + + /** + * 作废人id + */ + private String invalidPersonId; + + /** + * 作废人名称 + */ + private String invalidPersonName; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 单据审核状态 + */ + private String receiptCheckStatus; + + /** + * 单据审核人 + */ + private String receiptCheckPerson; + + /** + * 单据审核时间 + */ + private LocalDateTime receiptCheckTime; + + /** + * 单据审核意见 + */ + private String receiptCheckAdvice; + + /** + * 现金审核状态 + */ + private String moneyCheckStatus; + + /** + * 现金审核人 + */ + private String moneyCheckPerson; + + /** + * 现金审核时间 + */ + private LocalDateTime moneyCheckTime; + + /** + * 现金审核意见 + */ + private String moneyCheckAdvice; + + /** + * 作废审核状态 + */ + private String invalidCheckStatus; + + /** + * 作废审核人 + */ + private String invalidCheckPerson; + + /** + * 作废审核时间 + */ + private LocalDateTime invalidCheckTime; + + /** + * 作废审核意见 + */ + private String invalidCheckAdvice; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getRentId() { + return rentId; + } + + public void setRentId(Long rentId) { + this.rentId = rentId; + } + + public String getPayType() { + return payType; + } + + public void setPayType(String payType) { + this.payType = payType; + } + + public LocalDateTime getPayStartDate() { + return payStartDate; + } + + public void setPayStartDate(LocalDateTime payStartDate) { + this.payStartDate = payStartDate; + } + + public LocalDateTime getPayStopDate() { + return payStopDate; + } + + public void setPayStopDate(LocalDateTime payStopDate) { + this.payStopDate = payStopDate; + } + + public Double getShouldReceive() { + return shouldReceive; + } + + public void setShouldReceive(Double shouldReceive) { + this.shouldReceive = shouldReceive; + } + + public Double getDiscountMoney() { + return discountMoney; + } + + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + public Double getDelayMoney() { + return delayMoney; + } + + public void setDelayMoney(Double delayMoney) { + this.delayMoney = delayMoney; + } + + public Double getRealReceiveMoney() { + return realReceiveMoney; + } + + public void setRealReceiveMoney(Double realReceiveMoney) { + this.realReceiveMoney = realReceiveMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public String getReceivePersonName() { + return receivePersonName; + } + + public void setReceivePersonName(String receivePersonName) { + this.receivePersonName = receivePersonName; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getInvoiceNumber() { + return invoiceNumber; + } + + public void setInvoiceNumber(String invoiceNumber) { + this.invoiceNumber = invoiceNumber; + } + + public String getReceiveStatus() { + return receiveStatus; + } + + public void setReceiveStatus(String receiveStatus) { + this.receiveStatus = receiveStatus; + } + + public String getInvalidPersonId() { + return invalidPersonId; + } + + public void setInvalidPersonId(String invalidPersonId) { + this.invalidPersonId = invalidPersonId; + } + + public String getInvalidPersonName() { + return invalidPersonName; + } + + public void setInvalidPersonName(String invalidPersonName) { + this.invalidPersonName = invalidPersonName; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getReceiptCheckStatus() { + return receiptCheckStatus; + } + + public void setReceiptCheckStatus(String receiptCheckStatus) { + this.receiptCheckStatus = receiptCheckStatus; + } + + public String getReceiptCheckPerson() { + return receiptCheckPerson; + } + + public void setReceiptCheckPerson(String receiptCheckPerson) { + this.receiptCheckPerson = receiptCheckPerson; + } + + public LocalDateTime getReceiptCheckTime() { + return receiptCheckTime; + } + + public void setReceiptCheckTime(LocalDateTime receiptCheckTime) { + this.receiptCheckTime = receiptCheckTime; + } + + public String getReceiptCheckAdvice() { + return receiptCheckAdvice; + } + + public void setReceiptCheckAdvice(String receiptCheckAdvice) { + this.receiptCheckAdvice = receiptCheckAdvice; + } + + public String getMoneyCheckStatus() { + return moneyCheckStatus; + } + + public void setMoneyCheckStatus(String moneyCheckStatus) { + this.moneyCheckStatus = moneyCheckStatus; + } + + public String getMoneyCheckPerson() { + return moneyCheckPerson; + } + + public void setMoneyCheckPerson(String moneyCheckPerson) { + this.moneyCheckPerson = moneyCheckPerson; + } + + public LocalDateTime getMoneyCheckTime() { + return moneyCheckTime; + } + + public void setMoneyCheckTime(LocalDateTime moneyCheckTime) { + this.moneyCheckTime = moneyCheckTime; + } + + public String getMoneyCheckAdvice() { + return moneyCheckAdvice; + } + + public void setMoneyCheckAdvice(String moneyCheckAdvice) { + this.moneyCheckAdvice = moneyCheckAdvice; + } + + public String getInvalidCheckStatus() { + return invalidCheckStatus; + } + + public void setInvalidCheckStatus(String invalidCheckStatus) { + this.invalidCheckStatus = invalidCheckStatus; + } + + public String getInvalidCheckPerson() { + return invalidCheckPerson; + } + + public void setInvalidCheckPerson(String invalidCheckPerson) { + this.invalidCheckPerson = invalidCheckPerson; + } + + public LocalDateTime getInvalidCheckTime() { + return invalidCheckTime; + } + + public void setInvalidCheckTime(LocalDateTime invalidCheckTime) { + this.invalidCheckTime = invalidCheckTime; + } + + public String getInvalidCheckAdvice() { + return invalidCheckAdvice; + } + + public void setInvalidCheckAdvice(String invalidCheckAdvice) { + this.invalidCheckAdvice = invalidCheckAdvice; + } + + @Override + public String toString() { + return "WyCarSpaceRentDetail{" + + "id=" + id + + ", rentId=" + rentId + + ", payType=" + payType + + ", payStartDate=" + payStartDate + + ", payStopDate=" + payStopDate + + ", shouldReceive=" + shouldReceive + + ", discountMoney=" + discountMoney + + ", delayMoney=" + delayMoney + + ", realReceiveMoney=" + realReceiveMoney + + ", desc=" + desc + + ", receiveId=" + receiveId + + ", receivePersonName=" + receivePersonName + + ", receiveDate=" + receiveDate + + ", invoiceNumber=" + invoiceNumber + + ", receiveStatus=" + receiveStatus + + ", invalidPersonId=" + invalidPersonId + + ", invalidPersonName=" + invalidPersonName + + ", invalidReason=" + invalidReason + + ", invalidDate=" + invalidDate + + ", receiptCheckStatus=" + receiptCheckStatus + + ", receiptCheckPerson=" + receiptCheckPerson + + ", receiptCheckTime=" + receiptCheckTime + + ", receiptCheckAdvice=" + receiptCheckAdvice + + ", moneyCheckStatus=" + moneyCheckStatus + + ", moneyCheckPerson=" + moneyCheckPerson + + ", moneyCheckTime=" + moneyCheckTime + + ", moneyCheckAdvice=" + moneyCheckAdvice + + ", invalidCheckStatus=" + invalidCheckStatus + + ", invalidCheckPerson=" + invalidCheckPerson + + ", invalidCheckTime=" + invalidCheckTime + + ", invalidCheckAdvice=" + invalidCheckAdvice + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" new file mode 100644 index 00000000..1c8cc5a9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 清洁检查 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCleanCheck implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 检查日期 + */ + private LocalDateTime checkDate; + + /** + * 检查地段 + */ + private String checkPlace; + + /** + * 检查情况 + */ + private String checkCondition; + + /** + * 检查人 + */ + private String checkPerson; + + /** + * 清洁人 + */ + private String cleanPerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckPlace() { + return checkPlace; + } + + public void setCheckPlace(String checkPlace) { + this.checkPlace = checkPlace; + } + + public String getCheckCondition() { + return checkCondition; + } + + public void setCheckCondition(String checkCondition) { + this.checkCondition = checkCondition; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public String getCleanPerson() { + return cleanPerson; + } + + public void setCleanPerson(String cleanPerson) { + this.cleanPerson = cleanPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCleanCheck{" + + "id=" + id + + ", checkDate=" + checkDate + + ", checkPlace=" + checkPlace + + ", checkCondition=" + checkCondition + + ", checkPerson=" + checkPerson + + ", cleanPerson=" + cleanPerson + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" new file mode 100644 index 00000000..d92431f5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 清洁安排 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCleanPlan implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 项目编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 项目名称 + */ + private String projectName; + + /** + * 清洁地段 + */ + private String cleanPlace; + + /** + * 清洁内容 + */ + private String cleanContent; + + /** + * 负责人 + */ + private String leader; + + /** + * 清洁时间 + */ + private String cleanDate; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProjectName() { + return projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getCleanPlace() { + return cleanPlace; + } + + public void setCleanPlace(String cleanPlace) { + this.cleanPlace = cleanPlace; + } + + public String getCleanContent() { + return cleanContent; + } + + public void setCleanContent(String cleanContent) { + this.cleanContent = cleanContent; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getCleanDate() { + return cleanDate; + } + + public void setCleanDate(String cleanDate) { + this.cleanDate = cleanDate; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCleanPlan{" + + "id=" + id + + ", projectName=" + projectName + + ", cleanPlace=" + cleanPlace + + ", cleanContent=" + cleanContent + + ", leader=" + leader + + ", cleanDate=" + cleanDate + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" new file mode 100644 index 00000000..02a7bdd9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" @@ -0,0 +1,110 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 清洁记录 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCleanRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 项目编号 + */ + private String projectId; + + /** + * 清洁情况 + */ + private String cleanCondition; + + /** + * 清洁时间 + */ + private String cleanDate; + + /** + * 清洁人 + */ + private String cleanPerson; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } + + public String getCleanCondition() { + return cleanCondition; + } + + public void setCleanCondition(String cleanCondition) { + this.cleanCondition = cleanCondition; + } + + public String getCleanDate() { + return cleanDate; + } + + public void setCleanDate(String cleanDate) { + this.cleanDate = cleanDate; + } + + public String getCleanPerson() { + return cleanPerson; + } + + public void setCleanPerson(String cleanPerson) { + this.cleanPerson = cleanPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "WyCleanRecord{" + + "id=" + id + + ", projectId=" + projectId + + ", cleanCondition=" + cleanCondition + + ", cleanDate=" + cleanDate + + ", cleanPerson=" + cleanPerson + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" new file mode 100644 index 00000000..cb5aba1b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业委会成员 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCommitteeMembers implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 成员代码 + */ + private String memberCode; + + /** + * 成员姓名 + */ + private String memberName; + + /** + * 职务 + */ + private String memberDuty; + + /** + * 出生日期 + */ + private LocalDateTime birthday; + + /** + * 性别 + */ + private String gender; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 工作单位 + */ + private String workPlace; + + /** + * 个人简介 + */ + private String selfIntroduce; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMemberCode() { + return memberCode; + } + + public void setMemberCode(String memberCode) { + this.memberCode = memberCode; + } + + public String getMemberName() { + return memberName; + } + + public void setMemberName(String memberName) { + this.memberName = memberName; + } + + public String getMemberDuty() { + return memberDuty; + } + + public void setMemberDuty(String memberDuty) { + this.memberDuty = memberDuty; + } + + public LocalDateTime getBirthday() { + return birthday; + } + + public void setBirthday(LocalDateTime birthday) { + this.birthday = birthday; + } + + public String getGender() { + return gender; + } + + public void setGender(String gender) { + this.gender = gender; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getWorkPlace() { + return workPlace; + } + + public void setWorkPlace(String workPlace) { + this.workPlace = workPlace; + } + + public String getSelfIntroduce() { + return selfIntroduce; + } + + public void setSelfIntroduce(String selfIntroduce) { + this.selfIntroduce = selfIntroduce; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCommitteeMembers{" + + "id=" + id + + ", memberCode=" + memberCode + + ", memberName=" + memberName + + ", memberDuty=" + memberDuty + + ", birthday=" + birthday + + ", gender=" + gender + + ", phoneNumber=" + phoneNumber + + ", workPlace=" + workPlace + + ", selfIntroduce=" + selfIntroduce + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" new file mode 100644 index 00000000..94645af6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业委会会议 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCommitteeMetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 会议日期 + */ + private LocalDateTime meetingDate; + + /** + * 会议主题 + */ + private String meetingTitle; + + /** + * 会议地点 + */ + private String meetingAddr; + + /** + * 会议内容 + */ + private String meetingContent; + + /** + * 主持人 + */ + private String hoster; + + /** + * 记录员 + */ + private String recorder; + + /** + * 参见人员 + */ + private String joiner; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getMeetingDate() { + return meetingDate; + } + + public void setMeetingDate(LocalDateTime meetingDate) { + this.meetingDate = meetingDate; + } + + public String getMeetingTitle() { + return meetingTitle; + } + + public void setMeetingTitle(String meetingTitle) { + this.meetingTitle = meetingTitle; + } + + public String getMeetingAddr() { + return meetingAddr; + } + + public void setMeetingAddr(String meetingAddr) { + this.meetingAddr = meetingAddr; + } + + public String getMeetingContent() { + return meetingContent; + } + + public void setMeetingContent(String meetingContent) { + this.meetingContent = meetingContent; + } + + public String getHoster() { + return hoster; + } + + public void setHoster(String hoster) { + this.hoster = hoster; + } + + public String getRecorder() { + return recorder; + } + + public void setRecorder(String recorder) { + this.recorder = recorder; + } + + public String getJoiner() { + return joiner; + } + + public void setJoiner(String joiner) { + this.joiner = joiner; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCommitteeMetting{" + + "id=" + id + + ", meetingDate=" + meetingDate + + ", meetingTitle=" + meetingTitle + + ", meetingAddr=" + meetingAddr + + ", meetingContent=" + meetingContent + + ", hoster=" + hoster + + ", recorder=" + recorder + + ", joiner=" + joiner + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" new file mode 100644 index 00000000..14fa37a0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 社区活动 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCommunityEvent implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 活动日期 + */ + private LocalDateTime eventDate; + + /** + * 活动内容 + */ + private String eventContent; + + /** + * 主持者 + */ + private String hoster; + + /** + * 参加人员 + */ + private String joinPerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getEventDate() { + return eventDate; + } + + public void setEventDate(LocalDateTime eventDate) { + this.eventDate = eventDate; + } + + public String getEventContent() { + return eventContent; + } + + public void setEventContent(String eventContent) { + this.eventContent = eventContent; + } + + public String getHoster() { + return hoster; + } + + public void setHoster(String hoster) { + this.hoster = hoster; + } + + public String getJoinPerson() { + return joinPerson; + } + + public void setJoinPerson(String joinPerson) { + this.joinPerson = joinPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCommunityEvent{" + + "id=" + id + + ", eventDate=" + eventDate + + ", eventContent=" + eventContent + + ", hoster=" + hoster + + ", joinPerson=" + joinPerson + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" new file mode 100644 index 00000000..743e7122 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 执勤管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyDutyManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 执勤日期 + */ + private LocalDateTime dutyDate; + + /** + * 执勤人 + */ + private String dutyPerson; + + /** + * 执勤类型 + */ + private String dutyType; + + /** + * 执勤地点 + */ + private String dutyPlace; + + /** + * 执勤记录 + */ + private String dutyRecord; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getDutyDate() { + return dutyDate; + } + + public void setDutyDate(LocalDateTime dutyDate) { + this.dutyDate = dutyDate; + } + + public String getDutyPerson() { + return dutyPerson; + } + + public void setDutyPerson(String dutyPerson) { + this.dutyPerson = dutyPerson; + } + + public String getDutyType() { + return dutyType; + } + + public void setDutyType(String dutyType) { + this.dutyType = dutyType; + } + + public String getDutyPlace() { + return dutyPlace; + } + + public void setDutyPlace(String dutyPlace) { + this.dutyPlace = dutyPlace; + } + + public String getDutyRecord() { + return dutyRecord; + } + + public void setDutyRecord(String dutyRecord) { + this.dutyRecord = dutyRecord; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyDutyManage{" + + "id=" + id + + ", dutyDate=" + dutyDate + + ", dutyPerson=" + dutyPerson + + ", dutyType=" + dutyType + + ", dutyPlace=" + dutyPlace + + ", dutyRecord=" + dutyRecord + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" new file mode 100644 index 00000000..19cfc815 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" @@ -0,0 +1,195 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 信件收取 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEmailReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 收件日期 + */ + private LocalDateTime receiveDate; + + /** + * 领件日期 + */ + private LocalDateTime getDate; + + /** + * 邮件类别 + */ + private String emailType; + + /** + * 收件单位 + */ + private String receiveUnit; + + /** + * 数量 + */ + private Integer number; + + /** + * 领件人 + */ + private String getPerson; + + /** + * 证件类型 + */ + private String cardType; + + /** + * 证件 + */ + private String card; + + /** + * 经手人 + */ + private String agent; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public LocalDateTime getGetDate() { + return getDate; + } + + public void setGetDate(LocalDateTime getDate) { + this.getDate = getDate; + } + + public String getEmailType() { + return emailType; + } + + public void setEmailType(String emailType) { + this.emailType = emailType; + } + + public String getReceiveUnit() { + return receiveUnit; + } + + public void setReceiveUnit(String receiveUnit) { + this.receiveUnit = receiveUnit; + } + + public Integer getNumber() { + return number; + } + + public void setNumber(Integer number) { + this.number = number; + } + + public String getGetPerson() { + return getPerson; + } + + public void setGetPerson(String getPerson) { + this.getPerson = getPerson; + } + + public String getCardType() { + return cardType; + } + + public void setCardType(String cardType) { + this.cardType = cardType; + } + + public String getCard() { + return card; + } + + public void setCard(String card) { + this.card = card; + } + + public String getAgent() { + return agent; + } + + public void setAgent(String agent) { + this.agent = agent; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyEmailReceive{" + + "id=" + id + + ", receiveDate=" + receiveDate + + ", getDate=" + getDate + + ", emailType=" + emailType + + ", receiveUnit=" + receiveUnit + + ", number=" + number + + ", getPerson=" + getPerson + + ", cardType=" + cardType + + ", card=" + card + + ", agent=" + agent + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" new file mode 100644 index 00000000..18c49646 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费收入明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateIncomeDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账日期 + */ + private LocalDateTime chargeDate; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 收入项目 + */ + private Integer incomeProject; + + /** + * 收入金额 + */ + private Double incomeMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Integer getIncomeProject() { + return incomeProject; + } + + public void setIncomeProject(Integer incomeProject) { + this.incomeProject = incomeProject; + } + + public Double getIncomeMoney() { + return incomeMoney; + } + + public void setIncomeMoney(Double incomeMoney) { + this.incomeMoney = incomeMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyEstateIncomeDetail{" + + "id=" + id + + ", chargeDate=" + chargeDate + + ", estateId=" + estateId + + ", incomeProject=" + incomeProject + + ", incomeMoney=" + incomeMoney + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" new file mode 100644 index 00000000..0515f701 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费收入项目 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateIncomeProject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 收入项目id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 收入项目名称 + */ + private String incomeProject; + + /** + * 上级收入项目id + */ + private Integer parentIncomeId; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getIncomeProject() { + return incomeProject; + } + + public void setIncomeProject(String incomeProject) { + this.incomeProject = incomeProject; + } + + public Integer getParentIncomeId() { + return parentIncomeId; + } + + public void setParentIncomeId(Integer parentIncomeId) { + this.parentIncomeId = parentIncomeId; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyEstateIncomeProject{" + + "id=" + id + + ", incomeProject=" + incomeProject + + ", parentIncomeId=" + parentIncomeId + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" new file mode 100644 index 00000000..838774a2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘费用 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateMoney implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账年份 + */ + private LocalDateTime chargeYear; + + /** + * 费用金额 + */ + private Double money; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeYear() { + return chargeYear; + } + + public void setChargeYear(LocalDateTime chargeYear) { + this.chargeYear = chargeYear; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyEstateMoney{" + + "id=" + id + + ", chargeYear=" + chargeYear + + ", money=" + money + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" new file mode 100644 index 00000000..56b7b9c9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" @@ -0,0 +1,265 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费支出明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateOutDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账日期 + */ + private LocalDateTime chargeDate; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 支出主项目 + */ + private String outputMainProject; + + /** + * 支出子项目 + */ + private Integer outputSubProject; + + /** + * 支出金额 + */ + private Double outputMoney; + + /** + * 年累计支出金额 + */ + private Double outputMoneyYear; + + /** + * 主项累计支出金额 + */ + private Double outputMoneyMain; + + /** + * 状态 + */ + private String status; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 下一步接收人id + */ + private String nextReceivePersonId; + + /** + * 下一步接收人姓名 + */ + private String nextReceivePersonName; + + /** + * 送审时间 + */ + private LocalDateTime sendCheckDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public String getOutputMainProject() { + return outputMainProject; + } + + public void setOutputMainProject(String outputMainProject) { + this.outputMainProject = outputMainProject; + } + + public Integer getOutputSubProject() { + return outputSubProject; + } + + public void setOutputSubProject(Integer outputSubProject) { + this.outputSubProject = outputSubProject; + } + + public Double getOutputMoney() { + return outputMoney; + } + + public void setOutputMoney(Double outputMoney) { + this.outputMoney = outputMoney; + } + + public Double getOutputMoneyYear() { + return outputMoneyYear; + } + + public void setOutputMoneyYear(Double outputMoneyYear) { + this.outputMoneyYear = outputMoneyYear; + } + + public Double getOutputMoneyMain() { + return outputMoneyMain; + } + + public void setOutputMoneyMain(Double outputMoneyMain) { + this.outputMoneyMain = outputMoneyMain; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getNextReceivePersonId() { + return nextReceivePersonId; + } + + public void setNextReceivePersonId(String nextReceivePersonId) { + this.nextReceivePersonId = nextReceivePersonId; + } + + public String getNextReceivePersonName() { + return nextReceivePersonName; + } + + public void setNextReceivePersonName(String nextReceivePersonName) { + this.nextReceivePersonName = nextReceivePersonName; + } + + public LocalDateTime getSendCheckDate() { + return sendCheckDate; + } + + public void setSendCheckDate(LocalDateTime sendCheckDate) { + this.sendCheckDate = sendCheckDate; + } + + @Override + public String toString() { + return "WyEstateOutDetail{" + + "id=" + id + + ", chargeDate=" + chargeDate + + ", estateId=" + estateId + + ", outputMainProject=" + outputMainProject + + ", outputSubProject=" + outputSubProject + + ", outputMoney=" + outputMoney + + ", outputMoneyYear=" + outputMoneyYear + + ", outputMoneyMain=" + outputMoneyMain + + ", status=" + status + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", nextReceivePersonId=" + nextReceivePersonId + + ", nextReceivePersonName=" + nextReceivePersonName + + ", sendCheckDate=" + sendCheckDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" new file mode 100644 index 00000000..aba21711 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费支出明细_审批子表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateOutDetailSub implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Long id; + + /** + * 所属主单id + */ + private Long belongOutProjectId; + + /** + * 接受时间 + */ + private LocalDateTime receiveDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 审批人id + */ + private String checkPersonId; + + /** + * 审批人名称 + */ + private String checkPersonName; + + /** + * 审批时间 + */ + private LocalDateTime checkDate; + + /** + * 审批状态 + */ + private String checkStatus; + + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getBelongOutProjectId() { + return belongOutProjectId; + } + + public void setBelongOutProjectId(Long belongOutProjectId) { + this.belongOutProjectId = belongOutProjectId; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getCheckPersonId() { + return checkPersonId; + } + + public void setCheckPersonId(String checkPersonId) { + this.checkPersonId = checkPersonId; + } + + public String getCheckPersonName() { + return checkPersonName; + } + + public void setCheckPersonName(String checkPersonName) { + this.checkPersonName = checkPersonName; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckStatus() { + return checkStatus; + } + + public void setCheckStatus(String checkStatus) { + this.checkStatus = checkStatus; + } + + @Override + public String toString() { + return "WyEstateOutDetailSub{" + + "id=" + id + + ", belongOutProjectId=" + belongOutProjectId + + ", receiveDate=" + receiveDate + + ", checkAdvice=" + checkAdvice + + ", checkPersonId=" + checkPersonId + + ", checkPersonName=" + checkPersonName + + ", checkDate=" + checkDate + + ", checkStatus=" + checkStatus + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" new file mode 100644 index 00000000..48f3ef70 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费支出项目 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateOutProject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 项目id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 项目名称 + */ + private String projectName; + + /** + * 上级支出项目id + */ + private Integer parentOutProjectId; + + /** + * 所属主项目 + */ + private String belongMainProjecct; + + /** + * 说明 + */ + private String desc; + + /** + * 建档人 + */ + private String createPerson; + + /** + * 建档时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProjectName() { + return projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public Integer getParentOutProjectId() { + return parentOutProjectId; + } + + public void setParentOutProjectId(Integer parentOutProjectId) { + this.parentOutProjectId = parentOutProjectId; + } + + public String getBelongMainProjecct() { + return belongMainProjecct; + } + + public void setBelongMainProjecct(String belongMainProjecct) { + this.belongMainProjecct = belongMainProjecct; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyEstateOutProject{" + + "id=" + id + + ", projectName=" + projectName + + ", parentOutProjectId=" + parentOutProjectId + + ", belongMainProjecct=" + belongMainProjecct + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" new file mode 100644 index 00000000..a2acbb7e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 消防事故 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyFireAccident implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 事故日期 + */ + private LocalDateTime accidentDate; + + /** + * 事故地点 + */ + private String accidentPlace; + + /** + * 发生原因 + */ + private String occurReason; + + /** + * 相关人员 + */ + private String relatedPerson; + + /** + * 处理结果 + */ + private String handleResult; + + /** + * 损失程度 + */ + private String loss; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getAccidentDate() { + return accidentDate; + } + + public void setAccidentDate(LocalDateTime accidentDate) { + this.accidentDate = accidentDate; + } + + public String getAccidentPlace() { + return accidentPlace; + } + + public void setAccidentPlace(String accidentPlace) { + this.accidentPlace = accidentPlace; + } + + public String getOccurReason() { + return occurReason; + } + + public void setOccurReason(String occurReason) { + this.occurReason = occurReason; + } + + public String getRelatedPerson() { + return relatedPerson; + } + + public void setRelatedPerson(String relatedPerson) { + this.relatedPerson = relatedPerson; + } + + public String getHandleResult() { + return handleResult; + } + + public void setHandleResult(String handleResult) { + this.handleResult = handleResult; + } + + public String getLoss() { + return loss; + } + + public void setLoss(String loss) { + this.loss = loss; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyFireAccident{" + + "id=" + id + + ", accidentDate=" + accidentDate + + ", accidentPlace=" + accidentPlace + + ", occurReason=" + occurReason + + ", relatedPerson=" + relatedPerson + + ", handleResult=" + handleResult + + ", loss=" + loss + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" new file mode 100644 index 00000000..20631bb2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 消防巡查 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyFireCheck implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 巡视日期 + */ + private LocalDateTime checkDate; + + /** + * 巡视地点 + */ + private String checkPlace; + + /** + * 巡视人 + */ + private String checkPerson; + + /** + * 巡视情况 + */ + private String checkCondition; + + /** + * 处理意见 + */ + private String handleAdvice; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckPlace() { + return checkPlace; + } + + public void setCheckPlace(String checkPlace) { + this.checkPlace = checkPlace; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public String getCheckCondition() { + return checkCondition; + } + + public void setCheckCondition(String checkCondition) { + this.checkCondition = checkCondition; + } + + public String getHandleAdvice() { + return handleAdvice; + } + + public void setHandleAdvice(String handleAdvice) { + this.handleAdvice = handleAdvice; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyFireCheck{" + + "id=" + id + + ", checkDate=" + checkDate + + ", checkPlace=" + checkPlace + + ", checkPerson=" + checkPerson + + ", checkCondition=" + checkCondition + + ", handleAdvice=" + handleAdvice + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" new file mode 100644 index 00000000..268122ca --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 消防演练 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyFireExercise implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 单位 + */ + private String unit; + + /** + * 开始日期 + */ + private LocalDateTime startDate; + + /** + * 结束日期 + */ + private LocalDateTime stopDate; + + /** + * 演练目的 + */ + private String exercisePurpose; + + /** + * 参与人数 + */ + private Integer joinPersons; + + /** + * 协助单位 + */ + private String assistantUnit; + + /** + * 演练内容 + */ + private String exerciseContent; + + /** + * 演练效果 + */ + private String exerciseResult; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUnit() { + return unit; + } + + public void setUnit(String unit) { + this.unit = unit; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getExercisePurpose() { + return exercisePurpose; + } + + public void setExercisePurpose(String exercisePurpose) { + this.exercisePurpose = exercisePurpose; + } + + public Integer getJoinPersons() { + return joinPersons; + } + + public void setJoinPersons(Integer joinPersons) { + this.joinPersons = joinPersons; + } + + public String getAssistantUnit() { + return assistantUnit; + } + + public void setAssistantUnit(String assistantUnit) { + this.assistantUnit = assistantUnit; + } + + public String getExerciseContent() { + return exerciseContent; + } + + public void setExerciseContent(String exerciseContent) { + this.exerciseContent = exerciseContent; + } + + public String getExerciseResult() { + return exerciseResult; + } + + public void setExerciseResult(String exerciseResult) { + this.exerciseResult = exerciseResult; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyFireExercise{" + + "id=" + id + + ", unit=" + unit + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", exercisePurpose=" + exercisePurpose + + ", joinPersons=" + joinPersons + + ", assistantUnit=" + assistantUnit + + ", exerciseContent=" + exerciseContent + + ", exerciseResult=" + exerciseResult + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" new file mode 100644 index 00000000..b968dc6e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 消防设施 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyFireFacility implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 设施名称 + */ + private String facilityName; + + /** + * 规格型号 + */ + private String specifications; + + /** + * 单位 + */ + private String unit; + + /** + * 数量 + */ + private Integer number; + + /** + * 放置地点 + */ + private String place; + + /** + * 负责人 + */ + private String leader; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getFacilityName() { + return facilityName; + } + + public void setFacilityName(String facilityName) { + this.facilityName = facilityName; + } + + public String getSpecifications() { + return specifications; + } + + public void setSpecifications(String specifications) { + this.specifications = specifications; + } + + public String getUnit() { + return unit; + } + + public void setUnit(String unit) { + this.unit = unit; + } + + public Integer getNumber() { + return number; + } + + public void setNumber(Integer number) { + this.number = number; + } + + public String getPlace() { + return place; + } + + public void setPlace(String place) { + this.place = place; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyFireFacility{" + + "id=" + id + + ", facilityName=" + facilityName + + ", specifications=" + specifications + + ", unit=" + unit + + ", number=" + number + + ", place=" + place + + ", leader=" + leader + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" new file mode 100644 index 00000000..214d9bcd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" @@ -0,0 +1,195 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 物品出入 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyGoodsInout implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 出入时间 + */ + private LocalDateTime inoutDate; + + /** + * 携带人 + */ + private String carryPerson; + + /** + * 身份证号 + */ + private String idCard; + + /** + * 出入类型 + */ + private String inputType; + + /** + * 居住地址 + */ + private String liveAddr; + + /** + * 出入单元 + */ + private String inoutUnit; + + /** + * 户主姓名 + */ + private String customerName; + + /** + * 出入物品 + */ + private String inoutGoods; + + /** + * 值班人 + */ + private String agent; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getInoutDate() { + return inoutDate; + } + + public void setInoutDate(LocalDateTime inoutDate) { + this.inoutDate = inoutDate; + } + + public String getCarryPerson() { + return carryPerson; + } + + public void setCarryPerson(String carryPerson) { + this.carryPerson = carryPerson; + } + + public String getIdCard() { + return idCard; + } + + public void setIdCard(String idCard) { + this.idCard = idCard; + } + + public String getInputType() { + return inputType; + } + + public void setInputType(String inputType) { + this.inputType = inputType; + } + + public String getLiveAddr() { + return liveAddr; + } + + public void setLiveAddr(String liveAddr) { + this.liveAddr = liveAddr; + } + + public String getInoutUnit() { + return inoutUnit; + } + + public void setInoutUnit(String inoutUnit) { + this.inoutUnit = inoutUnit; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getInoutGoods() { + return inoutGoods; + } + + public void setInoutGoods(String inoutGoods) { + this.inoutGoods = inoutGoods; + } + + public String getAgent() { + return agent; + } + + public void setAgent(String agent) { + this.agent = agent; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyGoodsInout{" + + "id=" + id + + ", inoutDate=" + inoutDate + + ", carryPerson=" + carryPerson + + ", idCard=" + idCard + + ", inputType=" + inputType + + ", liveAddr=" + liveAddr + + ", inoutUnit=" + inoutUnit + + ", customerName=" + customerName + + ", inoutGoods=" + inoutGoods + + ", agent=" + agent + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" new file mode 100644 index 00000000..59fe6c78 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 绿化检查 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyGreenCheck implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 绿化编码 + */ + private String greenCode; + + /** + * 检查时间 + */ + private LocalDateTime checkDate; + + /** + * 检查情况 + */ + private String checkCondition; + + /** + * 处理情况 + */ + private String handleCondition; + + /** + * 检查人 + */ + private String checkPerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getGreenCode() { + return greenCode; + } + + public void setGreenCode(String greenCode) { + this.greenCode = greenCode; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckCondition() { + return checkCondition; + } + + public void setCheckCondition(String checkCondition) { + this.checkCondition = checkCondition; + } + + public String getHandleCondition() { + return handleCondition; + } + + public void setHandleCondition(String handleCondition) { + this.handleCondition = handleCondition; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyGreenCheck{" + + "id=" + id + + ", greenCode=" + greenCode + + ", checkDate=" + checkDate + + ", checkCondition=" + checkCondition + + ", handleCondition=" + handleCondition + + ", checkPerson=" + checkPerson + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" new file mode 100644 index 00000000..5ccc4819 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 绿化设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyGreenSetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 设置编码 + */ + private String settingCode; + + /** + * 设置名称 + */ + private String settingName; + + /** + * 面积 + */ + private Double area; + + /** + * 绿化时间 + */ + private LocalDateTime greenDate; + + /** + * 地点 + */ + private String greenPlace; + + /** + * 责任人 + */ + private String leader; + + /** + * 主要植被 + */ + private String mainVegetation; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public String getSettingCode() { + return settingCode; + } + + public void setSettingCode(String settingCode) { + this.settingCode = settingCode; + } + + public String getSettingName() { + return settingName; + } + + public void setSettingName(String settingName) { + this.settingName = settingName; + } + + public Double getArea() { + return area; + } + + public void setArea(Double area) { + this.area = area; + } + + public LocalDateTime getGreenDate() { + return greenDate; + } + + public void setGreenDate(LocalDateTime greenDate) { + this.greenDate = greenDate; + } + + public String getGreenPlace() { + return greenPlace; + } + + public void setGreenPlace(String greenPlace) { + this.greenPlace = greenPlace; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getMainVegetation() { + return mainVegetation; + } + + public void setMainVegetation(String mainVegetation) { + this.mainVegetation = mainVegetation; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyGreenSetting{" + + "settingCode=" + settingCode + + ", settingName=" + settingName + + ", area=" + area + + ", greenDate=" + greenDate + + ", greenPlace=" + greenPlace + + ", leader=" + leader + + ", mainVegetation=" + mainVegetation + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" new file mode 100644 index 00000000..ec64a91b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 收入明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyIncomeDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账日期 + */ + private LocalDateTime chargeDate; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 收入项目 + */ + private Integer incomeProject; + + /** + * 收入金额 + */ + private Double incomeMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Integer getIncomeProject() { + return incomeProject; + } + + public void setIncomeProject(Integer incomeProject) { + this.incomeProject = incomeProject; + } + + public Double getIncomeMoney() { + return incomeMoney; + } + + public void setIncomeMoney(Double incomeMoney) { + this.incomeMoney = incomeMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyIncomeDetail{" + + "id=" + id + + ", chargeDate=" + chargeDate + + ", estateId=" + estateId + + ", incomeProject=" + incomeProject + + ", incomeMoney=" + incomeMoney + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" new file mode 100644 index 00000000..728cc49c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 收入项目 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyIncomeProject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 收入项目id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 收入项目名称 + */ + private String incomeProjectName; + + /** + * 上级收入项目id + */ + private Integer parentIncomeId; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getIncomeProjectName() { + return incomeProjectName; + } + + public void setIncomeProjectName(String incomeProjectName) { + this.incomeProjectName = incomeProjectName; + } + + public Integer getParentIncomeId() { + return parentIncomeId; + } + + public void setParentIncomeId(Integer parentIncomeId) { + this.parentIncomeId = parentIncomeId; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyIncomeProject{" + + "id=" + id + + ", incomeProjectName=" + incomeProjectName + + ", parentIncomeId=" + parentIncomeId + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" new file mode 100644 index 00000000..07ba03a2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" @@ -0,0 +1,377 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 票据管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyNoteManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 票据编号 + */ + @TableId(value = "note_id", type = IdType.AUTO) + private String noteId; + + /** + * 票据前缀 + */ + private String notePrefix; + + /** + * 票据流水号 + */ + private String noteSerialNumber; + + /** + * 票据状态 + */ + private String noteStatus; + + /** + * 票据说明 + */ + private String noteDesc; + + /** + * 使用人id + */ + private String userId; + + /** + * 使用人姓名 + */ + private String userName; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 分配人id + */ + private String assignPersonId; + + /** + * 分配人名称 + */ + private String assignPersonName; + + /** + * 分配时间 + */ + private LocalDateTime assignDate; + + /** + * 打印人id + */ + private String printPersonId; + + /** + * 打印人名称 + */ + private String printPersonName; + + /** + * 打印时间 + */ + private LocalDateTime printDate; + + /** + * 单据类型 + */ + private String noteType; + + /** + * 收款单号 + */ + private String receiveMoneyId; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 作废人id + */ + private String invalidPersonId; + + /** + * 作废人名称 + */ + private String invalidPersonName; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 作废确认人 + */ + private String invalidConfirmPerson; + + /** + * 作废确认时间 + */ + private LocalDateTime invalidConfirmDate; + + + public String getNoteId() { + return noteId; + } + + public void setNoteId(String noteId) { + this.noteId = noteId; + } + + public String getNotePrefix() { + return notePrefix; + } + + public void setNotePrefix(String notePrefix) { + this.notePrefix = notePrefix; + } + + public String getNoteSerialNumber() { + return noteSerialNumber; + } + + public void setNoteSerialNumber(String noteSerialNumber) { + this.noteSerialNumber = noteSerialNumber; + } + + public String getNoteStatus() { + return noteStatus; + } + + public void setNoteStatus(String noteStatus) { + this.noteStatus = noteStatus; + } + + public String getNoteDesc() { + return noteDesc; + } + + public void setNoteDesc(String noteDesc) { + this.noteDesc = noteDesc; + } + + public String getUserId() { + return userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getAssignPersonId() { + return assignPersonId; + } + + public void setAssignPersonId(String assignPersonId) { + this.assignPersonId = assignPersonId; + } + + public String getAssignPersonName() { + return assignPersonName; + } + + public void setAssignPersonName(String assignPersonName) { + this.assignPersonName = assignPersonName; + } + + public LocalDateTime getAssignDate() { + return assignDate; + } + + public void setAssignDate(LocalDateTime assignDate) { + this.assignDate = assignDate; + } + + public String getPrintPersonId() { + return printPersonId; + } + + public void setPrintPersonId(String printPersonId) { + this.printPersonId = printPersonId; + } + + public String getPrintPersonName() { + return printPersonName; + } + + public void setPrintPersonName(String printPersonName) { + this.printPersonName = printPersonName; + } + + public LocalDateTime getPrintDate() { + return printDate; + } + + public void setPrintDate(LocalDateTime printDate) { + this.printDate = printDate; + } + + public String getNoteType() { + return noteType; + } + + public void setNoteType(String noteType) { + this.noteType = noteType; + } + + public String getReceiveMoneyId() { + return receiveMoneyId; + } + + public void setReceiveMoneyId(String receiveMoneyId) { + this.receiveMoneyId = receiveMoneyId; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public String getInvalidPersonId() { + return invalidPersonId; + } + + public void setInvalidPersonId(String invalidPersonId) { + this.invalidPersonId = invalidPersonId; + } + + public String getInvalidPersonName() { + return invalidPersonName; + } + + public void setInvalidPersonName(String invalidPersonName) { + this.invalidPersonName = invalidPersonName; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getInvalidConfirmPerson() { + return invalidConfirmPerson; + } + + public void setInvalidConfirmPerson(String invalidConfirmPerson) { + this.invalidConfirmPerson = invalidConfirmPerson; + } + + public LocalDateTime getInvalidConfirmDate() { + return invalidConfirmDate; + } + + public void setInvalidConfirmDate(LocalDateTime invalidConfirmDate) { + this.invalidConfirmDate = invalidConfirmDate; + } + + @Override + public String toString() { + return "WyNoteManage{" + + "noteId=" + noteId + + ", notePrefix=" + notePrefix + + ", noteSerialNumber=" + noteSerialNumber + + ", noteStatus=" + noteStatus + + ", noteDesc=" + noteDesc + + ", userId=" + userId + + ", userName=" + userName + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", assignPersonId=" + assignPersonId + + ", assignPersonName=" + assignPersonName + + ", assignDate=" + assignDate + + ", printPersonId=" + printPersonId + + ", printPersonName=" + printPersonName + + ", printDate=" + printDate + + ", noteType=" + noteType + + ", receiveMoneyId=" + receiveMoneyId + + ", invalidReason=" + invalidReason + + ", invalidPersonId=" + invalidPersonId + + ", invalidPersonName=" + invalidPersonName + + ", invalidDate=" + invalidDate + + ", invalidConfirmPerson=" + invalidConfirmPerson + + ", invalidConfirmDate=" + invalidConfirmDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" new file mode 100644 index 00000000..4d95ad3e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 支出明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyOutDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账日期 + */ + private LocalDateTime chargeDate; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 支出项目 + */ + private Integer outProject; + + /** + * 支出金额 + */ + private Double outMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Integer getOutProject() { + return outProject; + } + + public void setOutProject(Integer outProject) { + this.outProject = outProject; + } + + public Double getOutMoney() { + return outMoney; + } + + public void setOutMoney(Double outMoney) { + this.outMoney = outMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyOutDetail{" + + "id=" + id + + ", chargeDate=" + chargeDate + + ", estateId=" + estateId + + ", outProject=" + outProject + + ", outMoney=" + outMoney + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" new file mode 100644 index 00000000..51205e58 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 支出项目 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyOutProject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 支出项目id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 支出项目名称 + */ + private String outProjectName; + + /** + * 上级支出项目id + */ + private Integer parentOutProjectId; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOutProjectName() { + return outProjectName; + } + + public void setOutProjectName(String outProjectName) { + this.outProjectName = outProjectName; + } + + public Integer getParentOutProjectId() { + return parentOutProjectId; + } + + public void setParentOutProjectId(Integer parentOutProjectId) { + this.parentOutProjectId = parentOutProjectId; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyOutProject{" + + "id=" + id + + ", outProjectName=" + outProjectName + + ", parentOutProjectId=" + parentOutProjectId + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" new file mode 100644 index 00000000..85d84f0d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 图纸管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyPictureManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 图纸名称 + */ + private String pictureName; + + /** + * 图纸类型 + */ + private Long pictureType; + + /** + * 说明 + */ + private String desc; + + /** + * 图纸附件 + */ + private String pictureAttach; + + /** + * 所属公司 + */ + private String company; + + /** + * 上传人 + */ + private String uploadPerson; + + /** + * 上传时间 + */ + private LocalDateTime uploadDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPictureName() { + return pictureName; + } + + public void setPictureName(String pictureName) { + this.pictureName = pictureName; + } + + public Long getPictureType() { + return pictureType; + } + + public void setPictureType(Long pictureType) { + this.pictureType = pictureType; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getPictureAttach() { + return pictureAttach; + } + + public void setPictureAttach(String pictureAttach) { + this.pictureAttach = pictureAttach; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getUploadPerson() { + return uploadPerson; + } + + public void setUploadPerson(String uploadPerson) { + this.uploadPerson = uploadPerson; + } + + public LocalDateTime getUploadDate() { + return uploadDate; + } + + public void setUploadDate(LocalDateTime uploadDate) { + this.uploadDate = uploadDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyPictureManage{" + + "id=" + id + + ", pictureName=" + pictureName + + ", pictureType=" + pictureType + + ", desc=" + desc + + ", pictureAttach=" + pictureAttach + + ", company=" + company + + ", uploadPerson=" + uploadPerson + + ", uploadDate=" + uploadDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" new file mode 100644 index 00000000..1b4ec4eb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 物业接管工程明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyPropertyTakeoverDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 接管细节id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属接管id + */ + private Integer takeoverId; + + /** + * 工程项目名称 + */ + private String projectName; + + /** + * 验收方 + */ + private String checked; + + /** + * 验收日期 + */ + private LocalDateTime checkedDate; + + /** + * 验收结果 + */ + private String checkedResult; + + /** + * 整改完成日期 + */ + private LocalDateTime finishDate; + + /** + * 整改完成情况 + */ + private String finishCondition; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getTakeoverId() { + return takeoverId; + } + + public void setTakeoverId(Integer takeoverId) { + this.takeoverId = takeoverId; + } + + public String getProjectName() { + return projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getChecked() { + return checked; + } + + public void setChecked(String checked) { + this.checked = checked; + } + + public LocalDateTime getCheckedDate() { + return checkedDate; + } + + public void setCheckedDate(LocalDateTime checkedDate) { + this.checkedDate = checkedDate; + } + + public String getCheckedResult() { + return checkedResult; + } + + public void setCheckedResult(String checkedResult) { + this.checkedResult = checkedResult; + } + + public LocalDateTime getFinishDate() { + return finishDate; + } + + public void setFinishDate(LocalDateTime finishDate) { + this.finishDate = finishDate; + } + + public String getFinishCondition() { + return finishCondition; + } + + public void setFinishCondition(String finishCondition) { + this.finishCondition = finishCondition; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "WyPropertyTakeoverDetail{" + + "id=" + id + + ", takeoverId=" + takeoverId + + ", projectName=" + projectName + + ", checked=" + checked + + ", checkedDate=" + checkedDate + + ", checkedResult=" + checkedResult + + ", finishDate=" + finishDate + + ", finishCondition=" + finishCondition + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" new file mode 100644 index 00000000..9314a2ab --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 物业接管概要 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyPropertyTakeoverSchema implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 接管单号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 接管标题 + */ + private String takeoverTitle; + + /** + * 所属楼盘 + */ + private Integer estateId; + + /** + * 接管备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建日期 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTakeoverTitle() { + return takeoverTitle; + } + + public void setTakeoverTitle(String takeoverTitle) { + this.takeoverTitle = takeoverTitle; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "WyPropertyTakeoverSchema{" + + "id=" + id + + ", takeoverTitle=" + takeoverTitle + + ", estateId=" + estateId + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" new file mode 100644 index 00000000..5be1f110 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 续费短信提醒日志 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyRenewMsgRemindLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Long id; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 接受号码 + */ + private String receivePhone; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 提醒天数 + */ + private Integer remindDays; + + /** + * 房产名称 + */ + private String cellName; + + /** + * 发送人id + */ + private String sendPersonId; + + /** + * 发送人姓名 + */ + private String sendPersonName; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getReceivePhone() { + return receivePhone; + } + + public void setReceivePhone(String receivePhone) { + this.receivePhone = receivePhone; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public Integer getRemindDays() { + return remindDays; + } + + public void setRemindDays(Integer remindDays) { + this.remindDays = remindDays; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getSendPersonId() { + return sendPersonId; + } + + public void setSendPersonId(String sendPersonId) { + this.sendPersonId = sendPersonId; + } + + public String getSendPersonName() { + return sendPersonName; + } + + public void setSendPersonName(String sendPersonName) { + this.sendPersonName = sendPersonName; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + @Override + public String toString() { + return "WyRenewMsgRemindLog{" + + "id=" + id + + ", cellId=" + cellId + + ", moneyId=" + moneyId + + ", receivePhone=" + receivePhone + + ", moneyStopDate=" + moneyStopDate + + ", remindDays=" + remindDays + + ", cellName=" + cellName + + ", sendPersonId=" + sendPersonId + + ", sendPersonName=" + sendPersonName + + ", sendDate=" + sendDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" new file mode 100644 index 00000000..537f8f96 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 保安安排 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WySecurityArrange implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 开始日期 + */ + private LocalDateTime startDate; + + /** + * 结束日期 + */ + private LocalDateTime stopDate; + + /** + * 班次 + */ + private String classes; + + /** + * 时段 + */ + private String timeFrame; + + /** + * 地段 + */ + private String district; + + /** + * 值班人员 + */ + private String waterkeeper; + + /** + * 岗位 + */ + private String job; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getClasses() { + return classes; + } + + public void setClasses(String classes) { + this.classes = classes; + } + + public String getTimeFrame() { + return timeFrame; + } + + public void setTimeFrame(String timeFrame) { + this.timeFrame = timeFrame; + } + + public String getDistrict() { + return district; + } + + public void setDistrict(String district) { + this.district = district; + } + + public String getWaterkeeper() { + return waterkeeper; + } + + public void setWaterkeeper(String waterkeeper) { + this.waterkeeper = waterkeeper; + } + + public String getJob() { + return job; + } + + public void setJob(String job) { + this.job = job; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WySecurityArrange{" + + "id=" + id + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", classes=" + classes + + ", timeFrame=" + timeFrame + + ", district=" + district + + ", waterkeeper=" + waterkeeper + + ", job=" + job + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" new file mode 100644 index 00000000..fcc65100 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" @@ -0,0 +1,195 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 客服收银组 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyServiceCashierGroup implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 客服组名称 + */ + private String name; + + /** + * 包含楼宇编码 + */ + private String includeBuildingCode; + + /** + * 包含楼宇名称 + */ + private String includeBuildingName; + + /** + * 包含客服编码 + */ + private String includeServiceCode; + + /** + * 包含客服名称 + */ + private String includeServiceName; + + /** + * 组说明 + */ + private String desc; + + /** + * 所属公司 + */ + private String company; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getIncludeBuildingCode() { + return includeBuildingCode; + } + + public void setIncludeBuildingCode(String includeBuildingCode) { + this.includeBuildingCode = includeBuildingCode; + } + + public String getIncludeBuildingName() { + return includeBuildingName; + } + + public void setIncludeBuildingName(String includeBuildingName) { + this.includeBuildingName = includeBuildingName; + } + + public String getIncludeServiceCode() { + return includeServiceCode; + } + + public void setIncludeServiceCode(String includeServiceCode) { + this.includeServiceCode = includeServiceCode; + } + + public String getIncludeServiceName() { + return includeServiceName; + } + + public void setIncludeServiceName(String includeServiceName) { + this.includeServiceName = includeServiceName; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyServiceCashierGroup{" + + "id=" + id + + ", name=" + name + + ", includeBuildingCode=" + includeBuildingCode + + ", includeBuildingName=" + includeBuildingName + + ", includeServiceCode=" + includeServiceCode + + ", includeServiceName=" + includeServiceName + + ", desc=" + desc + + ", company=" + company + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" new file mode 100644 index 00000000..d35d6215 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 物业接管资料明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyTakeoverDataDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 接管资料id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属接管id + */ + private Integer takeoverId; + + /** + * 资料名称 + */ + private String dataName; + + /** + * 资料份数 + */ + private Integer dataCopies; + + /** + * 资料页数 + */ + private Integer dataPages; + + /** + * 资料分类 + */ + private Long dataType; + + /** + * 档案号 + */ + private String fileNumber; + + /** + * 交出人 + */ + private String handoverPerson; + + /** + * 接收人 + */ + private String receivePerson; + + /** + * 接受日期 + */ + private LocalDateTime receiveDate; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getTakeoverId() { + return takeoverId; + } + + public void setTakeoverId(Integer takeoverId) { + this.takeoverId = takeoverId; + } + + public String getDataName() { + return dataName; + } + + public void setDataName(String dataName) { + this.dataName = dataName; + } + + public Integer getDataCopies() { + return dataCopies; + } + + public void setDataCopies(Integer dataCopies) { + this.dataCopies = dataCopies; + } + + public Integer getDataPages() { + return dataPages; + } + + public void setDataPages(Integer dataPages) { + this.dataPages = dataPages; + } + + public Long getDataType() { + return dataType; + } + + public void setDataType(Long dataType) { + this.dataType = dataType; + } + + public String getFileNumber() { + return fileNumber; + } + + public void setFileNumber(String fileNumber) { + this.fileNumber = fileNumber; + } + + public String getHandoverPerson() { + return handoverPerson; + } + + public void setHandoverPerson(String handoverPerson) { + this.handoverPerson = handoverPerson; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "WyTakeoverDataDetail{" + + "id=" + id + + ", takeoverId=" + takeoverId + + ", dataName=" + dataName + + ", dataCopies=" + dataCopies + + ", dataPages=" + dataPages + + ", dataType=" + dataType + + ", fileNumber=" + fileNumber + + ", handoverPerson=" + handoverPerson + + ", receivePerson=" + receivePerson + + ", receiveDate=" + receiveDate + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" new file mode 100644 index 00000000..c17a838e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" @@ -0,0 +1,166 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 植被信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyVegetationInformation implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 植被编号 + */ + @TableId(value = "vegetation_id", type = IdType.AUTO) + private String vegetationId; + + /** + * 植被名称 + */ + private String vegetationName; + + /** + * 种类 + */ + private String vegetationType; + + /** + * 树龄 + */ + private Integer vegetationAge; + + /** + * 数量 + */ + private Integer vegetationNumber; + + /** + * 单位 + */ + private String vegetationUnit; + + /** + * 习性 + */ + private String vegetationHabit; + + /** + * 特点 + */ + private String vegetationFeature; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public String getVegetationId() { + return vegetationId; + } + + public void setVegetationId(String vegetationId) { + this.vegetationId = vegetationId; + } + + public String getVegetationName() { + return vegetationName; + } + + public void setVegetationName(String vegetationName) { + this.vegetationName = vegetationName; + } + + public String getVegetationType() { + return vegetationType; + } + + public void setVegetationType(String vegetationType) { + this.vegetationType = vegetationType; + } + + public Integer getVegetationAge() { + return vegetationAge; + } + + public void setVegetationAge(Integer vegetationAge) { + this.vegetationAge = vegetationAge; + } + + public Integer getVegetationNumber() { + return vegetationNumber; + } + + public void setVegetationNumber(Integer vegetationNumber) { + this.vegetationNumber = vegetationNumber; + } + + public String getVegetationUnit() { + return vegetationUnit; + } + + public void setVegetationUnit(String vegetationUnit) { + this.vegetationUnit = vegetationUnit; + } + + public String getVegetationHabit() { + return vegetationHabit; + } + + public void setVegetationHabit(String vegetationHabit) { + this.vegetationHabit = vegetationHabit; + } + + public String getVegetationFeature() { + return vegetationFeature; + } + + public void setVegetationFeature(String vegetationFeature) { + this.vegetationFeature = vegetationFeature; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyVegetationInformation{" + + "vegetationId=" + vegetationId + + ", vegetationName=" + vegetationName + + ", vegetationType=" + vegetationType + + ", vegetationAge=" + vegetationAge + + ", vegetationNumber=" + vegetationNumber + + ", vegetationUnit=" + vegetationUnit + + ", vegetationHabit=" + vegetationHabit + + ", vegetationFeature=" + vegetationFeature + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" new file mode 100644 index 00000000..14ddcd88 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" @@ -0,0 +1,195 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 来访管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyVisitManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 来访时间 + */ + private LocalDateTime visitDate; + + /** + * 离开时间 + */ + private LocalDateTime leaveDate; + + /** + * 来访人 + */ + private String visitPerson; + + /** + * 身份证号 + */ + private String idCard; + + /** + * 来访人住址 + */ + private String visitAddr; + + /** + * 来访事由 + */ + private String visitReason; + + /** + * 被访人 + */ + private String visitedPerson; + + /** + * 所住地址 + */ + private String visitedReason; + + /** + * 值班人 + */ + private String agent; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getVisitDate() { + return visitDate; + } + + public void setVisitDate(LocalDateTime visitDate) { + this.visitDate = visitDate; + } + + public LocalDateTime getLeaveDate() { + return leaveDate; + } + + public void setLeaveDate(LocalDateTime leaveDate) { + this.leaveDate = leaveDate; + } + + public String getVisitPerson() { + return visitPerson; + } + + public void setVisitPerson(String visitPerson) { + this.visitPerson = visitPerson; + } + + public String getIdCard() { + return idCard; + } + + public void setIdCard(String idCard) { + this.idCard = idCard; + } + + public String getVisitAddr() { + return visitAddr; + } + + public void setVisitAddr(String visitAddr) { + this.visitAddr = visitAddr; + } + + public String getVisitReason() { + return visitReason; + } + + public void setVisitReason(String visitReason) { + this.visitReason = visitReason; + } + + public String getVisitedPerson() { + return visitedPerson; + } + + public void setVisitedPerson(String visitedPerson) { + this.visitedPerson = visitedPerson; + } + + public String getVisitedReason() { + return visitedReason; + } + + public void setVisitedReason(String visitedReason) { + this.visitedReason = visitedReason; + } + + public String getAgent() { + return agent; + } + + public void setAgent(String agent) { + this.agent = agent; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyVisitManage{" + + "id=" + id + + ", visitDate=" + visitDate + + ", leaveDate=" + leaveDate + + ", visitPerson=" + visitPerson + + ", idCard=" + idCard + + ", visitAddr=" + visitAddr + + ", visitReason=" + visitReason + + ", visitedPerson=" + visitedPerson + + ", visitedReason=" + visitedReason + + ", agent=" + agent + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" new file mode 100644 index 00000000..b737e8d5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" @@ -0,0 +1,433 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主装修 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhConstomerDecorate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private String cellId; + + /** + * 申请人 + */ + private String proposer; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 申请日期 + */ + private LocalDateTime proposerDate; + + /** + * 装修内容 + */ + private String decorateContent; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 装修保证金 + */ + private Double decorateEnsureMoney; + + /** + * 审批日期 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 负责人电话 + */ + private String leaderPhone; + + /** + * 施工单位 + */ + private String executeCompany; + + /** + * 施工开始日期 + */ + private LocalDateTime executeStartDate; + + /** + * 负责人 + */ + private String leader; + + /** + * 验收人 + */ + private String checkedPerson; + + /** + * 施工截止日期 + */ + private LocalDateTime executeStopDate; + + /** + * 验收意见 + */ + private String checkedAdvice; + + /** + * 验收日期 + */ + private LocalDateTime checkedDate; + + /** + * 备注 + */ + private String remark; + + /** + * 状态 + */ + private String status; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 标识 + */ + private String identify; + + /** + * 确认人 + */ + private String confirmPerson; + + /** + * 确认时间 + */ + private LocalDateTime confirmDate; + + /** + * 装修附件 + */ + private String decorateAttach; + + /** + * 违约金 + */ + private Double againstMoney; + + /** + * 作废人 + */ + private String invalidPerson; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCellId() { + return cellId; + } + + public void setCellId(String cellId) { + this.cellId = cellId; + } + + public String getProposer() { + return proposer; + } + + public void setProposer(String proposer) { + this.proposer = proposer; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public LocalDateTime getProposerDate() { + return proposerDate; + } + + public void setProposerDate(LocalDateTime proposerDate) { + this.proposerDate = proposerDate; + } + + public String getDecorateContent() { + return decorateContent; + } + + public void setDecorateContent(String decorateContent) { + this.decorateContent = decorateContent; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public Double getDecorateEnsureMoney() { + return decorateEnsureMoney; + } + + public void setDecorateEnsureMoney(Double decorateEnsureMoney) { + this.decorateEnsureMoney = decorateEnsureMoney; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getLeaderPhone() { + return leaderPhone; + } + + public void setLeaderPhone(String leaderPhone) { + this.leaderPhone = leaderPhone; + } + + public String getExecuteCompany() { + return executeCompany; + } + + public void setExecuteCompany(String executeCompany) { + this.executeCompany = executeCompany; + } + + public LocalDateTime getExecuteStartDate() { + return executeStartDate; + } + + public void setExecuteStartDate(LocalDateTime executeStartDate) { + this.executeStartDate = executeStartDate; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getCheckedPerson() { + return checkedPerson; + } + + public void setCheckedPerson(String checkedPerson) { + this.checkedPerson = checkedPerson; + } + + public LocalDateTime getExecuteStopDate() { + return executeStopDate; + } + + public void setExecuteStopDate(LocalDateTime executeStopDate) { + this.executeStopDate = executeStopDate; + } + + public String getCheckedAdvice() { + return checkedAdvice; + } + + public void setCheckedAdvice(String checkedAdvice) { + this.checkedAdvice = checkedAdvice; + } + + public LocalDateTime getCheckedDate() { + return checkedDate; + } + + public void setCheckedDate(LocalDateTime checkedDate) { + this.checkedDate = checkedDate; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getIdentify() { + return identify; + } + + public void setIdentify(String identify) { + this.identify = identify; + } + + public String getConfirmPerson() { + return confirmPerson; + } + + public void setConfirmPerson(String confirmPerson) { + this.confirmPerson = confirmPerson; + } + + public LocalDateTime getConfirmDate() { + return confirmDate; + } + + public void setConfirmDate(LocalDateTime confirmDate) { + this.confirmDate = confirmDate; + } + + public String getDecorateAttach() { + return decorateAttach; + } + + public void setDecorateAttach(String decorateAttach) { + this.decorateAttach = decorateAttach; + } + + public Double getAgainstMoney() { + return againstMoney; + } + + public void setAgainstMoney(Double againstMoney) { + this.againstMoney = againstMoney; + } + + public String getInvalidPerson() { + return invalidPerson; + } + + public void setInvalidPerson(String invalidPerson) { + this.invalidPerson = invalidPerson; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + @Override + public String toString() { + return "ZhConstomerDecorate{" + + "id=" + id + + ", cellId=" + cellId + + ", proposer=" + proposer + + ", phoneNumber=" + phoneNumber + + ", proposerDate=" + proposerDate + + ", decorateContent=" + decorateContent + + ", checkPerson=" + checkPerson + + ", decorateEnsureMoney=" + decorateEnsureMoney + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", leaderPhone=" + leaderPhone + + ", executeCompany=" + executeCompany + + ", executeStartDate=" + executeStartDate + + ", leader=" + leader + + ", checkedPerson=" + checkedPerson + + ", executeStopDate=" + executeStopDate + + ", checkedAdvice=" + checkedAdvice + + ", checkedDate=" + checkedDate + + ", remark=" + remark + + ", status=" + status + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", identify=" + identify + + ", confirmPerson=" + confirmPerson + + ", confirmDate=" + confirmDate + + ", decorateAttach=" + decorateAttach + + ", againstMoney=" + againstMoney + + ", invalidPerson=" + invalidPerson + + ", invalidDate=" + invalidDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" new file mode 100644 index 00000000..41d71f84 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主投诉 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhConsumerComplain implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private String cellId; + + /** + * 投诉人 + */ + private String complainPerson; + + /** + * 投诉电话 + */ + private String complainPhone; + + /** + * 投诉日期 + */ + private LocalDateTime complainDate; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 接待人 + */ + private String receptionPerson; + + /** + * 投诉类别 + */ + private String complainType; + + /** + * 状态 + */ + private String status; + + /** + * 开始受理人 + */ + private String startAcceptPerson; + + /** + * 开始受理时间 + */ + private LocalDateTime startAcceptDate; + + /** + * 受理结果 + */ + private String acceptResult; + + /** + * 受理完成人 + */ + private String acceptFinishPerson; + + /** + * 受理完成时间 + */ + private LocalDateTime acceptFinishDate; + + /** + * 数据来源 + */ + private String datasource; + + /** + * 参考附件 + */ + private String referAttach; + + /** + * 回访人 + */ + private String returnVisitPerson; + + /** + * 回访时间 + */ + private LocalDateTime returnVisitDate; + + /** + * 是否满意 + */ + private String isSatisfy; + + /** + * 业主评价 + */ + private String customerEvaluate; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCellId() { + return cellId; + } + + public void setCellId(String cellId) { + this.cellId = cellId; + } + + public String getComplainPerson() { + return complainPerson; + } + + public void setComplainPerson(String complainPerson) { + this.complainPerson = complainPerson; + } + + public String getComplainPhone() { + return complainPhone; + } + + public void setComplainPhone(String complainPhone) { + this.complainPhone = complainPhone; + } + + public LocalDateTime getComplainDate() { + return complainDate; + } + + public void setComplainDate(LocalDateTime complainDate) { + this.complainDate = complainDate; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getReceptionPerson() { + return receptionPerson; + } + + public void setReceptionPerson(String receptionPerson) { + this.receptionPerson = receptionPerson; + } + + public String getComplainType() { + return complainType; + } + + public void setComplainType(String complainType) { + this.complainType = complainType; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getStartAcceptPerson() { + return startAcceptPerson; + } + + public void setStartAcceptPerson(String startAcceptPerson) { + this.startAcceptPerson = startAcceptPerson; + } + + public LocalDateTime getStartAcceptDate() { + return startAcceptDate; + } + + public void setStartAcceptDate(LocalDateTime startAcceptDate) { + this.startAcceptDate = startAcceptDate; + } + + public String getAcceptResult() { + return acceptResult; + } + + public void setAcceptResult(String acceptResult) { + this.acceptResult = acceptResult; + } + + public String getAcceptFinishPerson() { + return acceptFinishPerson; + } + + public void setAcceptFinishPerson(String acceptFinishPerson) { + this.acceptFinishPerson = acceptFinishPerson; + } + + public LocalDateTime getAcceptFinishDate() { + return acceptFinishDate; + } + + public void setAcceptFinishDate(LocalDateTime acceptFinishDate) { + this.acceptFinishDate = acceptFinishDate; + } + + public String getDatasource() { + return datasource; + } + + public void setDatasource(String datasource) { + this.datasource = datasource; + } + + public String getReferAttach() { + return referAttach; + } + + public void setReferAttach(String referAttach) { + this.referAttach = referAttach; + } + + public String getReturnVisitPerson() { + return returnVisitPerson; + } + + public void setReturnVisitPerson(String returnVisitPerson) { + this.returnVisitPerson = returnVisitPerson; + } + + public LocalDateTime getReturnVisitDate() { + return returnVisitDate; + } + + public void setReturnVisitDate(LocalDateTime returnVisitDate) { + this.returnVisitDate = returnVisitDate; + } + + public String getIsSatisfy() { + return isSatisfy; + } + + public void setIsSatisfy(String isSatisfy) { + this.isSatisfy = isSatisfy; + } + + public String getCustomerEvaluate() { + return customerEvaluate; + } + + public void setCustomerEvaluate(String customerEvaluate) { + this.customerEvaluate = customerEvaluate; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "ZhConsumerComplain{" + + "id=" + id + + ", cellId=" + cellId + + ", complainPerson=" + complainPerson + + ", complainPhone=" + complainPhone + + ", complainDate=" + complainDate + + ", phoneNumber=" + phoneNumber + + ", receptionPerson=" + receptionPerson + + ", complainType=" + complainType + + ", status=" + status + + ", startAcceptPerson=" + startAcceptPerson + + ", startAcceptDate=" + startAcceptDate + + ", acceptResult=" + acceptResult + + ", acceptFinishPerson=" + acceptFinishPerson + + ", acceptFinishDate=" + acceptFinishDate + + ", datasource=" + datasource + + ", referAttach=" + referAttach + + ", returnVisitPerson=" + returnVisitPerson + + ", returnVisitDate=" + returnVisitDate + + ", isSatisfy=" + isSatisfy + + ", customerEvaluate=" + customerEvaluate + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" new file mode 100644 index 00000000..335ee659 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主服务_办理结果 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCsHandleResult implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属服务单id + */ + private Integer serviceId; + + /** + * 办理人id + */ + private String transactorId; + + /** + * 办理人名称 + */ + private String transactorName; + + /** + * 是否负责人 + */ + private String isLeader; + + /** + * 相关单位 + */ + private String relationCompany; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 开始办理时间 + */ + private LocalDateTime handleStartDate; + + /** + * 完成办理时间 + */ + private LocalDateTime handleStopDate; + + /** + * 办理结果 + */ + private String handleResult; + + /** + * 办理完成附件 + */ + private String handleFinishAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getServiceId() { + return serviceId; + } + + public void setServiceId(Integer serviceId) { + this.serviceId = serviceId; + } + + public String getTransactorId() { + return transactorId; + } + + public void setTransactorId(String transactorId) { + this.transactorId = transactorId; + } + + public String getTransactorName() { + return transactorName; + } + + public void setTransactorName(String transactorName) { + this.transactorName = transactorName; + } + + public String getIsLeader() { + return isLeader; + } + + public void setIsLeader(String isLeader) { + this.isLeader = isLeader; + } + + public String getRelationCompany() { + return relationCompany; + } + + public void setRelationCompany(String relationCompany) { + this.relationCompany = relationCompany; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public LocalDateTime getHandleStartDate() { + return handleStartDate; + } + + public void setHandleStartDate(LocalDateTime handleStartDate) { + this.handleStartDate = handleStartDate; + } + + public LocalDateTime getHandleStopDate() { + return handleStopDate; + } + + public void setHandleStopDate(LocalDateTime handleStopDate) { + this.handleStopDate = handleStopDate; + } + + public String getHandleResult() { + return handleResult; + } + + public void setHandleResult(String handleResult) { + this.handleResult = handleResult; + } + + public String getHandleFinishAttach() { + return handleFinishAttach; + } + + public void setHandleFinishAttach(String handleFinishAttach) { + this.handleFinishAttach = handleFinishAttach; + } + + @Override + public String toString() { + return "ZhCsHandleResult{" + + "id=" + id + + ", serviceId=" + serviceId + + ", transactorId=" + transactorId + + ", transactorName=" + transactorName + + ", isLeader=" + isLeader + + ", relationCompany=" + relationCompany + + ", phoneNumber=" + phoneNumber + + ", handleStartDate=" + handleStartDate + + ", handleStopDate=" + handleStopDate + + ", handleResult=" + handleResult + + ", handleFinishAttach=" + handleFinishAttach + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" new file mode 100644 index 00000000..1e2facea --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主服务_办理进度 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCsHandleSpeed implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 服务单id + */ + private Integer serviceId; + + /** + * 办理人 + */ + private String transactorName; + + /** + * 办理时间 + */ + private LocalDateTime transactorDate; + + /** + * 办理内容 + */ + private String transactorContent; + + /** + * 记录人id + */ + private String recorderId; + + /** + * 记录人名称 + */ + private String recorderName; + + /** + * 记录时间 + */ + private LocalDateTime recorderDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getServiceId() { + return serviceId; + } + + public void setServiceId(Integer serviceId) { + this.serviceId = serviceId; + } + + public String getTransactorName() { + return transactorName; + } + + public void setTransactorName(String transactorName) { + this.transactorName = transactorName; + } + + public LocalDateTime getTransactorDate() { + return transactorDate; + } + + public void setTransactorDate(LocalDateTime transactorDate) { + this.transactorDate = transactorDate; + } + + public String getTransactorContent() { + return transactorContent; + } + + public void setTransactorContent(String transactorContent) { + this.transactorContent = transactorContent; + } + + public String getRecorderId() { + return recorderId; + } + + public void setRecorderId(String recorderId) { + this.recorderId = recorderId; + } + + public String getRecorderName() { + return recorderName; + } + + public void setRecorderName(String recorderName) { + this.recorderName = recorderName; + } + + public LocalDateTime getRecorderDate() { + return recorderDate; + } + + public void setRecorderDate(LocalDateTime recorderDate) { + this.recorderDate = recorderDate; + } + + @Override + public String toString() { + return "ZhCsHandleSpeed{" + + "id=" + id + + ", serviceId=" + serviceId + + ", transactorName=" + transactorName + + ", transactorDate=" + transactorDate + + ", transactorContent=" + transactorContent + + ", recorderId=" + recorderId + + ", recorderName=" + recorderName + + ", recorderDate=" + recorderDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" new file mode 100644 index 00000000..ae9f7824 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" @@ -0,0 +1,489 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomer implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 业主编码 + */ + private String customerCode; + + /** + * 业主密码 + */ + private String customerPwd; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 业主生日 + */ + private String customerBirthday; + + /** + * 业主性别 + */ + private String customerGender; + + /** + * 开户行 + */ + private String openBank; + + /** + * 国籍 + */ + private String nationality; + + /** + * 银行账号 + */ + private String bankAccount; + + /** + * 学历 + */ + private String education; + + /** + * 证件号码 + */ + private String certificateNumber; + + /** + * 证件类型 + */ + private String certificateType; + + /** + * 工作单位 + */ + private String workPlace; + + /** + * 职务 + */ + private String customerDuty; + + /** + * 所在派出所 + */ + private String police; + + /** + * 民族 + */ + private String nation; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 籍贯 + */ + private String nativePlace; + + /** + * 联系地址 + */ + private String address; + + /** + * 邮编 + */ + private String postCode; + + /** + * 紧急联系人姓名 + */ + private String urgencyUserName; + + /** + * 紧急联系人电话 + */ + private String urgencyUserPhone; + + /** + * 紧急联系人地址 + */ + private String urgencyUserAddress; + + /** + * 业主状态 + */ + private String customerStatus; + + /** + * 业主类型 + */ + private String customerType; + + /** + * 照片 + */ + private String picture; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 所属公司 + */ + private String company; + + /** + * 是否银行代扣 + */ + private String isBankWithhold; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCustomerCode() { + return customerCode; + } + + public void setCustomerCode(String customerCode) { + this.customerCode = customerCode; + } + + public String getCustomerPwd() { + return customerPwd; + } + + public void setCustomerPwd(String customerPwd) { + this.customerPwd = customerPwd; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getCustomerBirthday() { + return customerBirthday; + } + + public void setCustomerBirthday(String customerBirthday) { + this.customerBirthday = customerBirthday; + } + + public String getCustomerGender() { + return customerGender; + } + + public void setCustomerGender(String customerGender) { + this.customerGender = customerGender; + } + + public String getOpenBank() { + return openBank; + } + + public void setOpenBank(String openBank) { + this.openBank = openBank; + } + + public String getNationality() { + return nationality; + } + + public void setNationality(String nationality) { + this.nationality = nationality; + } + + public String getBankAccount() { + return bankAccount; + } + + public void setBankAccount(String bankAccount) { + this.bankAccount = bankAccount; + } + + public String getEducation() { + return education; + } + + public void setEducation(String education) { + this.education = education; + } + + public String getCertificateNumber() { + return certificateNumber; + } + + public void setCertificateNumber(String certificateNumber) { + this.certificateNumber = certificateNumber; + } + + public String getCertificateType() { + return certificateType; + } + + public void setCertificateType(String certificateType) { + this.certificateType = certificateType; + } + + public String getWorkPlace() { + return workPlace; + } + + public void setWorkPlace(String workPlace) { + this.workPlace = workPlace; + } + + public String getCustomerDuty() { + return customerDuty; + } + + public void setCustomerDuty(String customerDuty) { + this.customerDuty = customerDuty; + } + + public String getPolice() { + return police; + } + + public void setPolice(String police) { + this.police = police; + } + + public String getNation() { + return nation; + } + + public void setNation(String nation) { + this.nation = nation; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getNativePlace() { + return nativePlace; + } + + public void setNativePlace(String nativePlace) { + this.nativePlace = nativePlace; + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address; + } + + public String getPostCode() { + return postCode; + } + + public void setPostCode(String postCode) { + this.postCode = postCode; + } + + public String getUrgencyUserName() { + return urgencyUserName; + } + + public void setUrgencyUserName(String urgencyUserName) { + this.urgencyUserName = urgencyUserName; + } + + public String getUrgencyUserPhone() { + return urgencyUserPhone; + } + + public void setUrgencyUserPhone(String urgencyUserPhone) { + this.urgencyUserPhone = urgencyUserPhone; + } + + public String getUrgencyUserAddress() { + return urgencyUserAddress; + } + + public void setUrgencyUserAddress(String urgencyUserAddress) { + this.urgencyUserAddress = urgencyUserAddress; + } + + public String getCustomerStatus() { + return customerStatus; + } + + public void setCustomerStatus(String customerStatus) { + this.customerStatus = customerStatus; + } + + public String getCustomerType() { + return customerType; + } + + public void setCustomerType(String customerType) { + this.customerType = customerType; + } + + public String getPicture() { + return picture; + } + + public void setPicture(String picture) { + this.picture = picture; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getIsBankWithhold() { + return isBankWithhold; + } + + public void setIsBankWithhold(String isBankWithhold) { + this.isBankWithhold = isBankWithhold; + } + + @Override + public String toString() { + return "ZhCustomer{" + + "id=" + id + + ", customerCode=" + customerCode + + ", customerPwd=" + customerPwd + + ", customerName=" + customerName + + ", customerBirthday=" + customerBirthday + + ", customerGender=" + customerGender + + ", openBank=" + openBank + + ", nationality=" + nationality + + ", bankAccount=" + bankAccount + + ", education=" + education + + ", certificateNumber=" + certificateNumber + + ", certificateType=" + certificateType + + ", workPlace=" + workPlace + + ", customerDuty=" + customerDuty + + ", police=" + police + + ", nation=" + nation + + ", phoneNumber=" + phoneNumber + + ", nativePlace=" + nativePlace + + ", address=" + address + + ", postCode=" + postCode + + ", urgencyUserName=" + urgencyUserName + + ", urgencyUserPhone=" + urgencyUserPhone + + ", urgencyUserAddress=" + urgencyUserAddress + + ", customerStatus=" + customerStatus + + ", customerType=" + customerType + + ", picture=" + picture + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", company=" + company + + ", isBankWithhold=" + isBankWithhold + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" new file mode 100644 index 00000000..a668aa55 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" @@ -0,0 +1,405 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主请修 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerAskFix implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编码 + */ + private String cellId; + + /** + * 申请人 + */ + private String proposer; + + /** + * 申请时间 + */ + private LocalDateTime proposerDate; + + /** + * 请修内容 + */ + private String askFixContent; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 修理费用 + */ + private Double fixMoney; + + /** + * 审批日期 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 负责人电话 + */ + private String leaderPhone; + + /** + * 施工单位 + */ + private String executeCompany; + + /** + * 施工开始日期 + */ + private LocalDateTime executeStartDate; + + /** + * 负责人 + */ + private String leader; + + /** + * 验收人 + */ + private String checkedPerson; + + /** + * 施工结束日期 + */ + private LocalDateTime executeStopDate; + + /** + * 验收日期 + */ + private LocalDateTime checkedDate; + + /** + * 验收意见 + */ + private String checkedAdvice; + + /** + * 备注 + */ + private String remark; + + /** + * 状态 + */ + private String status; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 标识 + */ + private String identify; + + /** + * 确认人 + */ + private String confirmPerson; + + /** + * 确认时间 + */ + private LocalDateTime confirmDate; + + /** + * 验收附件 + */ + private String checkedAttach; + + /** + * 参考附件 + */ + private String referAttach; + + /** + * 联系电话 + */ + private String phoneNumber; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCellId() { + return cellId; + } + + public void setCellId(String cellId) { + this.cellId = cellId; + } + + public String getProposer() { + return proposer; + } + + public void setProposer(String proposer) { + this.proposer = proposer; + } + + public LocalDateTime getProposerDate() { + return proposerDate; + } + + public void setProposerDate(LocalDateTime proposerDate) { + this.proposerDate = proposerDate; + } + + public String getAskFixContent() { + return askFixContent; + } + + public void setAskFixContent(String askFixContent) { + this.askFixContent = askFixContent; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public Double getFixMoney() { + return fixMoney; + } + + public void setFixMoney(Double fixMoney) { + this.fixMoney = fixMoney; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getLeaderPhone() { + return leaderPhone; + } + + public void setLeaderPhone(String leaderPhone) { + this.leaderPhone = leaderPhone; + } + + public String getExecuteCompany() { + return executeCompany; + } + + public void setExecuteCompany(String executeCompany) { + this.executeCompany = executeCompany; + } + + public LocalDateTime getExecuteStartDate() { + return executeStartDate; + } + + public void setExecuteStartDate(LocalDateTime executeStartDate) { + this.executeStartDate = executeStartDate; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getCheckedPerson() { + return checkedPerson; + } + + public void setCheckedPerson(String checkedPerson) { + this.checkedPerson = checkedPerson; + } + + public LocalDateTime getExecuteStopDate() { + return executeStopDate; + } + + public void setExecuteStopDate(LocalDateTime executeStopDate) { + this.executeStopDate = executeStopDate; + } + + public LocalDateTime getCheckedDate() { + return checkedDate; + } + + public void setCheckedDate(LocalDateTime checkedDate) { + this.checkedDate = checkedDate; + } + + public String getCheckedAdvice() { + return checkedAdvice; + } + + public void setCheckedAdvice(String checkedAdvice) { + this.checkedAdvice = checkedAdvice; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getIdentify() { + return identify; + } + + public void setIdentify(String identify) { + this.identify = identify; + } + + public String getConfirmPerson() { + return confirmPerson; + } + + public void setConfirmPerson(String confirmPerson) { + this.confirmPerson = confirmPerson; + } + + public LocalDateTime getConfirmDate() { + return confirmDate; + } + + public void setConfirmDate(LocalDateTime confirmDate) { + this.confirmDate = confirmDate; + } + + public String getCheckedAttach() { + return checkedAttach; + } + + public void setCheckedAttach(String checkedAttach) { + this.checkedAttach = checkedAttach; + } + + public String getReferAttach() { + return referAttach; + } + + public void setReferAttach(String referAttach) { + this.referAttach = referAttach; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + @Override + public String toString() { + return "ZhCustomerAskFix{" + + "id=" + id + + ", cellId=" + cellId + + ", proposer=" + proposer + + ", proposerDate=" + proposerDate + + ", askFixContent=" + askFixContent + + ", checkPerson=" + checkPerson + + ", fixMoney=" + fixMoney + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", leaderPhone=" + leaderPhone + + ", executeCompany=" + executeCompany + + ", executeStartDate=" + executeStartDate + + ", leader=" + leader + + ", checkedPerson=" + checkedPerson + + ", executeStopDate=" + executeStopDate + + ", checkedDate=" + checkedDate + + ", checkedAdvice=" + checkedAdvice + + ", remark=" + remark + + ", status=" + status + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", identify=" + identify + + ", confirmPerson=" + confirmPerson + + ", confirmDate=" + confirmDate + + ", checkedAttach=" + checkedAttach + + ", referAttach=" + referAttach + + ", phoneNumber=" + phoneNumber + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" new file mode 100644 index 00000000..536ad65c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" @@ -0,0 +1,251 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主验房 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerCheck implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private String cellId; + + /** + * 验收日期 + */ + private LocalDateTime checkDate; + + /** + * 确认日期 + */ + private LocalDateTime confirmDate; + + /** + * 验收项目编号 + */ + private Long checkItemId; + + /** + * 验收项目名称 + */ + private String checkItemName; + + /** + * 是否合格 + */ + private String isPass; + + /** + * 业主意见 + */ + private String consumerAdvice; + + /** + * 房管员意见 + */ + private String houseKeeperAdvice; + + /** + * 验收人员 + */ + private String checkPerson; + + /** + * 备注 + */ + private String remark; + + /** + * 录入人 + */ + private String inputPerson; + + /** + * 录入时间 + */ + private LocalDateTime inputDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 验房类型 + */ + private String checkHouseType; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCellId() { + return cellId; + } + + public void setCellId(String cellId) { + this.cellId = cellId; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public LocalDateTime getConfirmDate() { + return confirmDate; + } + + public void setConfirmDate(LocalDateTime confirmDate) { + this.confirmDate = confirmDate; + } + + public Long getCheckItemId() { + return checkItemId; + } + + public void setCheckItemId(Long checkItemId) { + this.checkItemId = checkItemId; + } + + public String getCheckItemName() { + return checkItemName; + } + + public void setCheckItemName(String checkItemName) { + this.checkItemName = checkItemName; + } + + public String getIsPass() { + return isPass; + } + + public void setIsPass(String isPass) { + this.isPass = isPass; + } + + public String getConsumerAdvice() { + return consumerAdvice; + } + + public void setConsumerAdvice(String consumerAdvice) { + this.consumerAdvice = consumerAdvice; + } + + public String getHouseKeeperAdvice() { + return houseKeeperAdvice; + } + + public void setHouseKeeperAdvice(String houseKeeperAdvice) { + this.houseKeeperAdvice = houseKeeperAdvice; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public LocalDateTime getInputDate() { + return inputDate; + } + + public void setInputDate(LocalDateTime inputDate) { + this.inputDate = inputDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCheckHouseType() { + return checkHouseType; + } + + public void setCheckHouseType(String checkHouseType) { + this.checkHouseType = checkHouseType; + } + + @Override + public String toString() { + return "ZhCustomerCheck{" + + "id=" + id + + ", cellId=" + cellId + + ", checkDate=" + checkDate + + ", confirmDate=" + confirmDate + + ", checkItemId=" + checkItemId + + ", checkItemName=" + checkItemName + + ", isPass=" + isPass + + ", consumerAdvice=" + consumerAdvice + + ", houseKeeperAdvice=" + houseKeeperAdvice + + ", checkPerson=" + checkPerson + + ", remark=" + remark + + ", inputPerson=" + inputPerson + + ", inputDate=" + inputDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", checkHouseType=" + checkHouseType + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" new file mode 100644 index 00000000..f81e09c1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主房产对照表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerEstate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 业主id + */ + private Integer customerId; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 房间id + */ + private Integer cellId; + + /** + * 使用状态 + */ + private String useStatus; + + /** + * 入住日期 + */ + private LocalDateTime liveDate; + + /** + * 装修时间 + */ + private LocalDateTime decorateDate; + + /** + * 认购证号 + */ + private String subscriptionCardNumber; + + /** + * 房产证号 + */ + private String houseCode; + + /** + * 是否缴纳维修金 + */ + private String isPayDecorateMoney; + + /** + * 预缴维修金 + */ + private Double prePayDecorateMoney; + + /** + * 备注 + */ + private String remark; + + /** + * 排序号 + */ + private Integer orderid; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCustomerId() { + return customerId; + } + + public void setCustomerId(Integer customerId) { + this.customerId = customerId; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getUseStatus() { + return useStatus; + } + + public void setUseStatus(String useStatus) { + this.useStatus = useStatus; + } + + public LocalDateTime getLiveDate() { + return liveDate; + } + + public void setLiveDate(LocalDateTime liveDate) { + this.liveDate = liveDate; + } + + public LocalDateTime getDecorateDate() { + return decorateDate; + } + + public void setDecorateDate(LocalDateTime decorateDate) { + this.decorateDate = decorateDate; + } + + public String getSubscriptionCardNumber() { + return subscriptionCardNumber; + } + + public void setSubscriptionCardNumber(String subscriptionCardNumber) { + this.subscriptionCardNumber = subscriptionCardNumber; + } + + public String getHouseCode() { + return houseCode; + } + + public void setHouseCode(String houseCode) { + this.houseCode = houseCode; + } + + public String getIsPayDecorateMoney() { + return isPayDecorateMoney; + } + + public void setIsPayDecorateMoney(String isPayDecorateMoney) { + this.isPayDecorateMoney = isPayDecorateMoney; + } + + public Double getPrePayDecorateMoney() { + return prePayDecorateMoney; + } + + public void setPrePayDecorateMoney(Double prePayDecorateMoney) { + this.prePayDecorateMoney = prePayDecorateMoney; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public Integer getOrderid() { + return orderid; + } + + public void setOrderid(Integer orderid) { + this.orderid = orderid; + } + + @Override + public String toString() { + return "ZhCustomerEstate{" + + "id=" + id + + ", customerId=" + customerId + + ", customerName=" + customerName + + ", cellId=" + cellId + + ", useStatus=" + useStatus + + ", liveDate=" + liveDate + + ", decorateDate=" + decorateDate + + ", subscriptionCardNumber=" + subscriptionCardNumber + + ", houseCode=" + houseCode + + ", isPayDecorateMoney=" + isPayDecorateMoney + + ", prePayDecorateMoney=" + prePayDecorateMoney + + ", remark=" + remark + + ", orderid=" + orderid + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" new file mode 100644 index 00000000..c012b4d8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主成员 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerMembers implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属业主编码 + */ + private Integer belongCustomerId; + + /** + * 姓名 + */ + private String name; + + /** + * 出生日期 + */ + private LocalDateTime birdate; + + /** + * 性别 + */ + private String gender; + + /** + * 与业主关系 + */ + private String ration; + + /** + * 证件类型 + */ + private String certificateType; + + /** + * 证件号码 + */ + private String certificateNumber; + + /** + * 学历 + */ + private String education; + + /** + * 备注 + */ + private String remark; + + /** + * 工作单位 + */ + private String workPlace; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 照片 + */ + private String picture; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getBelongCustomerId() { + return belongCustomerId; + } + + public void setBelongCustomerId(Integer belongCustomerId) { + this.belongCustomerId = belongCustomerId; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public LocalDateTime getBirdate() { + return birdate; + } + + public void setBirdate(LocalDateTime birdate) { + this.birdate = birdate; + } + + public String getGender() { + return gender; + } + + public void setGender(String gender) { + this.gender = gender; + } + + public String getRation() { + return ration; + } + + public void setRation(String ration) { + this.ration = ration; + } + + public String getCertificateType() { + return certificateType; + } + + public void setCertificateType(String certificateType) { + this.certificateType = certificateType; + } + + public String getCertificateNumber() { + return certificateNumber; + } + + public void setCertificateNumber(String certificateNumber) { + this.certificateNumber = certificateNumber; + } + + public String getEducation() { + return education; + } + + public void setEducation(String education) { + this.education = education; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getWorkPlace() { + return workPlace; + } + + public void setWorkPlace(String workPlace) { + this.workPlace = workPlace; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getPicture() { + return picture; + } + + public void setPicture(String picture) { + this.picture = picture; + } + + @Override + public String toString() { + return "ZhCustomerMembers{" + + "id=" + id + + ", belongCustomerId=" + belongCustomerId + + ", name=" + name + + ", birdate=" + birdate + + ", gender=" + gender + + ", ration=" + ration + + ", certificateType=" + certificateType + + ", certificateNumber=" + certificateNumber + + ", education=" + education + + ", remark=" + remark + + ", workPlace=" + workPlace + + ", phoneNumber=" + phoneNumber + + ", picture=" + picture + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" new file mode 100644 index 00000000..dcee5410 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" @@ -0,0 +1,307 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主服务 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerService implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private Integer cellId; + + /** + * 申请人姓名 + */ + private String proposer; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 诉求时间 + */ + private LocalDateTime appealDate; + + /** + * 诉求事项 + */ + private String appealEvent; + + /** + * 状态 + */ + private String status; + + /** + * 服务类型 + */ + private Long serviceType; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 标识 + */ + private String identify; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 审批时间 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 服务费用 + */ + private Double serviceMoney; + + /** + * 回访人 + */ + private String returnVisitPerson; + + /** + * 回访时间 + */ + private LocalDateTime returnVisitDate; + + /** + * 是否满意 + */ + private String isSatisfy; + + /** + * 业主评价 + */ + private String customerEvaluate; + + /** + * 参考附件 + */ + private String referAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getProposer() { + return proposer; + } + + public void setProposer(String proposer) { + this.proposer = proposer; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public LocalDateTime getAppealDate() { + return appealDate; + } + + public void setAppealDate(LocalDateTime appealDate) { + this.appealDate = appealDate; + } + + public String getAppealEvent() { + return appealEvent; + } + + public void setAppealEvent(String appealEvent) { + this.appealEvent = appealEvent; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public Long getServiceType() { + return serviceType; + } + + public void setServiceType(Long serviceType) { + this.serviceType = serviceType; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getIdentify() { + return identify; + } + + public void setIdentify(String identify) { + this.identify = identify; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public Double getServiceMoney() { + return serviceMoney; + } + + public void setServiceMoney(Double serviceMoney) { + this.serviceMoney = serviceMoney; + } + + public String getReturnVisitPerson() { + return returnVisitPerson; + } + + public void setReturnVisitPerson(String returnVisitPerson) { + this.returnVisitPerson = returnVisitPerson; + } + + public LocalDateTime getReturnVisitDate() { + return returnVisitDate; + } + + public void setReturnVisitDate(LocalDateTime returnVisitDate) { + this.returnVisitDate = returnVisitDate; + } + + public String getIsSatisfy() { + return isSatisfy; + } + + public void setIsSatisfy(String isSatisfy) { + this.isSatisfy = isSatisfy; + } + + public String getCustomerEvaluate() { + return customerEvaluate; + } + + public void setCustomerEvaluate(String customerEvaluate) { + this.customerEvaluate = customerEvaluate; + } + + public String getReferAttach() { + return referAttach; + } + + public void setReferAttach(String referAttach) { + this.referAttach = referAttach; + } + + @Override + public String toString() { + return "ZhCustomerService{" + + "id=" + id + + ", cellId=" + cellId + + ", proposer=" + proposer + + ", phoneNumber=" + phoneNumber + + ", appealDate=" + appealDate + + ", appealEvent=" + appealEvent + + ", status=" + status + + ", serviceType=" + serviceType + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", identify=" + identify + + ", checkPerson=" + checkPerson + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", serviceMoney=" + serviceMoney + + ", returnVisitPerson=" + returnVisitPerson + + ", returnVisitDate=" + returnVisitDate + + ", isSatisfy=" + isSatisfy + + ", customerEvaluate=" + customerEvaluate + + ", referAttach=" + referAttach + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" new file mode 100644 index 00000000..2e4edece --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主服务类型 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerServiceType implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 类型名称 + */ + private String typeName; + + /** + * 类型单价 + */ + private Double typePrice; + + /** + * 类型说明 + */ + private String typeDesc; + + /** + * 类型状态 + */ + private String typeStatus; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建人时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTypeName() { + return typeName; + } + + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + public Double getTypePrice() { + return typePrice; + } + + public void setTypePrice(Double typePrice) { + this.typePrice = typePrice; + } + + public String getTypeDesc() { + return typeDesc; + } + + public void setTypeDesc(String typeDesc) { + this.typeDesc = typeDesc; + } + + public String getTypeStatus() { + return typeStatus; + } + + public void setTypeStatus(String typeStatus) { + this.typeStatus = typeStatus; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "ZhCustomerServiceType{" + + "id=" + id + + ", typeName=" + typeName + + ", typePrice=" + typePrice + + ", typeDesc=" + typeDesc + + ", typeStatus=" + typeStatus + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" new file mode 100644 index 00000000..e321a5ba --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" @@ -0,0 +1,405 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContract implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 合同编号 + */ + private String contractId; + + /** + * 签订日期 + */ + private LocalDateTime signDate; + + /** + * 生效日期 + */ + private LocalDateTime startDate; + + /** + * 终止日期 + */ + private LocalDateTime stopDate; + + /** + * 所属租户id + */ + private Integer rentId; + + /** + * 联系人 + */ + private String contact; + + /** + * 起租日期 + */ + private LocalDateTime startRentDate; + + /** + * 停租日期 + */ + private LocalDateTime stopRentDate; + + /** + * 合同租金金额 + */ + private Double contractRentMoney; + + /** + * 收费面积 + */ + private Double receiveArea; + + /** + * 合同状态 + */ + private String contractStatus; + + /** + * 保证金 + */ + private Double ensureMoney; + + /** + * 保证金说明 + */ + private String ensureMoneyDesc; + + /** + * 合同附件 + */ + private String contractAttach; + + /** + * 租期 + */ + private Integer rentDays; + + /** + * 管理费 + */ + private Double adminMoney; + + /** + * 是否收取租金 + */ + private String isRentMoney; + + /** + * 缴纳方式 + */ + private Long payMethod; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 招商人员id + */ + private String attractPersonId; + + /** + * 招商人员姓名 + */ + private String attractPersonName; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getContractId() { + return contractId; + } + + public void setContractId(String contractId) { + this.contractId = contractId; + } + + public LocalDateTime getSignDate() { + return signDate; + } + + public void setSignDate(LocalDateTime signDate) { + this.signDate = signDate; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public Integer getRentId() { + return rentId; + } + + public void setRentId(Integer rentId) { + this.rentId = rentId; + } + + public String getContact() { + return contact; + } + + public void setContact(String contact) { + this.contact = contact; + } + + public LocalDateTime getStartRentDate() { + return startRentDate; + } + + public void setStartRentDate(LocalDateTime startRentDate) { + this.startRentDate = startRentDate; + } + + public LocalDateTime getStopRentDate() { + return stopRentDate; + } + + public void setStopRentDate(LocalDateTime stopRentDate) { + this.stopRentDate = stopRentDate; + } + + public Double getContractRentMoney() { + return contractRentMoney; + } + + public void setContractRentMoney(Double contractRentMoney) { + this.contractRentMoney = contractRentMoney; + } + + public Double getReceiveArea() { + return receiveArea; + } + + public void setReceiveArea(Double receiveArea) { + this.receiveArea = receiveArea; + } + + public String getContractStatus() { + return contractStatus; + } + + public void setContractStatus(String contractStatus) { + this.contractStatus = contractStatus; + } + + public Double getEnsureMoney() { + return ensureMoney; + } + + public void setEnsureMoney(Double ensureMoney) { + this.ensureMoney = ensureMoney; + } + + public String getEnsureMoneyDesc() { + return ensureMoneyDesc; + } + + public void setEnsureMoneyDesc(String ensureMoneyDesc) { + this.ensureMoneyDesc = ensureMoneyDesc; + } + + public String getContractAttach() { + return contractAttach; + } + + public void setContractAttach(String contractAttach) { + this.contractAttach = contractAttach; + } + + public Integer getRentDays() { + return rentDays; + } + + public void setRentDays(Integer rentDays) { + this.rentDays = rentDays; + } + + public Double getAdminMoney() { + return adminMoney; + } + + public void setAdminMoney(Double adminMoney) { + this.adminMoney = adminMoney; + } + + public String getIsRentMoney() { + return isRentMoney; + } + + public void setIsRentMoney(String isRentMoney) { + this.isRentMoney = isRentMoney; + } + + public Long getPayMethod() { + return payMethod; + } + + public void setPayMethod(Long payMethod) { + this.payMethod = payMethod; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getAttractPersonId() { + return attractPersonId; + } + + public void setAttractPersonId(String attractPersonId) { + this.attractPersonId = attractPersonId; + } + + public String getAttractPersonName() { + return attractPersonName; + } + + public void setAttractPersonName(String attractPersonName) { + this.attractPersonName = attractPersonName; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "ZhRentContract{" + + "id=" + id + + ", contractId=" + contractId + + ", signDate=" + signDate + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", rentId=" + rentId + + ", contact=" + contact + + ", startRentDate=" + startRentDate + + ", stopRentDate=" + stopRentDate + + ", contractRentMoney=" + contractRentMoney + + ", receiveArea=" + receiveArea + + ", contractStatus=" + contractStatus + + ", ensureMoney=" + ensureMoney + + ", ensureMoneyDesc=" + ensureMoneyDesc + + ", contractAttach=" + contractAttach + + ", rentDays=" + rentDays + + ", adminMoney=" + adminMoney + + ", isRentMoney=" + isRentMoney + + ", payMethod=" + payMethod + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", attractPersonId=" + attractPersonId + + ", attractPersonName=" + attractPersonName + + ", company=" + company + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" new file mode 100644 index 00000000..0f6e93ea --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" @@ -0,0 +1,97 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同房间 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContractCell implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 所属档口信息 + */ + private Integer stallMessage; + + /** + * 操作人 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getStallMessage() { + return stallMessage; + } + + public void setStallMessage(Integer stallMessage) { + this.stallMessage = stallMessage; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "ZhRentContractCell{" + + "id=" + id + + ", contractId=" + contractId + + ", stallMessage=" + stallMessage + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" new file mode 100644 index 00000000..6ea577a9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同变更 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContractChange implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 变更项目 + */ + private String changeProject; + + /** + * 原值 + */ + private String oldValue; + + /** + * 新值 + */ + private String newValue; + + /** + * 说明 + */ + private String desc; + + /** + * 变更人 + */ + private String changePerson; + + /** + * 变更时间 + */ + private LocalDateTime changeDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public String getChangeProject() { + return changeProject; + } + + public void setChangeProject(String changeProject) { + this.changeProject = changeProject; + } + + public String getOldValue() { + return oldValue; + } + + public void setOldValue(String oldValue) { + this.oldValue = oldValue; + } + + public String getNewValue() { + return newValue; + } + + public void setNewValue(String newValue) { + this.newValue = newValue; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getChangePerson() { + return changePerson; + } + + public void setChangePerson(String changePerson) { + this.changePerson = changePerson; + } + + public LocalDateTime getChangeDate() { + return changeDate; + } + + public void setChangeDate(LocalDateTime changeDate) { + this.changeDate = changeDate; + } + + @Override + public String toString() { + return "ZhRentContractChange{" + + "id=" + id + + ", contractId=" + contractId + + ", changeProject=" + changeProject + + ", oldValue=" + oldValue + + ", newValue=" + newValue + + ", desc=" + desc + + ", changePerson=" + changePerson + + ", changeDate=" + changeDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" new file mode 100644 index 00000000..0c40a62d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" @@ -0,0 +1,237 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同退款 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContractRefund implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 所属租户id + */ + private Integer rentId; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 退款日期 + */ + private LocalDateTime refundTime; + + /** + * 退款金额 + */ + private Double refundMoney; + + /** + * 退款状态 + */ + private String refundStatus; + + /** + * 退款说明 + */ + private String refundDesc; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人名称 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 作废人id + */ + private String invalidId; + + /** + * 作废人名称 + */ + private String invalidPerson; + + /** + * 作废原因 + */ + private LocalDateTime invalidReason; + + /** + * 作废时间 + */ + private String invalidDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getRentId() { + return rentId; + } + + public void setRentId(Integer rentId) { + this.rentId = rentId; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public LocalDateTime getRefundTime() { + return refundTime; + } + + public void setRefundTime(LocalDateTime refundTime) { + this.refundTime = refundTime; + } + + public Double getRefundMoney() { + return refundMoney; + } + + public void setRefundMoney(Double refundMoney) { + this.refundMoney = refundMoney; + } + + public String getRefundStatus() { + return refundStatus; + } + + public void setRefundStatus(String refundStatus) { + this.refundStatus = refundStatus; + } + + public String getRefundDesc() { + return refundDesc; + } + + public void setRefundDesc(String refundDesc) { + this.refundDesc = refundDesc; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getInvalidPerson() { + return invalidPerson; + } + + public void setInvalidPerson(String invalidPerson) { + this.invalidPerson = invalidPerson; + } + + public LocalDateTime getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(LocalDateTime invalidReason) { + this.invalidReason = invalidReason; + } + + public String getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(String invalidDate) { + this.invalidDate = invalidDate; + } + + @Override + public String toString() { + return "ZhRentContractRefund{" + + "id=" + id + + ", contractId=" + contractId + + ", rentId=" + rentId + + ", rentName=" + rentName + + ", refundTime=" + refundTime + + ", refundMoney=" + refundMoney + + ", refundStatus=" + refundStatus + + ", refundDesc=" + refundDesc + + ", operateId=" + operateId + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + ", invalidId=" + invalidId + + ", invalidPerson=" + invalidPerson + + ", invalidReason=" + invalidReason + + ", invalidDate=" + invalidDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" new file mode 100644 index 00000000..ac4d1b5b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同返利 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContractReturn implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 所属租户id + */ + private Integer rentId; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 返利日期起 + */ + private LocalDateTime returnMoneyStart; + + /** + * 返利日期终 + */ + private LocalDateTime returnMoneyStop; + + /** + * 返利基数金额 + */ + private Double returnCardinalMoney; + + /** + * 返利比例 + */ + private Double returnRate; + + /** + * 本次返利金额 + */ + private Double currentReturnMoney; + + /** + * 返利状态 + */ + private String returnMoneyStatus; + + /** + * 返利说明 + */ + private String returnMoneyDesc; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人名称 + */ + private String operateName; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 作废人id + */ + private String invalidId; + + /** + * 作废人名称 + */ + private String invalidPerson; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 修改人id + */ + private String updatePersonId; + + /** + * 修改人名称 + */ + private String updatePersonName; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 修改原因 + */ + private String updateReason; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getRentId() { + return rentId; + } + + public void setRentId(Integer rentId) { + this.rentId = rentId; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public LocalDateTime getReturnMoneyStart() { + return returnMoneyStart; + } + + public void setReturnMoneyStart(LocalDateTime returnMoneyStart) { + this.returnMoneyStart = returnMoneyStart; + } + + public LocalDateTime getReturnMoneyStop() { + return returnMoneyStop; + } + + public void setReturnMoneyStop(LocalDateTime returnMoneyStop) { + this.returnMoneyStop = returnMoneyStop; + } + + public Double getReturnCardinalMoney() { + return returnCardinalMoney; + } + + public void setReturnCardinalMoney(Double returnCardinalMoney) { + this.returnCardinalMoney = returnCardinalMoney; + } + + public Double getReturnRate() { + return returnRate; + } + + public void setReturnRate(Double returnRate) { + this.returnRate = returnRate; + } + + public Double getCurrentReturnMoney() { + return currentReturnMoney; + } + + public void setCurrentReturnMoney(Double currentReturnMoney) { + this.currentReturnMoney = currentReturnMoney; + } + + public String getReturnMoneyStatus() { + return returnMoneyStatus; + } + + public void setReturnMoneyStatus(String returnMoneyStatus) { + this.returnMoneyStatus = returnMoneyStatus; + } + + public String getReturnMoneyDesc() { + return returnMoneyDesc; + } + + public void setReturnMoneyDesc(String returnMoneyDesc) { + this.returnMoneyDesc = returnMoneyDesc; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperateName() { + return operateName; + } + + public void setOperateName(String operateName) { + this.operateName = operateName; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getInvalidPerson() { + return invalidPerson; + } + + public void setInvalidPerson(String invalidPerson) { + this.invalidPerson = invalidPerson; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public String getUpdatePersonId() { + return updatePersonId; + } + + public void setUpdatePersonId(String updatePersonId) { + this.updatePersonId = updatePersonId; + } + + public String getUpdatePersonName() { + return updatePersonName; + } + + public void setUpdatePersonName(String updatePersonName) { + this.updatePersonName = updatePersonName; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getUpdateReason() { + return updateReason; + } + + public void setUpdateReason(String updateReason) { + this.updateReason = updateReason; + } + + @Override + public String toString() { + return "ZhRentContractReturn{" + + "id=" + id + + ", contractId=" + contractId + + ", rentId=" + rentId + + ", rentName=" + rentName + + ", returnMoneyStart=" + returnMoneyStart + + ", returnMoneyStop=" + returnMoneyStop + + ", returnCardinalMoney=" + returnCardinalMoney + + ", returnRate=" + returnRate + + ", currentReturnMoney=" + currentReturnMoney + + ", returnMoneyStatus=" + returnMoneyStatus + + ", returnMoneyDesc=" + returnMoneyDesc + + ", operateId=" + operateId + + ", operateName=" + operateName + + ", operateDate=" + operateDate + + ", invalidId=" + invalidId + + ", invalidPerson=" + invalidPerson + + ", invalidDate=" + invalidDate + + ", invalidReason=" + invalidReason + + ", updatePersonId=" + updatePersonId + + ", updatePersonName=" + updatePersonName + + ", updateDate=" + updateDate + + ", updateReason=" + updateReason + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" new file mode 100644 index 00000000..b236dfba --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" @@ -0,0 +1,349 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租户信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentInformation implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 租户编码 + */ + private String rentCode; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 法定代表 + */ + private String memberOfRight; + + /** + * 租户类型 + */ + private Long rentType; + + /** + * 联系人 + */ + private String contact; + + /** + * 性别 + */ + private String gender; + + /** + * 联系电话 + */ + private String homeNumber; + + /** + * 手机 + */ + private String phoneNumber; + + /** + * 地址 + */ + private String addr; + + /** + * 证件类型 + */ + private Long certificateType; + + /** + * 主营商品 + */ + private Long mainSale; + + /** + * 证件号码 + */ + private String certificateNumber; + + /** + * 状态 + */ + private String status; + + /** + * 备注 + */ + private String remark; + + /** + * 照片地址 + */ + private String pictureUrl; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 所属公司 + */ + private String company; + + /** + * 登陆密码 + */ + private String pwd; + + /** + * 租户附件 + */ + private String rentAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRentCode() { + return rentCode; + } + + public void setRentCode(String rentCode) { + this.rentCode = rentCode; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public String getMemberOfRight() { + return memberOfRight; + } + + public void setMemberOfRight(String memberOfRight) { + this.memberOfRight = memberOfRight; + } + + public Long getRentType() { + return rentType; + } + + public void setRentType(Long rentType) { + this.rentType = rentType; + } + + public String getContact() { + return contact; + } + + public void setContact(String contact) { + this.contact = contact; + } + + public String getGender() { + return gender; + } + + public void setGender(String gender) { + this.gender = gender; + } + + public String getHomeNumber() { + return homeNumber; + } + + public void setHomeNumber(String homeNumber) { + this.homeNumber = homeNumber; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getAddr() { + return addr; + } + + public void setAddr(String addr) { + this.addr = addr; + } + + public Long getCertificateType() { + return certificateType; + } + + public void setCertificateType(Long certificateType) { + this.certificateType = certificateType; + } + + public Long getMainSale() { + return mainSale; + } + + public void setMainSale(Long mainSale) { + this.mainSale = mainSale; + } + + public String getCertificateNumber() { + return certificateNumber; + } + + public void setCertificateNumber(String certificateNumber) { + this.certificateNumber = certificateNumber; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getPictureUrl() { + return pictureUrl; + } + + public void setPictureUrl(String pictureUrl) { + this.pictureUrl = pictureUrl; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getPwd() { + return pwd; + } + + public void setPwd(String pwd) { + this.pwd = pwd; + } + + public String getRentAttach() { + return rentAttach; + } + + public void setRentAttach(String rentAttach) { + this.rentAttach = rentAttach; + } + + @Override + public String toString() { + return "ZhRentInformation{" + + "id=" + id + + ", rentCode=" + rentCode + + ", rentName=" + rentName + + ", memberOfRight=" + memberOfRight + + ", rentType=" + rentType + + ", contact=" + contact + + ", gender=" + gender + + ", homeNumber=" + homeNumber + + ", phoneNumber=" + phoneNumber + + ", addr=" + addr + + ", certificateType=" + certificateType + + ", mainSale=" + mainSale + + ", certificateNumber=" + certificateNumber + + ", status=" + status + + ", remark=" + remark + + ", pictureUrl=" + pictureUrl + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", company=" + company + + ", pwd=" + pwd + + ", rentAttach=" + rentAttach + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" new file mode 100644 index 00000000..bda99caa --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" @@ -0,0 +1,321 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租金收取 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 所属租户id + */ + private Integer rentId; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 租金开始日期 + */ + private LocalDateTime rentStartDate; + + /** + * 租金截止日期 + */ + private LocalDateTime rentStopDate; + + /** + * 租金金额 + */ + private Double rentMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 收款人id + */ + private String receiveId; + + /** + * 收款人名称 + */ + private String receivePerson; + + /** + * 收款时间 + */ + private LocalDateTime receiveDate; + + /** + * 收取状态 + */ + private String receiveStatus; + + /** + * 作废人id + */ + private String invalidId; + + /** + * 作废人名称 + */ + private String invalidPersonName; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 原收款方式 + */ + private String pastReceiveMethod; + + /** + * 单据审核状态 + */ + private String receiptCheckStatus; + + /** + * 单据审核人 + */ + private String receiptCheckPerson; + + /** + * 单据审核时间 + */ + private LocalDateTime receiptCheckTime; + + /** + * 单据审核意见 + */ + private String receiptCheckAdvice; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getRentId() { + return rentId; + } + + public void setRentId(Integer rentId) { + this.rentId = rentId; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public LocalDateTime getRentStartDate() { + return rentStartDate; + } + + public void setRentStartDate(LocalDateTime rentStartDate) { + this.rentStartDate = rentStartDate; + } + + public LocalDateTime getRentStopDate() { + return rentStopDate; + } + + public void setRentStopDate(LocalDateTime rentStopDate) { + this.rentStopDate = rentStopDate; + } + + public Double getRentMoney() { + return rentMoney; + } + + public void setRentMoney(Double rentMoney) { + this.rentMoney = rentMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getReceiveStatus() { + return receiveStatus; + } + + public void setReceiveStatus(String receiveStatus) { + this.receiveStatus = receiveStatus; + } + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getInvalidPersonName() { + return invalidPersonName; + } + + public void setInvalidPersonName(String invalidPersonName) { + this.invalidPersonName = invalidPersonName; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getPastReceiveMethod() { + return pastReceiveMethod; + } + + public void setPastReceiveMethod(String pastReceiveMethod) { + this.pastReceiveMethod = pastReceiveMethod; + } + + public String getReceiptCheckStatus() { + return receiptCheckStatus; + } + + public void setReceiptCheckStatus(String receiptCheckStatus) { + this.receiptCheckStatus = receiptCheckStatus; + } + + public String getReceiptCheckPerson() { + return receiptCheckPerson; + } + + public void setReceiptCheckPerson(String receiptCheckPerson) { + this.receiptCheckPerson = receiptCheckPerson; + } + + public LocalDateTime getReceiptCheckTime() { + return receiptCheckTime; + } + + public void setReceiptCheckTime(LocalDateTime receiptCheckTime) { + this.receiptCheckTime = receiptCheckTime; + } + + public String getReceiptCheckAdvice() { + return receiptCheckAdvice; + } + + public void setReceiptCheckAdvice(String receiptCheckAdvice) { + this.receiptCheckAdvice = receiptCheckAdvice; + } + + @Override + public String toString() { + return "ZhRentReceive{" + + "id=" + id + + ", contractId=" + contractId + + ", rentId=" + rentId + + ", rentName=" + rentName + + ", rentStartDate=" + rentStartDate + + ", rentStopDate=" + rentStopDate + + ", rentMoney=" + rentMoney + + ", desc=" + desc + + ", receiveId=" + receiveId + + ", receivePerson=" + receivePerson + + ", receiveDate=" + receiveDate + + ", receiveStatus=" + receiveStatus + + ", invalidId=" + invalidId + + ", invalidPersonName=" + invalidPersonName + + ", invalidReason=" + invalidReason + + ", invalidDate=" + invalidDate + + ", pastReceiveMethod=" + pastReceiveMethod + + ", receiptCheckStatus=" + receiptCheckStatus + + ", receiptCheckPerson=" + receiptCheckPerson + + ", receiptCheckTime=" + receiptCheckTime + + ", receiptCheckAdvice=" + receiptCheckAdvice + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" new file mode 100644 index 00000000..7b286205 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" @@ -0,0 +1,293 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁分租信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentShare implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 分租人 + */ + private String shareRentPerson; + + /** + * 分租房间id + */ + private String shareCellId; + + /** + * 分租房间名称 + */ + private String shareCellName; + + /** + * 联系人 + */ + private String contact; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 起始日期 + */ + private LocalDateTime startDate; + + /** + * 截止日期 + */ + private LocalDateTime stopDate; + + /** + * 经营范围 + */ + private String saleRange; + + /** + * 备注 + */ + private String remark; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人名称 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 修改人id + */ + private String updatePersonId; + + /** + * 修改人名称 + */ + private String updatePersonName; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 修改原因 + */ + private String updateReason; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public String getShareRentPerson() { + return shareRentPerson; + } + + public void setShareRentPerson(String shareRentPerson) { + this.shareRentPerson = shareRentPerson; + } + + public String getShareCellId() { + return shareCellId; + } + + public void setShareCellId(String shareCellId) { + this.shareCellId = shareCellId; + } + + public String getShareCellName() { + return shareCellName; + } + + public void setShareCellName(String shareCellName) { + this.shareCellName = shareCellName; + } + + public String getContact() { + return contact; + } + + public void setContact(String contact) { + this.contact = contact; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getSaleRange() { + return saleRange; + } + + public void setSaleRange(String saleRange) { + this.saleRange = saleRange; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public String getUpdatePersonId() { + return updatePersonId; + } + + public void setUpdatePersonId(String updatePersonId) { + this.updatePersonId = updatePersonId; + } + + public String getUpdatePersonName() { + return updatePersonName; + } + + public void setUpdatePersonName(String updatePersonName) { + this.updatePersonName = updatePersonName; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getUpdateReason() { + return updateReason; + } + + public void setUpdateReason(String updateReason) { + this.updateReason = updateReason; + } + + @Override + public String toString() { + return "ZhRentShare{" + + "id=" + id + + ", contractId=" + contractId + + ", rentName=" + rentName + + ", shareRentPerson=" + shareRentPerson + + ", shareCellId=" + shareCellId + + ", shareCellName=" + shareCellName + + ", contact=" + contact + + ", phoneNumber=" + phoneNumber + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", saleRange=" + saleRange + + ", remark=" + remark + + ", operateId=" + operateId + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + ", updatePersonId=" + updatePersonId + + ", updatePersonName=" + updatePersonName + + ", updateDate=" + updateDate + + ", updateReason=" + updateReason + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" new file mode 100644 index 00000000..8fd6f444 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租户转兑 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentTransfer implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 转出租户id + */ + private Integer transferOutId; + + /** + * 转出租户名称 + */ + private String transferOutName; + + /** + * 转入租户id + */ + private Integer transferInId; + + /** + * 转入租户名称 + */ + private String transferInName; + + /** + * 更名费 + */ + private Double changeNameMoney; + + /** + * 转兑说明 + */ + private String transferDesc; + + /** + * 转兑时间 + */ + private LocalDateTime transferDate; + + /** + * 操作人 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getTransferOutId() { + return transferOutId; + } + + public void setTransferOutId(Integer transferOutId) { + this.transferOutId = transferOutId; + } + + public String getTransferOutName() { + return transferOutName; + } + + public void setTransferOutName(String transferOutName) { + this.transferOutName = transferOutName; + } + + public Integer getTransferInId() { + return transferInId; + } + + public void setTransferInId(Integer transferInId) { + this.transferInId = transferInId; + } + + public String getTransferInName() { + return transferInName; + } + + public void setTransferInName(String transferInName) { + this.transferInName = transferInName; + } + + public Double getChangeNameMoney() { + return changeNameMoney; + } + + public void setChangeNameMoney(Double changeNameMoney) { + this.changeNameMoney = changeNameMoney; + } + + public String getTransferDesc() { + return transferDesc; + } + + public void setTransferDesc(String transferDesc) { + this.transferDesc = transferDesc; + } + + public LocalDateTime getTransferDate() { + return transferDate; + } + + public void setTransferDate(LocalDateTime transferDate) { + this.transferDate = transferDate; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "ZhRentTransfer{" + + "id=" + id + + ", contractId=" + contractId + + ", transferOutId=" + transferOutId + + ", transferOutName=" + transferOutName + + ", transferInId=" + transferInId + + ", transferInName=" + transferInName + + ", changeNameMoney=" + changeNameMoney + + ", transferDesc=" + transferDesc + + ", transferDate=" + transferDate + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" new file mode 100644 index 00000000..53740d6c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" @@ -0,0 +1,32 @@ +package com.mashibing.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.cors.CorsConfiguration; +import org.springframework.web.cors.UrlBasedCorsConfigurationSource; +import org.springframework.web.filter.CorsFilter; + +//@Configuration +public class CorsConfig { + + private CorsConfiguration buildConfig(){ + CorsConfiguration configuration = new CorsConfiguration(); + //设置属性 + //允许跨域请求的地址,*表示所有 + configuration.addAllowedOrigin("*"); + //配置跨域的请求头 + configuration.addAllowedHeader("*"); + //配置跨域的请求方法 + configuration.addAllowedMethod("*"); + // 表示跨域请求的时候是否使用的是同一个session + configuration.setAllowCredentials(true); + return configuration; + } + + @Bean + public CorsFilter corsFilter(){ + UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); + source.registerCorsConfiguration("/**",buildConfig()); + return new CorsFilter(source); + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" new file mode 100644 index 00000000..6c685645 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" @@ -0,0 +1,97 @@ +package com.mashibing.controller; + +import com.alibaba.fastjson.JSONObject; +import com.mashibing.bean.*; +import com.mashibing.returnJson.ReturnObject; +import com.mashibing.service.EstateService; +import com.mashibing.vo.CellMessage; +import com.mashibing.vo.UnitMessage; +import com.sun.org.apache.bcel.internal.generic.RETURN; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.CrossOrigin; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.List; + +@RestController +@CrossOrigin(origins = "*",allowedHeaders = "*",methods = {},allowCredentials = "true") +public class EstateController { + + @Autowired + private EstateService estateService; + + @RequestMapping("/estate/selectCompany") + public String selectCompany(){ + System.out.println("selectCompany"); + List companies = estateService.selectCompany(); + return JSONObject.toJSONString(new ReturnObject(companies)); + } + + @RequestMapping("/estate/insertEstate") + public String insertEstate(FcEstate fcEstate){ + System.out.println(fcEstate); + System.out.println("insert estate"); + Integer result = estateService.insertEstate(fcEstate); + if (result == 0){ + return JSONObject.toJSONString(new ReturnObject("0","房产编码已经存在")); + }else{ + return JSONObject.toJSONString(new ReturnObject("1","插入房产成功")); + } + } + + /** + * 此处应该完成的是楼宇的查询功能,但是大家会发现,现在数据表中没有任何楼宇的数据, + * 因此再辨析的时候需要进行插入且返回插入的数据 + * @param buildingNumber + * @param estateCode + * @return + */ + @RequestMapping("/estate/selectBuilding") + public String selectBuilding(Integer buildingNumber,String estateCode){ + System.out.println("select building"); + List fcBuildings = estateService.selectBuilding(buildingNumber, estateCode); + System.out.println(fcBuildings); + return JSONObject.toJSONString(new ReturnObject(fcBuildings)); + } + + @RequestMapping("/estate/updateBuilding") + public String updateBuilding(FcBuilding fcBuilding){ + System.out.println("update building"); + Integer result = estateService.updateBuilding(fcBuilding); + if(result == 1){ + return JSONObject.toJSONString(new ReturnObject("更新楼宇成功")); + }else{ + return JSONObject.toJSONString(new ReturnObject("更新楼宇失败")); + } + } + + @RequestMapping("/estate/selectUnit") + public String selectUnit(@RequestBody UnitMessage[] unitMessages){ + System.out.println("estate selectUnit"); + List allUnit = new ArrayList<>(); + for (UnitMessage unitMessage : unitMessages) { + allUnit.addAll(estateService.selectUnit(unitMessage)); + } + return JSONObject.toJSONString(new ReturnObject(allUnit)); + } + + @RequestMapping("/estate/updateUnit") + public String updateUnit(FcUnit fcUnit){ + Integer result = estateService.updateUnit(fcUnit); + if(result ==1 ){ + return JSONObject.toJSONString(new ReturnObject("更新单元成功")); + }else{ + return JSONObject.toJSONString(new ReturnObject("更新单元失败")); + } + } + + @RequestMapping("/estate/insertCell") + public String insertCell(@RequestBody CellMessage[] cellMessages){ + System.out.println("insert cell"); + List fcCells = estateService.insertCell(cellMessages); + return JSONObject.toJSONString(new ReturnObject(fcCells)); + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" new file mode 100644 index 00000000..e8286669 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" @@ -0,0 +1,65 @@ +package com.mashibing.controller; + +import com.alibaba.fastjson.JSONObject; +import com.mashibing.bean.TblUserRecord; +import com.mashibing.returnJson.Permission; +import com.mashibing.returnJson.Permissions; +import com.mashibing.returnJson.ReturnObject; +import com.mashibing.returnJson.UserInfo; +import com.mashibing.service.LoginService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + +import javax.servlet.http.HttpSession; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +@RestController +@CrossOrigin(origins = "*",allowedHeaders = "*",methods = {},allowCredentials = "true") +public class LoginController { + + @Autowired + private LoginService loginService; + + @RequestMapping("/auth/2step-code") + public Boolean test(){ + System.out.println("前端框架自带的一个验证规则,写不写无所谓"); + return true; + } + + @RequestMapping("/auth/login") + public String login(@RequestParam("username") String username, @RequestParam("password") String password, HttpSession session){ + System.out.println("login"); + TblUserRecord tblUserRecord = loginService.login(username,password); + tblUserRecord.setToken(tblUserRecord.getUserName()); + //将用户数据写入到session中 + session.setAttribute("userRecord",tblUserRecord); + ReturnObject returnObject = new ReturnObject(tblUserRecord); + return JSONObject.toJSONString(returnObject); + } + + @RequestMapping("/user/info") + public String getInfo(HttpSession session){ + TblUserRecord tblUserRecord = (TblUserRecord) session.getAttribute("userRecord"); + //获取模块信息 + String[] split = tblUserRecord.getTblRole().getRolePrivileges().split("-"); + //创建权限集合对象 + Permissions permissions = new Permissions(); + //向权限集合对象中添加具体的权限 + List permissionList = new ArrayList<>(); + for (String s : split) { + permissionList.add(new Permission(s)); + } + permissions.setPermissions(permissionList); + //设置返回值的result + UserInfo userInfo = new UserInfo(tblUserRecord.getUserName(),permissions); + return JSONObject.toJSONString(new ReturnObject(userInfo)); + } + + @RequestMapping("/auth/logout") + public void logOut(HttpSession session){ + System.out.println("logout"); + session.invalidate(); + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" new file mode 100644 index 00000000..0257c63b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼宇信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcBuilding") +public class FcBuildingController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" new file mode 100644 index 00000000..3474a209 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 房间加建信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcCellAddbuild") +public class FcCellAddbuildController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" new file mode 100644 index 00000000..e1bd86fb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 房间信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcCell") +public class FcCellController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" new file mode 100644 index 00000000..ff950a38 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcEstate") +public class FcEstateController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" new file mode 100644 index 00000000..9cf1b87f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 单元信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcUnit") +public class FcUnitController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" new file mode 100644 index 00000000..c90b776e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 房产信息临时表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyEstateTemporary") +public class FyEstateTemporaryController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" new file mode 100644 index 00000000..1ea544f0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 历史费用临时表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyHistoryMoneyTemp") +public class FyHistoryMoneyTempController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" new file mode 100644 index 00000000..eebe00a1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 作废单主单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyInvalidMain") +public class FyInvalidMainController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" new file mode 100644 index 00000000..665e48e8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 作废单子单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyInvalidSub") +public class FyInvalidSubController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" new file mode 100644 index 00000000..8578c435 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费项设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneySetting") +public class FyMoneySettingController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" new file mode 100644 index 00000000..05d2c9ce --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用临时表1 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneyTemporary01") +public class FyMoneyTemporary01Controller { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" new file mode 100644 index 00000000..b1e2169a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用临时表2 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneyTemporary02") +public class FyMoneyTemporary02Controller { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" new file mode 100644 index 00000000..ba6d8804 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用临时表3 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneyTemporary03") +public class FyMoneyTemporary03Controller { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" new file mode 100644 index 00000000..185cb8c5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用临时表4 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneyTemporary04") +public class FyMoneyTemporary04Controller { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" new file mode 100644 index 00000000..a6a0adf5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 预收款管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyPreReceive") +public class FyPreReceiveController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" new file mode 100644 index 00000000..87c4ae14 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物业费分布 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyPropertyMoneyDist") +public class FyPropertyMoneyDistController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" new file mode 100644 index 00000000..ec8ffd95 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公表信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyPublicBox") +public class FyPublicBoxController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" new file mode 100644 index 00000000..5fe0d9ff --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公表关联用户 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyPublicBoxUser") +public class FyPublicBoxUserController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" new file mode 100644 index 00000000..84f22897 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 收款单主单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyReceiptMain") +public class FyReceiptMainController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" new file mode 100644 index 00000000..8cc2d90f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 收款单子单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyReceiptSub") +public class FyReceiptSubController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" new file mode 100644 index 00000000..46d5c9bb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 退款单主单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyRefundMain") +public class FyRefundMainController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" new file mode 100644 index 00000000..04a9c351 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 退款单子单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyRefundSub") +public class FyRefundSubController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" new file mode 100644 index 00000000..1ff878d3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 销售合同 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fySaleContract") +public class FySaleContractController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" new file mode 100644 index 00000000..64fcaaec --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公摊费用台账概要 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyShareStandingBook") +public class FyShareStandingBookController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" new file mode 100644 index 00000000..ba4ae199 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公摊费用台账公表明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyShareStandingBookDetail") +public class FyShareStandingBookDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" new file mode 100644 index 00000000..91111eb8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公摊费用台账用户明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyShareUserDetail") +public class FyShareUserDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" new file mode 100644 index 00000000..d3cb9e77 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用台账概要 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyStandingBook") +public class FyStandingBookController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" new file mode 100644 index 00000000..48ab935c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用台账明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyStandingBookDetail") +public class FyStandingBookDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" new file mode 100644 index 00000000..1186c413 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 临客费项设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyTemporaryMoneySetting") +public class FyTemporaryMoneySettingController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" new file mode 100644 index 00000000..17629f4e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 意见箱 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblAdviceBox") +public class TblAdviceBoxController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" new file mode 100644 index 00000000..41580609 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 题目可选答案信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblAnswerData") +public class TblAnswerDataController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" new file mode 100644 index 00000000..dc2ba35a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 参数档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblArgRecord") +public class TblArgRecordController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" new file mode 100644 index 00000000..1397c359 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 附件 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblAttupload") +public class TblAttuploadController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" new file mode 100644 index 00000000..c88e53df --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 颜色管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblColor") +public class TblColorController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" new file mode 100644 index 00000000..fc948e86 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 常用语 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCommonLanguage") +public class TblCommonLanguageController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" new file mode 100644 index 00000000..e165171f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 常用短信 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCommonMessage") +public class TblCommonMessageController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" new file mode 100644 index 00000000..72ba9c89 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 企业档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCompany") +public class TblCompanyController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" new file mode 100644 index 00000000..bc9ddc5f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 单位名录 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCompanyRecord") +public class TblCompanyRecordController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" new file mode 100644 index 00000000..33a6b6dc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 企业公告 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblComparyNotice") +public class TblComparyNoticeController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" new file mode 100644 index 00000000..a8e4fabb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 自定义类型 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCustomType") +public class TblCustomTypeController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" new file mode 100644 index 00000000..21f1da57 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 仪表盘 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDashboard") +public class TblDashboardController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" new file mode 100644 index 00000000..2801fbe6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 工作日期 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDate") +public class TblDateController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" new file mode 100644 index 00000000..e7e42449 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 数据库设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDbSetting") +public class TblDbSettingController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" new file mode 100644 index 00000000..51d93488 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 数据库备份 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDbbackup") +public class TblDbbackupController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" new file mode 100644 index 00000000..5e51b425 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 数据库还原 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDbrecovery") +public class TblDbrecoveryController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" new file mode 100644 index 00000000..4700a7a3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 数据库 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDbsource") +public class TblDbsourceController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" new file mode 100644 index 00000000..d6b8cfdf --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 部门信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDept") +public class TblDeptController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" new file mode 100644 index 00000000..653361af --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 部门key 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDeptkey") +public class TblDeptkeyController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" new file mode 100644 index 00000000..fe0e7870 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 桌面 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDesktop") +public class TblDesktopController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" new file mode 100644 index 00000000..ae5bb2ff --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 邮件接受 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEmailReceive") +public class TblEmailReceiveController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" new file mode 100644 index 00000000..eab422a8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 邮件发送 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEmailSend") +public class TblEmailSendController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" new file mode 100644 index 00000000..b8e8905c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 员工通讯录类别 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEmployeeContactCategory") +public class TblEmployeeContactCategoryController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" new file mode 100644 index 00000000..30b87ac0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 员工通讯录 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEmployeeContact") +public class TblEmployeeContactController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" new file mode 100644 index 00000000..30159a79 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 环境配置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEnvirSetting") +public class TblEnvirSettingController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" new file mode 100644 index 00000000..731cbafb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 功能模块 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblFunctionModel") +public class TblFunctionModelController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" new file mode 100644 index 00000000..7eecdeb0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 群组档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblGroupRecord") +public class TblGroupRecordController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" new file mode 100644 index 00000000..6c8aae76 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 分组待办事项 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblGroupsTodo") +public class TblGroupsTodoController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" new file mode 100644 index 00000000..a7e7e723 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 分组用户 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblGroupsUser") +public class TblGroupsUserController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" new file mode 100644 index 00000000..8cca6357 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 登录日志 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblLoginLog") +public class TblLoginLogController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" new file mode 100644 index 00000000..855d71c4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 主菜单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMainMenu") +public class TblMainMenuController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" new file mode 100644 index 00000000..48c19d6e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 短信充值单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMessageCharge") +public class TblMessageChargeController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" new file mode 100644 index 00000000..1e8cc48b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 短信接受表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMessageReceive") +public class TblMessageReceiveController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" new file mode 100644 index 00000000..2d4f1bd5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 信息发送 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMessageSend") +public class TblMessageSendController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" new file mode 100644 index 00000000..4f1490c5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 信息接受 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMsgReceive") +public class TblMsgReceiveController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" new file mode 100644 index 00000000..0ecc2e95 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的记事本 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMyNote") +public class TblMyNoteController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" new file mode 100644 index 00000000..6195acdd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的意见 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMyadvice") +public class TblMyadviceController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" new file mode 100644 index 00000000..ae6721ed --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的驾驶舱 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMydash") +public class TblMydashController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" new file mode 100644 index 00000000..19a6e568 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的桌面 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMydesk") +public class TblMydeskController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" new file mode 100644 index 00000000..f4e8c5d5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的日程 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMyplan") +public class TblMyplanController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" new file mode 100644 index 00000000..0e2270f5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 个人设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMyset") +public class TblMysetController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" new file mode 100644 index 00000000..171ad93a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 网络硬盘_文件夹 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblNetdiskDir") +public class TblNetdiskDirController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" new file mode 100644 index 00000000..91fe91bd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 网络硬盘路径 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblNetdiskUrl") +public class TblNetdiskUrlController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" new file mode 100644 index 00000000..ba1da783 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 职位档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblPositionRecord") +public class TblPositionRecordController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" new file mode 100644 index 00000000..f1b7033c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 打印纸张宽度设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblPrintPaper") +public class TblPrintPaperController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" new file mode 100644 index 00000000..4160a8ef --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 打印参数 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblPrintParam") +public class TblPrintParamController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" new file mode 100644 index 00000000..c6cb492a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 快捷方式 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblQuick") +public class TblQuickController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" new file mode 100644 index 00000000..0a9c0d3a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 角色档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblRole") +public class TblRoleController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" new file mode 100644 index 00000000..69df7d10 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 角色菜单权限 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblRoleMenuPrivi") +public class TblRoleMenuPriviController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" new file mode 100644 index 00000000..50c085ac --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 规章制度 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblRule") +public class TblRuleController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" new file mode 100644 index 00000000..142d5a30 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 发送日志表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblSendLog") +public class TblSendLogController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" new file mode 100644 index 00000000..54172a9b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 快捷方式图标 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblShortcutIcon") +public class TblShortcutIconController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" new file mode 100644 index 00000000..755d557c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 到期日期 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblStopDate") +public class TblStopDateController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" new file mode 100644 index 00000000..8cccd266 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 系统图标 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblSysDiagrams") +public class TblSysDiagramsController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" new file mode 100644 index 00000000..257900ef --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 系统日志 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblSystemLog") +public class TblSystemLogController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" new file mode 100644 index 00000000..3ba141cd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 待办事项 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblTodo") +public class TblTodoController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" new file mode 100644 index 00000000..0ae181d2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 类型库 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblType") +public class TblTypeController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" new file mode 100644 index 00000000..c498bf80 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户部门表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserDept") +public class TblUserDeptController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" new file mode 100644 index 00000000..30c8e3b6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户分组 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserGroup") +public class TblUserGroupController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" new file mode 100644 index 00000000..a3cf52a5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserRecord") +public class TblUserRecordController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" new file mode 100644 index 00000000..f0062bb6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户角色表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserRole") +public class TblUserRoleController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" new file mode 100644 index 00000000..f9143e5f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户子公司表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserSubCompany") +public class TblUserSubCompanyController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" new file mode 100644 index 00000000..bef2c0fa --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 视频点播 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVod") +public class TblVodController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" new file mode 100644 index 00000000..5693d3f0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 投票数据表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVoteData") +public class TblVoteDataController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" new file mode 100644 index 00000000..04c72127 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 投票数据明细表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVoteDetail") +public class TblVoteDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" new file mode 100644 index 00000000..3a015b99 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 投票项目表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVoteProject1") +public class TblVoteProject1Controller { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" new file mode 100644 index 00000000..c4fb52b4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 投票题目表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVoteSubject") +public class TblVoteSubjectController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" new file mode 100644 index 00000000..7b4bbf77 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 工作日期 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblWorkDate") +public class TblWorkDateController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" new file mode 100644 index 00000000..18235f72 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 催缴短信提醒日志 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyAskMsgRemindLog") +public class WyAskMsgRemindLogController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" new file mode 100644 index 00000000..b02c3008 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 车辆管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCarManage") +public class WyCarManageController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" new file mode 100644 index 00000000..bc562c16 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 车位管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCarSpaceManage") +public class WyCarSpaceManageController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" new file mode 100644 index 00000000..6c3ea69f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 车位租赁 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCarSpaceRent") +public class WyCarSpaceRentController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" new file mode 100644 index 00000000..6bc45a0a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 车位租赁缴费明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCarSpaceRentDetail") +public class WyCarSpaceRentDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" new file mode 100644 index 00000000..10f7e8f4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 清洁检查 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCleanCheck") +public class WyCleanCheckController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" new file mode 100644 index 00000000..321e6374 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 清洁安排 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCleanPlan") +public class WyCleanPlanController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" new file mode 100644 index 00000000..5a129f62 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 清洁记录 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCleanRecord") +public class WyCleanRecordController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" new file mode 100644 index 00000000..970a3bde --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业委会成员 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCommitteeMembers") +public class WyCommitteeMembersController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" new file mode 100644 index 00000000..bc4bb6a3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业委会会议 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCommitteeMetting") +public class WyCommitteeMettingController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" new file mode 100644 index 00000000..10bb9e2c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 社区活动 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCommunityEvent") +public class WyCommunityEventController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" new file mode 100644 index 00000000..f4d52721 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 执勤管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyDutyManage") +public class WyDutyManageController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" new file mode 100644 index 00000000..64c66222 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 信件收取 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEmailReceive") +public class WyEmailReceiveController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" new file mode 100644 index 00000000..946e535e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费收入明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateIncomeDetail") +public class WyEstateIncomeDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" new file mode 100644 index 00000000..0d7f2858 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费收入项目 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateIncomeProject") +public class WyEstateIncomeProjectController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" new file mode 100644 index 00000000..ec356f9f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘费用 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateMoney") +public class WyEstateMoneyController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" new file mode 100644 index 00000000..2dc92abc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费支出明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateOutDetail") +public class WyEstateOutDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" new file mode 100644 index 00000000..166cd50a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费支出明细_审批子表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateOutDetailSub") +public class WyEstateOutDetailSubController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" new file mode 100644 index 00000000..18993a8d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费支出项目 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateOutProject") +public class WyEstateOutProjectController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" new file mode 100644 index 00000000..4cae98b1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 消防事故 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyFireAccident") +public class WyFireAccidentController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" new file mode 100644 index 00000000..1bf89c28 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 消防巡查 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyFireCheck") +public class WyFireCheckController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" new file mode 100644 index 00000000..e68b0eb1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 消防演练 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyFireExercise") +public class WyFireExerciseController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" new file mode 100644 index 00000000..b30a3836 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 消防设施 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyFireFacility") +public class WyFireFacilityController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" new file mode 100644 index 00000000..4e8c12e7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物品出入 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyGoodsInout") +public class WyGoodsInoutController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" new file mode 100644 index 00000000..fe3a85fd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 绿化检查 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyGreenCheck") +public class WyGreenCheckController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" new file mode 100644 index 00000000..871de4f8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 绿化设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyGreenSetting") +public class WyGreenSettingController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" new file mode 100644 index 00000000..f3fd75bc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 收入明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyIncomeDetail") +public class WyIncomeDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" new file mode 100644 index 00000000..3e02ad48 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 收入项目 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyIncomeProject") +public class WyIncomeProjectController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" new file mode 100644 index 00000000..65199184 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 票据管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyNoteManage") +public class WyNoteManageController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" new file mode 100644 index 00000000..443041b6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 支出明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyOutDetail") +public class WyOutDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" new file mode 100644 index 00000000..58296699 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 支出项目 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyOutProject") +public class WyOutProjectController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" new file mode 100644 index 00000000..ae205505 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 图纸管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyPictureManage") +public class WyPictureManageController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" new file mode 100644 index 00000000..088db74b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物业接管工程明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyPropertyTakeoverDetail") +public class WyPropertyTakeoverDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" new file mode 100644 index 00000000..8949939f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物业接管概要 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyPropertyTakeoverSchema") +public class WyPropertyTakeoverSchemaController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" new file mode 100644 index 00000000..d7419b61 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 续费短信提醒日志 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyRenewMsgRemindLog") +public class WyRenewMsgRemindLogController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" new file mode 100644 index 00000000..7e04fe0a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 保安安排 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wySecurityArrange") +public class WySecurityArrangeController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" new file mode 100644 index 00000000..1bd9aea8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 客服收银组 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyServiceCashierGroup") +public class WyServiceCashierGroupController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" new file mode 100644 index 00000000..c16edd2f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物业接管资料明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyTakeoverDataDetail") +public class WyTakeoverDataDetailController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" new file mode 100644 index 00000000..738d9db3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 植被信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyVegetationInformation") +public class WyVegetationInformationController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" new file mode 100644 index 00000000..52fb39ff --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 来访管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyVisitManage") +public class WyVisitManageController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" new file mode 100644 index 00000000..07d1512c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主装修 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhConstomerDecorate") +public class ZhConstomerDecorateController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" new file mode 100644 index 00000000..d9cf9401 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主投诉 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhConsumerComplain") +public class ZhConsumerComplainController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" new file mode 100644 index 00000000..16ab6b5f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主服务_办理结果 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCsHandleResult") +public class ZhCsHandleResultController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" new file mode 100644 index 00000000..5e3b0b23 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主服务_办理进度 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCsHandleSpeed") +public class ZhCsHandleSpeedController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" new file mode 100644 index 00000000..9fba207c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主请修 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerAskFix") +public class ZhCustomerAskFixController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" new file mode 100644 index 00000000..bdeda7fd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主验房 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerCheck") +public class ZhCustomerCheckController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" new file mode 100644 index 00000000..72e41402 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomer") +public class ZhCustomerController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" new file mode 100644 index 00000000..a9f515f2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主房产对照表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerEstate") +public class ZhCustomerEstateController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" new file mode 100644 index 00000000..7d871844 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主成员 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerMembers") +public class ZhCustomerMembersController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" new file mode 100644 index 00000000..09fd9261 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主服务 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerService") +public class ZhCustomerServiceController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" new file mode 100644 index 00000000..fbaaf909 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主服务类型 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerServiceType") +public class ZhCustomerServiceTypeController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" new file mode 100644 index 00000000..fcb9d8ea --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同房间 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContractCell") +public class ZhRentContractCellController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" new file mode 100644 index 00000000..fc9a7e73 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同变更 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContractChange") +public class ZhRentContractChangeController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" new file mode 100644 index 00000000..868064e6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContract") +public class ZhRentContractController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" new file mode 100644 index 00000000..33ee960c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同退款 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContractRefund") +public class ZhRentContractRefundController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" new file mode 100644 index 00000000..8d0a6df4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同返利 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContractReturn") +public class ZhRentContractReturnController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" new file mode 100644 index 00000000..a8b21571 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租户信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentInformation") +public class ZhRentInformationController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" new file mode 100644 index 00000000..6a4c3d09 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租金收取 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentReceive") +public class ZhRentReceiveController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" new file mode 100644 index 00000000..a4364501 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁分租信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentShare") +public class ZhRentShareController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" new file mode 100644 index 00000000..011a2ffd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租户转兑 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentTransfer") +public class ZhRentTransferController { + +} + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" new file mode 100644 index 00000000..02c5f487 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" @@ -0,0 +1,19 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcBuilding; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +/** + *

+ * 楼宇信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcBuildingMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" new file mode 100644 index 00000000..eac947f9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, estate_code, building_code, building_name, building_function, used_area, build_area, build_permission_id, sale_permission_id, finish_date, over_roof_date, decorate, struct_type, damage_grade, unit_count, building_type, clean_floor, mop_floor, channel_area, elevator, channel_door, evevator_door, water_well_door, electric_well_door, window_shades, hydrant, mirrors, unit_door, harden_ground_area, green_area, no_green_area, water_by_person, is_elevator, is_second_water_electric, random_identify, remark + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" new file mode 100644 index 00000000..33d8bb1c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcCellAddbuild; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 房间加建信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellAddbuildMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" new file mode 100644 index 00000000..6e7344a6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, cell_id, addbuild_area, addbuild_time, addbuild_state, addbuild_desc, addbuild_accessory, operate_person, operate_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" new file mode 100644 index 00000000..f5511605 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" @@ -0,0 +1,18 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcCell; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springframework.stereotype.Component; + +/** + *

+ * 房间信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcCellMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" new file mode 100644 index 00000000..57448c20 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, unit_code, cell_code, cell_name, cell_house_code, cell_toward_code, cell_function, cell_decorate_code, cell_used_area, cell_build_area, carport_area, car_area, loft_area, store_area, floor_number, last_debt, property_type, rent_money, length, width, stall_use, stall_area, is_sale, is_rent, sale_contract_id, rent_contract_id, remark, factor, cell_property, store_id, car_licence_id, car_space_id + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" new file mode 100644 index 00000000..14fe26da --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" @@ -0,0 +1,18 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcEstate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springframework.stereotype.Component; + +/** + *

+ * 楼盘信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcEstateMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" new file mode 100644 index 00000000..efe2c3ac --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, estate_code, estate_name, estate_addr, cover_area, build_area, green_area, road_area, building_number, building_leader, company_name, company_behalf, contact, contact_phone, contact_addr, car_space_delay_rate, car_space_over_day, estate_type, street_lamp_number, hfcNum, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" new file mode 100644 index 00000000..76480c81 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" @@ -0,0 +1,18 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcUnit; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springframework.stereotype.Component; + +/** + *

+ * 单元信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcUnitMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" new file mode 100644 index 00000000..b6ee64ed --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, building_code, unit_code, unit_name, start_floor, stop_floor, start_cell_id, stop_cell_id, remark + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" new file mode 100644 index 00000000..76cf5cdf --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyEstateTemporary; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 房产信息临时表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyEstateTemporaryMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" new file mode 100644 index 00000000..9996c751 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + company, estate_code, estate_name, building_code, building_name, unit_code, unit_name, cell_code, cell_name, build_area, floor_number, function, remark, operate_person + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" new file mode 100644 index 00000000..9ca0c09e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyHistoryMoneyTemp; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 历史费用临时表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyHistoryMoneyTempMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" new file mode 100644 index 00000000..fe7a89f0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + cell_id, cell_name, build_area, price_unit, money, money_start_date, money_stop_date, remark, operate_person + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" new file mode 100644 index 00000000..7e0be5cd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyInvalidMain; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 作废单主单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidMainMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" new file mode 100644 index 00000000..3a6a3255 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + invalid_id, receive_id, cell_id, receive_date, customer_name, money, real_receive_money, discount_money, receive_method, is_customer, receive_money, money_id, estate_id, current_delay_money, last_delay_money, invalid_type, receipt_number, invoice_number, receive_person, remark, company, invalid_reason, invalid_date, invalid_person + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" new file mode 100644 index 00000000..b9b60d1d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyInvalidSub; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 作废单子单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidSubMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" new file mode 100644 index 00000000..45442b4e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + invalid_detail_id, invalid_id, money_setting_name, charge_unit, last_read_number, current_read_number, real_used, money, delay_money, current_should_pay, over_day, money_start_date, money_stop_date, pay_limit_day, input_person, standing_book_id, receive_cycle, derate_money, money_id, delay_derate_money, mop_floor, money_mult + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" new file mode 100644 index 00000000..1bfdebe1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneySetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费项设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneySettingMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" new file mode 100644 index 00000000..90042a3f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_setting_code, money_setting_name, receive_type, price_unit, receive_cycle, money_type, is_update_price, is_convenient_money, min_used_number, is_step_receive, step_condition_1, step_price_1, step_condition_21, step_condition_22, step_price_2, step_condition_31, step_condition_32, step_price_3, step_condition_41, step_condition_42, step_price_4, step_condition_5, step_price_5, renew_message, receive_warn_stop_day, max_warn_number, ask_message, no_receive_warn_stop_day, associate_money_id, delay_rate, delay_over_day, company, receive_print_hidden + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" new file mode 100644 index 00000000..7caa4321 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneyTemporary01; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用临时表1 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary01Mapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" new file mode 100644 index 00000000..04e9ca1d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_id, record_name, record_remark, cell_id, estate_name, building_name, unit_name, cell_name, customer_name, box_id, price_unit, last_read_number, current_read_number, current_use_number, should_pay, last_pay_stop_date, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle, operate_person, operate_date, floor_factor, money_mult + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" new file mode 100644 index 00000000..af04a3f1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneyTemporary02; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用临时表2 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary02Mapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" new file mode 100644 index 00000000..11f47005 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_id, record_name, record_remark, cell_id, estate_name, building_name, unit_name, cell_name, customer_name, charge_unit, price_unit, should_pay, last_pay_stop_date, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle, operate_person, operate_date, floor_factor + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" new file mode 100644 index 00000000..0a2dfcfb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneyTemporary03; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用临时表3 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary03Mapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" new file mode 100644 index 00000000..74d6162c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_setting_code, record_name, record_remark, public_box_name, price_unit, share_number, last_read_number, current_read_number, current_use_number, should_pay, last_pay_stop_date, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle, operate_person, operate_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" new file mode 100644 index 00000000..a08eec0f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneyTemporary04; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用临时表4 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary04Mapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" new file mode 100644 index 00000000..e4dcb056 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_setting_code, cell_id, estate_name, building_name, unit_name, cell_name, customer_name, box_id, share_money, current_share_number, price_unit, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle, primary_identify, operate_person, operate_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" new file mode 100644 index 00000000..45dc9de6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyPreReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 预收款管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPreReceiveMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" new file mode 100644 index 00000000..6e4bd40b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, voucher_number, cell_id, summary, money, handler_person, receive_date, input_person, company, receive_method, data_source, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" new file mode 100644 index 00000000..4c07861b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyPropertyMoneyDist; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物业费分布 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPropertyMoneyDistMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" new file mode 100644 index 00000000..d61ef5dc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, cell_id, money_id, is_public_money, current_read_number, last_charge_unit, floor_factor, use_number_mult + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" new file mode 100644 index 00000000..1d28dc78 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyPublicBox; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公表信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" new file mode 100644 index 00000000..b7702087 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + public_box_id, money_id, public_box_read_number, share_method, public_box_state + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" new file mode 100644 index 00000000..4e22e989 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyPublicBoxUser; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公表关联用户 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxUserMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" new file mode 100644 index 00000000..e0f94645 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, public_box_id, cell_id + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" new file mode 100644 index 00000000..417fb677 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyReceiptMain; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 收款单主单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptMainMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" new file mode 100644 index 00000000..0f6b68ad --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, receive_date, customer_name, should_pay_total, current_should_receive, discount_money, receive_method, is_customer, current_real_receive, temporary_money_id, estate_id, current_delay_money, last_delay_money, title, receive_type, receipt_number, invoice_number, status, remark, receive_person, company, operate_date, update_person, update_date, update_reason, receipt_check_status, receipt_check_person, receipt_check_time, receipt_check_advice, money_check_status, money_check_person, money_check_time, money_check_advice + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" new file mode 100644 index 00000000..cce5dc33 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyReceiptSub; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 收款单子单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptSubMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" new file mode 100644 index 00000000..b562327f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + receipt_detail_id, receipt_id, money_setting_name, charge_unit, last_read_number, current_read_number, real_used, money, delay_money, delay_derate_money, current_should_pay, over_day, money_start_date, money_stop_date, pay_limit_day, floor_factor, input_person, standing_book_id, receive_cycle, derate_money, money_id, update_reason, update_person, update_date, money_mult + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" new file mode 100644 index 00000000..d2ca32c1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyRefundMain; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 退款单主单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundMainMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" new file mode 100644 index 00000000..9e614634 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + refund_id, receipt_id, cell_id, receive_cycle, customer_name, money, real_receive_money, discount_money, receive_method, is_customer, receive_money, money_id, estate_id, current_delay_money, last_delay_money, refund_type, receipt_number, invoice_number, receive_person, remark, company, refund_reason, refund_time, refund_person, check_status, check_person, check_time, check_advice + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" new file mode 100644 index 00000000..afbc04e8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyRefundSub; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 退款单子单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundSubMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" new file mode 100644 index 00000000..37b6e890 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, refund_id, money_setting_name, charge_unit, last_read_number, current_read_number, real_used, money, delay_money, current_should_pay, over_day, money_start_date, money_stop_date, pay_limit_day, input_person, standing_book_id, receive_cycle, money_derate, money_id, delay_derate_money, money_mult, floor_factor + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" new file mode 100644 index 00000000..c2d25edd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FySaleContract; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 销售合同 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FySaleContractMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" new file mode 100644 index 00000000..35b423aa --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + sale_contract_id, cell_id, contract_money, contract_date, pay_method, id_number, customer_name, online_phone, phone_number, remark, contract_attach + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" new file mode 100644 index 00000000..22b1e67c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyShareStandingBookDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公摊费用台账公表明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cb2be2cc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + id, standing_book_id, public_box_name, price_unit, share_number, last_read_number, current_read_number, current_use_number, should_pay, last_pay_stop_date, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" new file mode 100644 index 00000000..af81c2c3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyShareStandingBook; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公摊费用台账概要 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" new file mode 100644 index 00000000..9e2ba5af --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, standing_book_name, associate_cost_code, remark, create_date, create_person, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" new file mode 100644 index 00000000..bbd98de1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyShareUserDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公摊费用台账用户明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareUserDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" new file mode 100644 index 00000000..192f82be --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, standing_book_id, cell_id, customer_name, box_id, share_money, current_share_number, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_identify, price_unit, cost_identify, receive_id, refund_number, receive_cycle, derate_money, should_pay, invalid_number, derate_delay_money + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" new file mode 100644 index 00000000..0646e29f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyStandingBookDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用台账明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cd7b914d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, standing_book_id, cell_id, customer_name, box_id, charge_unit, price_unit, last_read_number, current_read_number, current_use_number, should_pay, last_pay_stop_date, last_pay_start_date, current_pay_stop_date, current_pay_limit_date, cost_identify, receive_identify, receive_id, refund_number, receive_cycle, derate_money, should_receive, invalid_number, floor_factor, derate_delay_money, pay_mult + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" new file mode 100644 index 00000000..5434c4a1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyStandingBook; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用台账概要 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" new file mode 100644 index 00000000..3561591e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, standing_book_name, associate_cost_code, remark, creation_date, creation_person, associate_standing_book_id, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" new file mode 100644 index 00000000..b6ceb6ee --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyTemporaryMoneySetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 临客费项设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyTemporaryMoneySettingMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" new file mode 100644 index 00000000..07469a2f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, temporary_money_name, upper_money_id, price_unit, money_description, create_person, create_date, update_person, update_date, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" new file mode 100644 index 00000000..e438f742 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblAdviceBox; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 意见箱 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAdviceBoxMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" new file mode 100644 index 00000000..cdf835b7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, name, type, status, admin_id, user_range_id, User_range_name, remark, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" new file mode 100644 index 00000000..7d3a782f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblAnswerData; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 题目可选答案信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAnswerDataMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" new file mode 100644 index 00000000..3d71ac1f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, subject_id, answer_name, answer_type, input_record_person, input_record_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" new file mode 100644 index 00000000..40c37016 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblArgRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 参数档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblArgRecordMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" new file mode 100644 index 00000000..b6e9e973 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + arg_code, arg_name, arg_value, arg_desc, arg_order, belong_product + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" new file mode 100644 index 00000000..4196be6c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblAttupload; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 附件 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAttuploadMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" new file mode 100644 index 00000000..b02b1db2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + attID, attName, attNewName, attKey, attClass + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" new file mode 100644 index 00000000..d7144d62 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblColor; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 颜色管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblColorMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" new file mode 100644 index 00000000..33c9dad8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, color + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" new file mode 100644 index 00000000..774e562e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCommonLanguage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 常用语 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonLanguageMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" new file mode 100644 index 00000000..0805d128 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, content, status, category, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" new file mode 100644 index 00000000..e0983f8f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCommonMessage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 常用短信 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonMessageMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" new file mode 100644 index 00000000..320b6709 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, message_content, message_type + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" new file mode 100644 index 00000000..34692b8d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" @@ -0,0 +1,21 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCompany; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springframework.stereotype.Component; + +import java.util.List; + +/** + *

+ * 企业档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface TblCompanyMapper extends BaseMapper { + + public List selectCompany(); +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" new file mode 100644 index 00000000..dd3a87b4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, company_full_name, company_simple_name, company_english_name, company_brand, company_type, company_trade, company_addr, post_code, company_phone, company_fax, company_website, company_email, company_national, company_land, open_bank, bank_account, company_leader, register_date, register_money, employee_number, company_intro, remark + + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" new file mode 100644 index 00000000..4f9bfbc4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCompanyRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 单位名录 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCompanyRecordMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" new file mode 100644 index 00000000..48558ff5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + id, company_name, company_add, company_type, compant_grade, parent_company, leader, post_code, company_phone, fax_number, email, simple_desc, remark, input_person, input_time + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" new file mode 100644 index 00000000..d19bc2a5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblComparyNotice; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 企业公告 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblComparyNoticeMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" new file mode 100644 index 00000000..656febfa --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, notice_theme, notice_content, start_date, stop_date, receive_type, notice_category, attach_name, attach_path, status, notice_type, notice_attach, input_person, input_date, check_person, check_date, check_advice, allow_user_code, allow_user_name + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" new file mode 100644 index 00000000..35c28e50 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCustomType; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 自定义类型 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCustomTypeMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" new file mode 100644 index 00000000..844dfed2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, name, status, category + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" new file mode 100644 index 00000000..b3a21a79 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDashboard; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 仪表盘 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDashboardMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" new file mode 100644 index 00000000..9adb7d0a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, data_item, more_path, privileges, Status, belong_product + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" new file mode 100644 index 00000000..b238c676 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 工作日期 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDateMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" new file mode 100644 index 00000000..85b85050 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" new file mode 100644 index 00000000..72b37cbe --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDbSetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 数据库设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbSettingMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" new file mode 100644 index 00000000..559dabd3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + db_Url, db_username, db_pwd, db_lib_name, save_path, save_name + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" new file mode 100644 index 00000000..32bb96ec --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDbbackup; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 数据库备份 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbbackupMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" new file mode 100644 index 00000000..4ca49194 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, db_name, db_url, operate_id, operate_person, operate_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" new file mode 100644 index 00000000..f24a0930 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDbrecovery; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 数据库还原 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbrecoveryMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" new file mode 100644 index 00000000..c6180843 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, db_name, db_url, operate_id, operate_person, operate_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" new file mode 100644 index 00000000..be418388 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDbsource; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 数据库 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbsourceMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" new file mode 100644 index 00000000..cfd2d95c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, source_name, source_desc, source_type, source_class, id_clear, update_date, belong_product + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" new file mode 100644 index 00000000..8e85fa24 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDept; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 部门信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" new file mode 100644 index 00000000..37832de8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, dept_code, dept_name, dept_leader, dept_phone, dept_type, dept_fax, dept_parent, dept_line, dept_privileges, dept_manage_privileges, organ_category, dept_person_number, input_person, input_time, dept_remark + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" new file mode 100644 index 00000000..ee45cbdc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDeptkey; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 部门key Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptkeyMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" new file mode 100644 index 00000000..46e98354 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, dept_name + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" new file mode 100644 index 00000000..f61480a2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDesktop; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 桌面 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDesktopMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" new file mode 100644 index 00000000..1513b0bd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, name, more_path, privileges, status, belong_product + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" new file mode 100644 index 00000000..d7a52ea0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEmailReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 邮件接受 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailReceiveMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" new file mode 100644 index 00000000..30a86c07 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, email_send_id, receive_id, receive_person_code, receive_person_name, email_title, email_content, important_grade, status, is_delete, is_secret_send, email_attach, receive_type, send_person_id, send_person_name, send_date, receive_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" new file mode 100644 index 00000000..760d40fa --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEmailSend; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 邮件发送 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailSendMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" new file mode 100644 index 00000000..c0807b5d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + id, receive_person_code, receive_person_name, email_title, email_content, important_grade, is_draft, is_delete, is_secret_send, email_attach, send_type, send_person, send_name, send_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" new file mode 100644 index 00000000..c953523e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEmployeeContactCategory; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 员工通讯录类别 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactCategoryMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" new file mode 100644 index 00000000..458488e0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, category_name, order_id, remark, parent_category_id, line, create_person_id, create_person, privileges + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" new file mode 100644 index 00000000..5c538e3d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEmployeeContact; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 员工通讯录 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" new file mode 100644 index 00000000..dc8aa233 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, order_id, category_name, category_id, name, work_num, dept, role, position, gender, birthday, office_phone, fax, move_phone, home_phone, email, qq, wchat, inner_msn, addr, post_code, remark, create_person_id, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" new file mode 100644 index 00000000..3392fe18 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEnvirSetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 环境配置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEnvirSettingMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" new file mode 100644 index 00000000..21fa88ee --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, logo_name, product_name, version, current_version, type, is_main, custom_text_one, custom_text_two, custom_text_three, custom_text_four, set_time, product_id + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" new file mode 100644 index 00000000..5236c6b7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblFunctionModel; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 功能模块 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblFunctionModelMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" new file mode 100644 index 00000000..35ef93cd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, model_name, model_type, model_parent, model_status, model_url, model_analyse_ref, model_report_analyse, model_icon, model_property, model_desc, is_control, m_full, m_add, m_mod, m_del, m_exp, m_aud, m_exe, m_que, d_person, d_dept, d_company, orderid, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" new file mode 100644 index 00000000..f43dea95 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblGroupRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 群组档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupRecordMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" new file mode 100644 index 00000000..fbf84dfa --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + group_record_id, group_name, group_type, group_desc, group_member_id, group_member_name, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" new file mode 100644 index 00000000..38ec96a0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblGroupsTodo; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 分组待办事项 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsTodoMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" new file mode 100644 index 00000000..eacce737 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, todo_id + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" new file mode 100644 index 00000000..36fba31c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblGroupsUser; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 分组用户 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsUserMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" new file mode 100644 index 00000000..a8fbf84d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + group_id, obj_id, obj_type + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" new file mode 100644 index 00000000..01a62dbb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblLoginLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 登录日志 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblLoginLogMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" new file mode 100644 index 00000000..d8c1d1f6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, login_date, login_ip, login_status, open_mk, login_mechine_name, login_port, login_door + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" new file mode 100644 index 00000000..53c62c6c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMainMenu; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 主菜单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMainMenuMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" new file mode 100644 index 00000000..4a25e381 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, main_menu_name, main_menu_url, main_menu_icon, main_menu_status, main_menu_key, main_menu_order, belong_product + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" new file mode 100644 index 00000000..7766e7c0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMessageCharge; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 短信充值单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageChargeMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" new file mode 100644 index 00000000..3d8d6998 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + charge_number, charge_account, charge_money, charge_desc, charge_person, charge_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" new file mode 100644 index 00000000..750c80a4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMessageReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 短信接受表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageReceiveMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" new file mode 100644 index 00000000..cdcea02d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, phone, extend_phone, message_content, reply_date, position_order, receive_date, read_tag, read_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" new file mode 100644 index 00000000..eac8eddc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMessageSend; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 信息发送 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageSendMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" new file mode 100644 index 00000000..8c76b775 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, content, send_person, send_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" new file mode 100644 index 00000000..a44766d3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMsgReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 信息接受 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMsgReceiveMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" new file mode 100644 index 00000000..baa161cf --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, receive_person, status + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" new file mode 100644 index 00000000..66be8bd9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMyNote; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的记事本 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyNoteMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" new file mode 100644 index 00000000..c4fe8b9b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, create_person_id, title, type, place, content, is_private, is_repeat, repeat, repeat_stop, is_remain, remain_day, start_date, stop_date, order_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" new file mode 100644 index 00000000..9956d03c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMyadvice; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的意见 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyadviceMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" new file mode 100644 index 00000000..378ae930 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, title, content, advice_box, status, attach_name, publisher_id, publisher_name, publisher_date, reply_content, reply_id, reply_name, reply_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" new file mode 100644 index 00000000..592f2f5e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMydash; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的驾驶舱 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydashMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" new file mode 100644 index 00000000..dc567184 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, dash_id, order_id, username, show_num + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" new file mode 100644 index 00000000..fe8dc6f8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMydesk; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的桌面 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydeskMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" new file mode 100644 index 00000000..ef31ed22 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, belong_model, order_id, username, show_num + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" new file mode 100644 index 00000000..88fe58d7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMyplan; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的日程 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyplanMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" new file mode 100644 index 00000000..e56d1170 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + id, plan_theme, plan_addr, start_date, stop_date, plan_type, plan_status, plan_prior, field_bak, plan_desc, attach_name, attach_url, owner, create_date, plan_attach + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" new file mode 100644 index 00000000..dca74c9e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMyset; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 个人设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMysetMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" new file mode 100644 index 00000000..53f67262 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + id, username, id_remain, remain_interval, remain_window_open, message_remain, default_main, email_all, smtp_addr, login_user, login_pwd, mail_port, send_person, page_count + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" new file mode 100644 index 00000000..8a2e2c50 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblNetdiskDir; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 网络硬盘_文件夹 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskDirMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" new file mode 100644 index 00000000..2066fc38 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, name, parent_dir, is_share, user_id, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" new file mode 100644 index 00000000..829761c5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblNetdiskUrl; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 网络硬盘路径 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskUrlMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" new file mode 100644 index 00000000..76b4cc68 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, dir_id, file_name, new_name, file_type, file_size, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" new file mode 100644 index 00000000..c42a30f0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblPositionRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 职位档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPositionRecordMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" new file mode 100644 index 00000000..b6197ea0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, position_name, position_desc, position_duty, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" new file mode 100644 index 00000000..029b7a28 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblPrintPaper; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 打印纸张宽度设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintPaperMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" new file mode 100644 index 00000000..1bee0591 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, paper_name, paper_value, paper_status + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" new file mode 100644 index 00000000..40be953a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblPrintParam; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 打印参数 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintParamMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" new file mode 100644 index 00000000..161d6c48 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + print_id, print_name, print_value, print_desc + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" new file mode 100644 index 00000000..2b00fd46 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblQuick; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 快捷方式 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblQuickMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" new file mode 100644 index 00000000..e27d5181 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, quick_name, url_param, code_path, icon_name, mechine_name, public_type, type, input_record_person, input_record_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" new file mode 100644 index 00000000..aa7fe8dd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblRole; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 角色档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" new file mode 100644 index 00000000..f57ab44b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, role_name, role_type, role_privileges, role_remark, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" new file mode 100644 index 00000000..77f9a37c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblRoleMenuPrivi; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 角色菜单权限 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleMenuPriviMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" new file mode 100644 index 00000000..160b35af --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + role_id, model_id + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" new file mode 100644 index 00000000..d40db931 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblRule; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 规章制度 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRuleMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" new file mode 100644 index 00000000..a862b66c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, title, content, use_range, category, article_number, level, secret_level, title_word, publish_company, attach_name, attach_path, status, create_person, create_date, check_person, check_date, check_advice, allow_user_code, allow_user_name, rule_attach + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" new file mode 100644 index 00000000..b2595e2c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblSendLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 发送日志表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSendLogMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" new file mode 100644 index 00000000..20e131e1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, send_name, request_date, send_tag, timing_date, message_type, extend_phone, receive_phone, message_content, is_send, receive_identify + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" new file mode 100644 index 00000000..7d234a29 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblShortcutIcon; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 快捷方式图标 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblShortcutIconMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" new file mode 100644 index 00000000..71994c36 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, icon_name, icon_path, status + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" new file mode 100644 index 00000000..b2796ad4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblStopDate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 到期日期 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblStopDateMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" new file mode 100644 index 00000000..53b841f1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, name, days + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" new file mode 100644 index 00000000..f7182607 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblSysDiagrams; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 系统图标 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSysDiagramsMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" new file mode 100644 index 00000000..ee5d0d60 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + diagram_name, belong_person, diagram_id, diagram_version, diagram_definition + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" new file mode 100644 index 00000000..be89dacb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblSystemLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 系统日志 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSystemLogMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" new file mode 100644 index 00000000..9d79e6df --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, log_content, model_id, ip_addr, dept_privileges, operate_id, operate_name, dept_id, dept_name, operate_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" new file mode 100644 index 00000000..f7839dbe --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblTodo; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 待办事项 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTodoMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" new file mode 100644 index 00000000..51e5975d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, name, privileges, status, url, show_number, days, belong_product + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" new file mode 100644 index 00000000..70956c0b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblType; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 类型库 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTypeMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" new file mode 100644 index 00000000..eb22c5a6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, type_name, type_status, belong_product + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" new file mode 100644 index 00000000..bdcce86b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserDept; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 用户部门表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserDeptMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" new file mode 100644 index 00000000..e6d8657d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, dept_id + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" new file mode 100644 index 00000000..7842c31a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserGroup; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 用户分组 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserGroupMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" new file mode 100644 index 00000000..ffa8728d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, group_name, group_type, group_desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" new file mode 100644 index 00000000..36794b99 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" @@ -0,0 +1,20 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Param; +import org.springframework.stereotype.Component; + +/** + *

+ * 用户档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface TblUserRecordMapper extends BaseMapper { + + public TblUserRecord login(@Param("username") String username, @Param("password") String password); +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" new file mode 100644 index 00000000..dfaa7780 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, user_name, user_password, user_type, user_role, user_gender, user_dept, user_job, user_status, office_phone, inner_phone, move_phone, email, is_send_msg, start_date, stop_date, birthday, ip_rule, user_hiredate, is_send_wchat, remark, company, is_dept_admin, last_login_date, create_person, create_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" new file mode 100644 index 00000000..0f1103fc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserRole; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 用户角色表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserRoleMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" new file mode 100644 index 00000000..6eae3b8f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, role_id + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" new file mode 100644 index 00000000..000795b2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserSubCompany; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 用户子公司表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserSubCompanyMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" new file mode 100644 index 00000000..dd40ea54 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, company_id + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" new file mode 100644 index 00000000..6f5da938 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVod; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 视频点播 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVodMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" new file mode 100644 index 00000000..d9f412b6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, video_name, video_source, videl_type, program_name, program_url, simple_intro, is_first, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" new file mode 100644 index 00000000..4c2668e9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVoteData; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 投票数据表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDataMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" new file mode 100644 index 00000000..b671e2c6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, vote_project_id, vote_user_id, vote_user_name, vote_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" new file mode 100644 index 00000000..3eade778 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVoteDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 投票数据明细表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" new file mode 100644 index 00000000..b2144d43 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, vote_id, answer_id, result + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" new file mode 100644 index 00000000..917dfdf1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVoteProject1; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 投票项目表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteProject1Mapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" new file mode 100644 index 00000000..8cccbf63 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, project_name, project_type, project_tag, project_desc, input_record_person, input_record_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" new file mode 100644 index 00000000..382495ba --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVoteSubject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 投票题目表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteSubjectMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" new file mode 100644 index 00000000..22c9630e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, project_id, subject_name, input_record_person, input_record_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" new file mode 100644 index 00000000..d180ed91 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblWorkDate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 工作日期 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblWorkDateMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" new file mode 100644 index 00000000..0a800a7b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" new file mode 100644 index 00000000..492be76d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyAskMsgRemindLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 催缴短信提醒日志 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyAskMsgRemindLogMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" new file mode 100644 index 00000000..4f14698d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, cell_id, money_id, receive_phone, pay_limit_day, remind_days, cell_name, send_person_id, send_person_name, send_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" new file mode 100644 index 00000000..bf1a8d28 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCarManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 车辆管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarManageMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" new file mode 100644 index 00000000..95452789 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, car_licnece, stop_car_licence, car_owner_name, carport, in_date, out_date, agent, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" new file mode 100644 index 00000000..a8c50a3f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCarSpaceManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 车位管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceManageMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" new file mode 100644 index 00000000..e976b0d3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, car_space_type, car_licence_id, pre_sale_price, pre_rent_price, stop_car_licence, estate_id, manage_type, car_sapce_position, car_sapce_area, owner_id, owner_name, real_sale_price, car_space_category, status, remark, create_person, create_date, update_person, update_date, sale_person, sale_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" new file mode 100644 index 00000000..1e37116b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCarSpaceRentDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 车位租赁缴费明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" new file mode 100644 index 00000000..39f79d5c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, rent_id, pay_type, pay_start_date, pay_stop_date, should_receive, discount_money, delay_money, real_receive_money, desc, receive_id, receive_person_name, receive_date, invoice_number, receive_status, invalid_person_id, invalid_person_name, invalid_reason, invalid_date, receipt_check_status, receipt_check_person, receipt_check_time, receipt_check_advice, money_check_status, money_check_person, money_check_time, money_check_advice, invalid_check_status, invalid_check_person, invalid_check_time, invalid_check_advice + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" new file mode 100644 index 00000000..841388dd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCarSpaceRent; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 车位租赁 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" new file mode 100644 index 00000000..8501fd02 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, constract_id, car_space_id, rent_start_date, rent_stop_date, rent_month, user_id, user_name, car_licence_id, stop_car_licence, rent_per_month, service_money_per_month, sign_date, start_date, stop_date, status, remark, agent_money, is_rent_money, contract_attach, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" new file mode 100644 index 00000000..227fd4b1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCleanCheck; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 清洁检查 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanCheckMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" new file mode 100644 index 00000000..46fe0eb2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, check_date, check_place, check_condition, check_person, clean_person, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" new file mode 100644 index 00000000..e23a1dfd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCleanPlan; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 清洁安排 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanPlanMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" new file mode 100644 index 00000000..84dac630 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, project_name, clean_place, clean_content, leader, clean_date, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" new file mode 100644 index 00000000..ad6991e2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCleanRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 清洁记录 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanRecordMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" new file mode 100644 index 00000000..d7ad9898 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, project_id, clean_condition, clean_date, clean_person, remark + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" new file mode 100644 index 00000000..b1b893c4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCommitteeMembers; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业委会成员 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMembersMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" new file mode 100644 index 00000000..6b519077 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, member_code, member_name, member_duty, birthday, gender, phone_number, work_place, self_introduce, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" new file mode 100644 index 00000000..e1d7502b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCommitteeMetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业委会会议 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMettingMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" new file mode 100644 index 00000000..90027bfe --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, meeting_date, meeting_title, meeting_addr, meeting_content, hoster, recorder, joiner, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" new file mode 100644 index 00000000..ab154d1d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCommunityEvent; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 社区活动 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommunityEventMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" new file mode 100644 index 00000000..39320f02 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, event_date, event_content, hoster, join_person, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" new file mode 100644 index 00000000..4d47cf6b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyDutyManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 执勤管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyDutyManageMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" new file mode 100644 index 00000000..053e4f19 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, duty_date, duty_person, duty_type, duty_place, duty_record, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" new file mode 100644 index 00000000..0071481d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEmailReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 信件收取 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEmailReceiveMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" new file mode 100644 index 00000000..f937d489 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + id, receive_date, get_date, email_type, receive_unit, number, get_person, card_type, card, agent, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" new file mode 100644 index 00000000..7c9db4c5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateIncomeDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费收入明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" new file mode 100644 index 00000000..bc0adf13 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, charge_date, estate_id, income_project, income_money, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" new file mode 100644 index 00000000..1482ae44 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateIncomeProject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费收入项目 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeProjectMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" new file mode 100644 index 00000000..f9c3c1e5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, income_project, parent_income_id, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" new file mode 100644 index 00000000..bdc693ae --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateMoney; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘费用 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateMoneyMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" new file mode 100644 index 00000000..7675256f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, charge_year, money, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" new file mode 100644 index 00000000..0bbfe2d0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateOutDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费支出明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" new file mode 100644 index 00000000..0c874a9d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, charge_date, estate_id, output_main_project, output_sub_project, output_money, output_money_year, output_money_main, status, desc, create_person, create_date, update_person, update_date, next_receive_person_id, next_receive_person_name, send_check_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" new file mode 100644 index 00000000..d0308f03 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateOutDetailSub; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费支出明细_审批子表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailSubMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" new file mode 100644 index 00000000..41a5b27e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, belong_out_project_id, receive_date, check_advice, check_person_id, check_person_name, check_date, check_status + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" new file mode 100644 index 00000000..d041a8b7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateOutProject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费支出项目 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutProjectMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" new file mode 100644 index 00000000..a4d7a8d1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, project_name, parent_out_project_id, belong_main_projecct, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" new file mode 100644 index 00000000..54f7c872 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyFireAccident; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 消防事故 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireAccidentMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" new file mode 100644 index 00000000..143f3fb9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, accident_date, accident_place, occur_reason, related_person, handle_result, loss, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" new file mode 100644 index 00000000..10ae7e06 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyFireCheck; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 消防巡查 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireCheckMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" new file mode 100644 index 00000000..9b46c4c4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, check_date, check_place, check_person, check_condition, handle_advice, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" new file mode 100644 index 00000000..cb97cd7f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyFireExercise; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 消防演练 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireExerciseMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" new file mode 100644 index 00000000..1ef75962 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, unit, start_date, stop_date, exercise_purpose, join_persons, assistant_unit, exercise_content, exercise_result, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" new file mode 100644 index 00000000..600459f2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyFireFacility; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 消防设施 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireFacilityMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" new file mode 100644 index 00000000..8f15878b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, facility_name, specifications, unit, number, place, leader, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" new file mode 100644 index 00000000..7020bf79 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyGoodsInout; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物品出入 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGoodsInoutMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" new file mode 100644 index 00000000..f35e7dd6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + id, inout_date, carry_person, id_card, input_type, live_addr, inout_unit, customer_name, inout_goods, agent, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" new file mode 100644 index 00000000..0b0f0d41 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyGreenCheck; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 绿化检查 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenCheckMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" new file mode 100644 index 00000000..b6af8384 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, green_code, check_date, check_condition, handle_condition, check_person, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" new file mode 100644 index 00000000..17e62a80 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyGreenSetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 绿化设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenSettingMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" new file mode 100644 index 00000000..c6924615 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + setting_code, setting_name, area, green_date, green_place, leader, main_vegetation, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" new file mode 100644 index 00000000..91d8c55d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyIncomeDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 收入明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" new file mode 100644 index 00000000..a7e822e7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, charge_date, estate_id, income_project, income_money, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" new file mode 100644 index 00000000..3b18e868 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyIncomeProject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 收入项目 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeProjectMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" new file mode 100644 index 00000000..75422fe4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, income_project_name, parent_income_id, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" new file mode 100644 index 00000000..54eb80d5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyNoteManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 票据管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyNoteManageMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" new file mode 100644 index 00000000..1e48b3aa --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + note_id, note_prefix, note_serial_number, note_status, note_desc, user_id, user_name, create_person, create_date, update_person, update_date, assign_person_id, assign_person_name, assign_date, print_person_id, print_person_name, print_date, note_type, receive_money_id, invalid_reason, invalid_person_id, invalid_person_name, invalid_date, invalid_confirm_person, invalid_confirm_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" new file mode 100644 index 00000000..8c80c030 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyOutDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 支出明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" new file mode 100644 index 00000000..b1d4888c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, charge_date, estate_id, out_project, out_money, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" new file mode 100644 index 00000000..46d9fab5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyOutProject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 支出项目 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutProjectMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" new file mode 100644 index 00000000..a14a5e14 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, out_project_name, parent_out_project_id, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" new file mode 100644 index 00000000..825f5e8d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyPictureManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 图纸管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPictureManageMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" new file mode 100644 index 00000000..95e41b69 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, picture_name, picture_type, desc, picture_attach, company, upload_person, upload_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" new file mode 100644 index 00000000..0d4bc17f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyPropertyTakeoverDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物业接管工程明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" new file mode 100644 index 00000000..8a8b5629 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, takeover_id, project_name, checked, checked_date, checked_result, finish_date, finish_condition, remark + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" new file mode 100644 index 00000000..8c1dfdc7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyPropertyTakeoverSchema; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物业接管概要 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverSchemaMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" new file mode 100644 index 00000000..cf05f682 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, takeover_title, estate_id, remark, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" new file mode 100644 index 00000000..cedd97b6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyRenewMsgRemindLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 续费短信提醒日志 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyRenewMsgRemindLogMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" new file mode 100644 index 00000000..aa8112ff --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, cell_id, money_id, receive_phone, money_stop_date, remind_days, cell_name, send_person_id, send_person_name, send_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" new file mode 100644 index 00000000..478dd8ba --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WySecurityArrange; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 保安安排 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WySecurityArrangeMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" new file mode 100644 index 00000000..11270014 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, start_date, stop_date, classes, time_frame, district, waterkeeper, job, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" new file mode 100644 index 00000000..e31decca --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyServiceCashierGroup; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 客服收银组 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyServiceCashierGroupMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" new file mode 100644 index 00000000..815b3fcc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + id, name, include_building_code, include_building_name, include_service_code, include_service_name, desc, company, create_person, create_date, update_person, update_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" new file mode 100644 index 00000000..c60cb46c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyTakeoverDataDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物业接管资料明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyTakeoverDataDetailMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" new file mode 100644 index 00000000..3c62c16e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, takeover_id, data_name, data_copies, data_pages, data_type, file_number, handover_person, receive_person, receive_date, remark + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" new file mode 100644 index 00000000..3e6d01de --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyVegetationInformation; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 植被信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVegetationInformationMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" new file mode 100644 index 00000000..5639f342 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + vegetation_id, vegetation_name, vegetation_type, vegetation_age, vegetation_number, vegetation_unit, vegetation_habit, vegetation_feature, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" new file mode 100644 index 00000000..f5719bb3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyVisitManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 来访管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVisitManageMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" new file mode 100644 index 00000000..8964260f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + id, visit_date, leave_date, visit_person, id_card, visit_addr, visit_reason, visited_person, visited_reason, agent, remark, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" new file mode 100644 index 00000000..7d8b163f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhConstomerDecorate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主装修 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConstomerDecorateMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" new file mode 100644 index 00000000..21d2d998 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, proposer, phone_number, proposer_date, decorate_content, check_person, decorate_ensure_money, check_date, check_advice, leader_phone, execute_company, execute_start_date, leader, checked_person, execute_stop_date, checked_advice, checked_date, remark, status, create_person, create_date, identify, confirm_person, confirm_date, decorate_attach, against_money, invalid_person, invalid_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" new file mode 100644 index 00000000..fd3274b9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhConsumerComplain; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主投诉 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConsumerComplainMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" new file mode 100644 index 00000000..8099f652 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, complain_person, complain_phone, complain_date, phone_number, reception_person, complain_type, status, start_accept_person, start_accept_date, accept_result, accept_finish_person, accept_finish_date, datasource, refer_attach, return_visit_person, return_visit_date, is_satisfy, customer_evaluate, create_person, create_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" new file mode 100644 index 00000000..3ca600a9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCsHandleResult; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主服务_办理结果 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleResultMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" new file mode 100644 index 00000000..d9b094ed --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, service_id, transactor_id, transactor_name, is_leader, relation_company, phone_number, handle_start_date, handle_stop_date, handle_result, handle_finish_attach + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" new file mode 100644 index 00000000..b9e0b5c9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCsHandleSpeed; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主服务_办理进度 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleSpeedMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" new file mode 100644 index 00000000..bdaca0c1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, service_id, transactor_name, transactor_date, transactor_content, recorder_id, recorder_name, recorder_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" new file mode 100644 index 00000000..8be4efbb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerAskFix; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主请修 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerAskFixMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" new file mode 100644 index 00000000..43bf0708 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, proposer, proposer_date, ask_fix_content, check_person, fix_money, check_date, check_advice, leader_phone, execute_company, execute_start_date, leader, checked_person, execute_stop_date, checked_date, checked_advice, remark, status, create_person, create_date, identify, confirm_person, confirm_date, checked_attach, refer_attach, phone_number + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" new file mode 100644 index 00000000..a657f2b3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerCheck; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主验房 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerCheckMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" new file mode 100644 index 00000000..58ea57b6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, check_date, confirm_date, check_item_id, check_item_name, is_pass, consumer_advice, house_keeper_advice, check_person, remark, input_person, input_date, update_person, update_date, check_house_type + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" new file mode 100644 index 00000000..ad812b47 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerEstate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主房产对照表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerEstateMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" new file mode 100644 index 00000000..f5bb4acb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, customer_id, customer_name, cell_id, use_status, live_date, decorate_date, subscription_card_number, house_code, is_pay_decorate_money, pre_pay_decorate_money, remark, orderid + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" new file mode 100644 index 00000000..ffb0e92b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomer; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" new file mode 100644 index 00000000..3bc55605 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, customer_code, customer_pwd, customer_name, customer_birthday, customer_gender, open_bank, nationality, bank_account, education, certificate_number, certificate_type, work_place, customer_duty, police, nation, phone_number, native_place, address, post_code, urgency_user_name, urgency_user_phone, urgency_user_address, customer_status, customer_type, picture, remark, create_person, create_date, update_person, update_date, company, is_bank_withhold + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" new file mode 100644 index 00000000..473ac749 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerMembers; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主成员 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerMembersMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" new file mode 100644 index 00000000..6ddbe86d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, belong_customer_id, name, birdate, gender, ration, certificate_type, certificate_number, education, remark, work_place, phone_number, picture + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" new file mode 100644 index 00000000..0f7af99b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerService; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主服务 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" new file mode 100644 index 00000000..afb892bb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, proposer, phone_number, appeal_date, appeal_event, status, service_type, create_person, create_date, identify, check_person, check_date, check_advice, service_money, return_visit_person, return_visit_date, is_satisfy, customer_evaluate, refer_attach + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" new file mode 100644 index 00000000..5743d6fd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerServiceType; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主服务类型 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceTypeMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" new file mode 100644 index 00000000..2b3a0c9c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, type_name, type_price, type_desc, type_status, create_person, create_date, update_person, update_date, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" new file mode 100644 index 00000000..27f0027b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContractCell; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同房间 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractCellMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" new file mode 100644 index 00000000..350520e6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, contract_id, stall_message, operate_person, operate_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" new file mode 100644 index 00000000..face874f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContractChange; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同变更 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractChangeMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" new file mode 100644 index 00000000..31df2ef7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, contract_id, change_project, old_value, new_value, desc, change_person, change_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" new file mode 100644 index 00000000..f2bddf67 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContract; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" new file mode 100644 index 00000000..e650c63c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, sign_date, start_date, stop_date, rent_id, contact, start_rent_date, stop_rent_date, contract_rent_money, receive_area, contract_status, ensure_money, ensure_money_desc, contract_attach, rent_days, admin_money, is_rent_money, pay_method, remark, create_person, create_date, update_person, update_date, attract_person_id, attract_person_name, company + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" new file mode 100644 index 00000000..6932d3a6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContractRefund; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同退款 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractRefundMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" new file mode 100644 index 00000000..af18e667 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, rent_id, rent_name, refund_time, refund_money, refund_status, refund_desc, operate_id, operate_person, operate_date, invalid_id, invalid_person, invalid_reason, invalid_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" new file mode 100644 index 00000000..fee9fb8e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContractReturn; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同返利 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractReturnMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" new file mode 100644 index 00000000..e0291c07 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, rent_id, rent_name, return_money_start, return_money_stop, return_cardinal_money, return_rate, current_return_money, return_money_status, return_money_desc, operate_id, operate_name, operate_date, invalid_id, invalid_person, invalid_date, invalid_reason, update_person_id, update_person_name, update_date, update_reason + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" new file mode 100644 index 00000000..b4ffcbf1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentInformation; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租户信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentInformationMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" new file mode 100644 index 00000000..af5fc9a7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, rent_code, rent_name, member_of_right, rent_type, contact, gender, home_number, phone_number, addr, certificate_type, main_sale, certificate_number, status, remark, picture_url, create_person, create_date, update_person, update_date, company, pwd, rent_attach + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" new file mode 100644 index 00000000..4c87b491 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租金收取 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentReceiveMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" new file mode 100644 index 00000000..09e7c566 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, rent_id, rent_name, rent_start_date, rent_stop_date, rent_money, desc, receive_id, receive_person, receive_date, receive_status, invalid_id, invalid_person_name, invalid_reason, invalid_date, past_receive_method, receipt_check_status, receipt_check_person, receipt_check_time, receipt_check_advice + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" new file mode 100644 index 00000000..813331ad --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentShare; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁分租信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentShareMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" new file mode 100644 index 00000000..fbb1d425 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, rent_name, share_rent_person, share_cell_id, share_cell_name, contact, phone_number, start_date, stop_date, sale_range, remark, operate_id, operate_person, operate_date, update_person_id, update_person_name, update_date, update_reason + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" new file mode 100644 index 00000000..c484aa0e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentTransfer; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租户转兑 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentTransferMapper extends BaseMapper { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" new file mode 100644 index 00000000..e7b5f0f7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, contract_id, transfer_out_id, transfer_out_name, transfer_in_id, transfer_in_name, change_name_money, transfer_desc, transfer_date, operate_person, operate_date + + + diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" new file mode 100644 index 00000000..faf18ebc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" @@ -0,0 +1,28 @@ +package com.mashibing.returnJson; + +public class Permission { + + private String permissionId; + + public Permission() { + } + + public Permission(String permissionId) { + this.permissionId = permissionId; + } + + public String getPermissionId() { + return permissionId; + } + + public void setPermissionId(String permissionId) { + this.permissionId = permissionId; + } + + @Override + public String toString() { + return "Permission{" + + "permissionId='" + permissionId + '\'' + + '}'; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" new file mode 100644 index 00000000..c72ead08 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" @@ -0,0 +1,23 @@ +package com.mashibing.returnJson; + +import java.util.List; + +public class Permissions { + + private List permissions; + + public List getPermissions() { + return permissions; + } + + public void setPermissions(List permissions) { + this.permissions = permissions; + } + + @Override + public String toString() { + return "Permissions{" + + "permissions=" + permissions + + '}'; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" new file mode 100644 index 00000000..b195bfd1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" @@ -0,0 +1,53 @@ +package com.mashibing.returnJson; + +public class ReturnObject { + + private Integer code = 200; + private String message = ""; + private Object result; + + public ReturnObject() { + } + + public ReturnObject(Object result) { + this.result = result; + } + + public ReturnObject(String message, Object result) { + this.message = message; + this.result = result; + } + + public Integer getCode() { + return code; + } + + public void setCode(Integer code) { + this.code = code; + } + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Object getResult() { + return result; + } + + public void setResult(Object result) { + this.result = result; + } + + @Override + public String toString() { + return "ReturnObject{" + + "code=" + code + + ", message='" + message + '\'' + + ", result=" + result + + '}'; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" new file mode 100644 index 00000000..d62a2b7c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" @@ -0,0 +1,46 @@ +package com.mashibing.returnJson; + +public class UserInfo { + + private String name; + private String avatar = "/avatar2.jpg"; + private Permissions role; + + public UserInfo(String name, Permissions role) { + this.name = name; + this.role = role; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getAvatar() { + return avatar; + } + + public void setAvatar(String avatar) { + this.avatar = avatar; + } + + public Permissions getRole() { + return role; + } + + public void setRole(Permissions role) { + this.role = role; + } + + @Override + public String toString() { + return "UserInfo{" + + "name='" + name + '\'' + + ", avatar='" + avatar + '\'' + + ", role=" + role + + '}'; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" new file mode 100644 index 00000000..585358e5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" @@ -0,0 +1,120 @@ +package com.mashibing.service; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.mashibing.bean.*; +import com.mashibing.mapper.*; +import com.mashibing.vo.CellMessage; +import com.mashibing.vo.UnitMessage; +import javafx.scene.control.Cell; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.List; + +@Service +public class EstateService { + + @Autowired + private TblCompanyMapper tblCompanyMapper; + @Autowired + private FcEstateMapper fcEstateMapper; + @Autowired + private FcBuildingMapper fcBuildingMapper; + @Autowired + private FcUnitMapper fcUnitMapper; + @Autowired + private FcCellMapper fcCellMapper; + + public List selectCompany(){ + List companys = tblCompanyMapper.selectCompany(); + return companys; + } + + /** + * 再插入数据之前,最好对当前信息做判断,判断住宅编码是否存在,如果存在则不允许插入,如果不存在才允许插入 + * @param fcEstate + * @return + */ + public Integer insertEstate(FcEstate fcEstate){ + + //定义查询包装类 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("estate_code", fcEstate.getEstateCode()); + FcEstate findResult = fcEstateMapper.selectOne(queryWrapper); + //定义返回的结果 + int result = 0; + if(findResult!=null){ + return result; + }else{ + result = fcEstateMapper.insert(fcEstate); + return result; + } + } + + /** + * 先插入数据,再查询数据 + * @return + */ + public List selectBuilding(Integer buildingNumber,String estateCode){ + List fcBuildings = new ArrayList<>(); + for(int i = 0 ;i selectUnit(UnitMessage unitMessage){ + //定义返回值集合 + List fcUnits = new ArrayList<>(); + for(int i = 0;i insertCell(CellMessage[] cellMessages){ + List lists = new ArrayList<>(); + for (CellMessage cellMessage : cellMessages) { + // 楼层 + for(int i = 1;i<=cellMessage.getStopFloor();i++){ + // 房间号 + for(int j = cellMessage.getStartCellId();j<=cellMessage.getStopCellId();j++){ + FcCell fcCell = new FcCell(); + fcCell.setUnitCode(cellMessage.getUnitCode()); + fcCell.setCellName(i+"0"+j); + fcCell.setCellCode("C"+i+"0"+j); + fcCell.setFloorNumber(i); + fcCellMapper.insert(fcCell); + lists.add(fcCell); + } + } + } + return lists; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" new file mode 100644 index 00000000..93796b62 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" @@ -0,0 +1,17 @@ +package com.mashibing.service; + +import com.mashibing.bean.TblUserRecord; +import com.mashibing.mapper.TblUserRecordMapper; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +@Service +public class LoginService { + + @Autowired + private TblUserRecordMapper tblUserRecordMapper; + + public TblUserRecord login(String username, String password){ + return tblUserRecordMapper.login(username,password); + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" new file mode 100644 index 00000000..5fb2eb8a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcBuilding; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼宇信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcBuildingService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" new file mode 100644 index 00000000..8a97b3fe --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcCellAddbuild; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 房间加建信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellAddbuildService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" new file mode 100644 index 00000000..db98316c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcCell; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 房间信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" new file mode 100644 index 00000000..8fdc7dbb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcEstate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcEstateService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" new file mode 100644 index 00000000..5298dad4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcUnit; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 单元信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcUnitService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" new file mode 100644 index 00000000..3cfb2e15 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyEstateTemporary; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 房产信息临时表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyEstateTemporaryService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" new file mode 100644 index 00000000..9bf21503 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyHistoryMoneyTemp; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 历史费用临时表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyHistoryMoneyTempService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" new file mode 100644 index 00000000..9a610bab --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyInvalidMain; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 作废单主单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidMainService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" new file mode 100644 index 00000000..6294bb5e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyInvalidSub; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 作废单子单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidSubService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" new file mode 100644 index 00000000..b86eab84 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneySetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费项设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneySettingService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" new file mode 100644 index 00000000..ae60cf2a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneyTemporary01; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用临时表1 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary01Service extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" new file mode 100644 index 00000000..551c6879 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneyTemporary02; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用临时表2 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary02Service extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" new file mode 100644 index 00000000..fe777a32 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneyTemporary03; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用临时表3 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary03Service extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" new file mode 100644 index 00000000..e5cbc763 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneyTemporary04; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用临时表4 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary04Service extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" new file mode 100644 index 00000000..ca6f263a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyPreReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 预收款管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPreReceiveService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" new file mode 100644 index 00000000..4f8123cf --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyPropertyMoneyDist; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物业费分布 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPropertyMoneyDistService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" new file mode 100644 index 00000000..885ee84a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyPublicBox; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公表信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" new file mode 100644 index 00000000..7ad0c71e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyPublicBoxUser; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公表关联用户 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxUserService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" new file mode 100644 index 00000000..ad2f6da5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyReceiptMain; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 收款单主单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptMainService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" new file mode 100644 index 00000000..14a73ac9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyReceiptSub; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 收款单子单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptSubService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" new file mode 100644 index 00000000..30a0c03b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyRefundMain; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 退款单主单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundMainService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" new file mode 100644 index 00000000..7c4ab043 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyRefundSub; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 退款单子单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundSubService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" new file mode 100644 index 00000000..f1de4911 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FySaleContract; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 销售合同 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FySaleContractService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" new file mode 100644 index 00000000..b6e94746 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyShareStandingBookDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公摊费用台账公表明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" new file mode 100644 index 00000000..83b9fdd4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyShareStandingBook; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公摊费用台账概要 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" new file mode 100644 index 00000000..dd3d0f4f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyShareUserDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公摊费用台账用户明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareUserDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" new file mode 100644 index 00000000..a4bd4b0e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyStandingBookDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用台账明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" new file mode 100644 index 00000000..4146ee47 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyStandingBook; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用台账概要 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" new file mode 100644 index 00000000..45f35a42 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyTemporaryMoneySetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 临客费项设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyTemporaryMoneySettingService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" new file mode 100644 index 00000000..1b44c37b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblAdviceBox; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 意见箱 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAdviceBoxService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" new file mode 100644 index 00000000..809b2ab7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblAnswerData; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 题目可选答案信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAnswerDataService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" new file mode 100644 index 00000000..b2169aa2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblArgRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 参数档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblArgRecordService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" new file mode 100644 index 00000000..eb9c29d1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblAttupload; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 附件 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAttuploadService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" new file mode 100644 index 00000000..9740de17 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblColor; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 颜色管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblColorService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" new file mode 100644 index 00000000..9ede23e9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCommonLanguage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 常用语 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonLanguageService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" new file mode 100644 index 00000000..378531ca --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCommonMessage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 常用短信 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonMessageService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" new file mode 100644 index 00000000..d1ad6791 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCompanyRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 单位名录 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCompanyRecordService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" new file mode 100644 index 00000000..f0eb1243 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCompany; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 企业档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCompanyService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" new file mode 100644 index 00000000..d7112a35 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblComparyNotice; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 企业公告 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblComparyNoticeService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" new file mode 100644 index 00000000..728915dc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCustomType; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 自定义类型 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCustomTypeService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" new file mode 100644 index 00000000..ea03d266 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDashboard; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 仪表盘 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDashboardService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" new file mode 100644 index 00000000..ffce1b03 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 工作日期 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDateService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" new file mode 100644 index 00000000..9cc75e06 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDbSetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 数据库设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbSettingService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" new file mode 100644 index 00000000..25715533 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDbbackup; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 数据库备份 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbbackupService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" new file mode 100644 index 00000000..289f482b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDbrecovery; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 数据库还原 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbrecoveryService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" new file mode 100644 index 00000000..2f78cc6c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDbsource; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 数据库 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbsourceService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" new file mode 100644 index 00000000..6dc1337d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDept; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 部门信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" new file mode 100644 index 00000000..464ff62b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDeptkey; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 部门key 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptkeyService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" new file mode 100644 index 00000000..60667f48 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDesktop; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 桌面 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDesktopService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" new file mode 100644 index 00000000..f17ac742 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEmailReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 邮件接受 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailReceiveService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" new file mode 100644 index 00000000..fc9edd16 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEmailSend; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 邮件发送 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailSendService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" new file mode 100644 index 00000000..9a189a74 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEmployeeContactCategory; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 员工通讯录类别 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactCategoryService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" new file mode 100644 index 00000000..d02f33d9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEmployeeContact; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 员工通讯录 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" new file mode 100644 index 00000000..13bfede9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEnvirSetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 环境配置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEnvirSettingService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" new file mode 100644 index 00000000..12ebd96b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblFunctionModel; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 功能模块 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblFunctionModelService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" new file mode 100644 index 00000000..69fc1bd6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblGroupRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 群组档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupRecordService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" new file mode 100644 index 00000000..4e0969ba --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblGroupsTodo; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 分组待办事项 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsTodoService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" new file mode 100644 index 00000000..d2ef2b44 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblGroupsUser; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 分组用户 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsUserService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" new file mode 100644 index 00000000..1487019c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblLoginLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 登录日志 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblLoginLogService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" new file mode 100644 index 00000000..e9c84428 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMainMenu; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 主菜单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMainMenuService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" new file mode 100644 index 00000000..dfe86cba --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMessageCharge; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 短信充值单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageChargeService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" new file mode 100644 index 00000000..b5457417 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMessageReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 短信接受表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageReceiveService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" new file mode 100644 index 00000000..a7e6b254 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMessageSend; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 信息发送 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageSendService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" new file mode 100644 index 00000000..a82b22a3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMsgReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 信息接受 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMsgReceiveService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" new file mode 100644 index 00000000..0ffa2dd5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMyNote; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的记事本 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyNoteService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" new file mode 100644 index 00000000..1feb9bc4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMyadvice; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的意见 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyadviceService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" new file mode 100644 index 00000000..824d0525 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMydash; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的驾驶舱 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydashService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" new file mode 100644 index 00000000..4c12aabc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMydesk; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的桌面 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydeskService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" new file mode 100644 index 00000000..7b9069a2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMyplan; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的日程 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyplanService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" new file mode 100644 index 00000000..4d903001 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMyset; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 个人设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMysetService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" new file mode 100644 index 00000000..1c4387d7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblNetdiskDir; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 网络硬盘_文件夹 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskDirService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" new file mode 100644 index 00000000..b119cdee --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblNetdiskUrl; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 网络硬盘路径 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskUrlService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" new file mode 100644 index 00000000..06c98288 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblPositionRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 职位档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPositionRecordService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" new file mode 100644 index 00000000..3941af10 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblPrintPaper; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 打印纸张宽度设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintPaperService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" new file mode 100644 index 00000000..26518d8a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblPrintParam; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 打印参数 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintParamService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" new file mode 100644 index 00000000..9257a0f0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblQuick; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 快捷方式 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblQuickService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" new file mode 100644 index 00000000..fcebe802 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblRoleMenuPrivi; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 角色菜单权限 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleMenuPriviService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" new file mode 100644 index 00000000..0b4d1b58 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblRole; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 角色档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" new file mode 100644 index 00000000..5d11c5cb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblRule; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 规章制度 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRuleService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" new file mode 100644 index 00000000..2cc94cba --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblSendLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 发送日志表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSendLogService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" new file mode 100644 index 00000000..26d96d7c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblShortcutIcon; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 快捷方式图标 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblShortcutIconService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" new file mode 100644 index 00000000..8cb5d807 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblStopDate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 到期日期 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblStopDateService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" new file mode 100644 index 00000000..c1cf8468 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblSysDiagrams; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 系统图标 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSysDiagramsService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" new file mode 100644 index 00000000..2f8ce61f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblSystemLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 系统日志 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSystemLogService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" new file mode 100644 index 00000000..17bb962b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblTodo; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 待办事项 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTodoService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" new file mode 100644 index 00000000..80283723 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblType; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 类型库 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTypeService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" new file mode 100644 index 00000000..ae4fd8da --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserDept; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户部门表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserDeptService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" new file mode 100644 index 00000000..23dbc6b6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserGroup; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户分组 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserGroupService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" new file mode 100644 index 00000000..fcc1232a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserRecordService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" new file mode 100644 index 00000000..a1297cc7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserRole; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户角色表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserRoleService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" new file mode 100644 index 00000000..ac257ef1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserSubCompany; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户子公司表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserSubCompanyService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" new file mode 100644 index 00000000..d6baf168 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVod; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 视频点播 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVodService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" new file mode 100644 index 00000000..4bb2602b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVoteData; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 投票数据表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDataService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" new file mode 100644 index 00000000..f20be5fb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVoteDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 投票数据明细表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" new file mode 100644 index 00000000..763d391d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVoteProject1; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 投票项目表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteProject1Service extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" new file mode 100644 index 00000000..8d98d78e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVoteSubject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 投票题目表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteSubjectService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" new file mode 100644 index 00000000..55935a0f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblWorkDate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 工作日期 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblWorkDateService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" new file mode 100644 index 00000000..393582c9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyAskMsgRemindLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 催缴短信提醒日志 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyAskMsgRemindLogService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" new file mode 100644 index 00000000..c38dbfa7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCarManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 车辆管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarManageService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" new file mode 100644 index 00000000..4bcc6bae --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCarSpaceManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 车位管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceManageService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" new file mode 100644 index 00000000..d8b33d84 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCarSpaceRentDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 车位租赁缴费明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" new file mode 100644 index 00000000..bd039f3e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCarSpaceRent; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 车位租赁 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" new file mode 100644 index 00000000..94625090 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCleanCheck; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 清洁检查 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanCheckService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" new file mode 100644 index 00000000..3354c215 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCleanPlan; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 清洁安排 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanPlanService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" new file mode 100644 index 00000000..d49af48f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCleanRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 清洁记录 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanRecordService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" new file mode 100644 index 00000000..0ce04b3a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCommitteeMembers; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业委会成员 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMembersService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" new file mode 100644 index 00000000..09904864 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCommitteeMetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业委会会议 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMettingService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" new file mode 100644 index 00000000..4aeb2341 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCommunityEvent; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 社区活动 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommunityEventService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" new file mode 100644 index 00000000..b2f6102e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyDutyManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 执勤管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyDutyManageService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" new file mode 100644 index 00000000..e4deb3b7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEmailReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 信件收取 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEmailReceiveService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" new file mode 100644 index 00000000..8e88e8cc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateIncomeDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费收入明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" new file mode 100644 index 00000000..34ff4bbf --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateIncomeProject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费收入项目 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeProjectService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" new file mode 100644 index 00000000..cb9bbe1d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateMoney; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘费用 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateMoneyService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" new file mode 100644 index 00000000..b83d423f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateOutDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费支出明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" new file mode 100644 index 00000000..945ed42c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateOutDetailSub; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费支出明细_审批子表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailSubService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" new file mode 100644 index 00000000..2929a149 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateOutProject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费支出项目 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutProjectService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" new file mode 100644 index 00000000..d9df2cbc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyFireAccident; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 消防事故 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireAccidentService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" new file mode 100644 index 00000000..51aaf56a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyFireCheck; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 消防巡查 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireCheckService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" new file mode 100644 index 00000000..72e45927 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyFireExercise; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 消防演练 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireExerciseService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" new file mode 100644 index 00000000..85ff1592 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyFireFacility; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 消防设施 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireFacilityService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" new file mode 100644 index 00000000..68d12a5e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyGoodsInout; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物品出入 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGoodsInoutService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" new file mode 100644 index 00000000..d08e64c9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyGreenCheck; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 绿化检查 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenCheckService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" new file mode 100644 index 00000000..666bf01b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyGreenSetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 绿化设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenSettingService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" new file mode 100644 index 00000000..6eff60f2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyIncomeDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 收入明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" new file mode 100644 index 00000000..0ab9e557 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyIncomeProject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 收入项目 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeProjectService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" new file mode 100644 index 00000000..e0ebbde7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyNoteManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 票据管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyNoteManageService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" new file mode 100644 index 00000000..4968eb5a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyOutDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 支出明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" new file mode 100644 index 00000000..f1ede50a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyOutProject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 支出项目 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutProjectService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" new file mode 100644 index 00000000..352bf9fb --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyPictureManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 图纸管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPictureManageService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" new file mode 100644 index 00000000..f651bd00 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyPropertyTakeoverDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物业接管工程明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" new file mode 100644 index 00000000..d703f7e2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyPropertyTakeoverSchema; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物业接管概要 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverSchemaService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" new file mode 100644 index 00000000..d73d71c3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyRenewMsgRemindLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 续费短信提醒日志 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyRenewMsgRemindLogService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" new file mode 100644 index 00000000..92e11f93 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WySecurityArrange; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 保安安排 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WySecurityArrangeService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" new file mode 100644 index 00000000..2ccdac25 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyServiceCashierGroup; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 客服收银组 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyServiceCashierGroupService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" new file mode 100644 index 00000000..b9878a4c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyTakeoverDataDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物业接管资料明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyTakeoverDataDetailService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" new file mode 100644 index 00000000..129d35c5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyVegetationInformation; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 植被信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVegetationInformationService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" new file mode 100644 index 00000000..798311e6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyVisitManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 来访管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVisitManageService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" new file mode 100644 index 00000000..e79fafd3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhConstomerDecorate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主装修 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConstomerDecorateService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" new file mode 100644 index 00000000..d61d662b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhConsumerComplain; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主投诉 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConsumerComplainService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" new file mode 100644 index 00000000..7c27e7fc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCsHandleResult; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主服务_办理结果 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleResultService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" new file mode 100644 index 00000000..a8c2da8f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCsHandleSpeed; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主服务_办理进度 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleSpeedService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" new file mode 100644 index 00000000..2c6ef840 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerAskFix; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主请修 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerAskFixService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" new file mode 100644 index 00000000..e10ba81d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerCheck; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主验房 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerCheckService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" new file mode 100644 index 00000000..7eaa504d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerEstate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主房产对照表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerEstateService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" new file mode 100644 index 00000000..eab2bbb0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerMembers; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主成员 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerMembersService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" new file mode 100644 index 00000000..f408676a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomer; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" new file mode 100644 index 00000000..5246bdf3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerService; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主服务 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" new file mode 100644 index 00000000..0fd4696d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerServiceType; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主服务类型 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceTypeService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" new file mode 100644 index 00000000..f1328ce7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContractCell; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同房间 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractCellService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" new file mode 100644 index 00000000..85b51419 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContractChange; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同变更 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractChangeService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" new file mode 100644 index 00000000..2f7ab162 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContractRefund; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同退款 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractRefundService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" new file mode 100644 index 00000000..1c34335e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContractReturn; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同返利 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractReturnService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" new file mode 100644 index 00000000..44905dd3 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContract; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" new file mode 100644 index 00000000..c605c357 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentInformation; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租户信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentInformationService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" new file mode 100644 index 00000000..5d48e205 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租金收取 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentReceiveService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" new file mode 100644 index 00000000..a08daee9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentShare; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁分租信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentShareService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" new file mode 100644 index 00000000..abfcb014 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentTransfer; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租户转兑 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentTransferService extends IService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" new file mode 100644 index 00000000..bc5c83d6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcBuilding; +import com.mashibing.mapper.FcBuildingMapper; +import com.mashibing.service.base.FcBuildingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼宇信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcBuildingServiceImpl extends ServiceImpl implements FcBuildingService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" new file mode 100644 index 00000000..1b6d4f88 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcCellAddbuild; +import com.mashibing.mapper.FcCellAddbuildMapper; +import com.mashibing.service.base.FcCellAddbuildService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 房间加建信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcCellAddbuildServiceImpl extends ServiceImpl implements FcCellAddbuildService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" new file mode 100644 index 00000000..24f5045b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcCell; +import com.mashibing.mapper.FcCellMapper; +import com.mashibing.service.base.FcCellService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 房间信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcCellServiceImpl extends ServiceImpl implements FcCellService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" new file mode 100644 index 00000000..89fec2be --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcEstate; +import com.mashibing.mapper.FcEstateMapper; +import com.mashibing.service.base.FcEstateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcEstateServiceImpl extends ServiceImpl implements FcEstateService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" new file mode 100644 index 00000000..95406a39 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcUnit; +import com.mashibing.mapper.FcUnitMapper; +import com.mashibing.service.base.FcUnitService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 单元信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcUnitServiceImpl extends ServiceImpl implements FcUnitService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" new file mode 100644 index 00000000..4a599f30 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyEstateTemporary; +import com.mashibing.mapper.FyEstateTemporaryMapper; +import com.mashibing.service.base.FyEstateTemporaryService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 房产信息临时表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyEstateTemporaryServiceImpl extends ServiceImpl implements FyEstateTemporaryService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" new file mode 100644 index 00000000..f8d17eba --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyHistoryMoneyTemp; +import com.mashibing.mapper.FyHistoryMoneyTempMapper; +import com.mashibing.service.base.FyHistoryMoneyTempService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 历史费用临时表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyHistoryMoneyTempServiceImpl extends ServiceImpl implements FyHistoryMoneyTempService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" new file mode 100644 index 00000000..e0883e05 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyInvalidMain; +import com.mashibing.mapper.FyInvalidMainMapper; +import com.mashibing.service.base.FyInvalidMainService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 作废单主单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyInvalidMainServiceImpl extends ServiceImpl implements FyInvalidMainService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" new file mode 100644 index 00000000..63571b83 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyInvalidSub; +import com.mashibing.mapper.FyInvalidSubMapper; +import com.mashibing.service.base.FyInvalidSubService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 作废单子单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyInvalidSubServiceImpl extends ServiceImpl implements FyInvalidSubService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" new file mode 100644 index 00000000..f935c5fc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneySetting; +import com.mashibing.mapper.FyMoneySettingMapper; +import com.mashibing.service.base.FyMoneySettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费项设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneySettingServiceImpl extends ServiceImpl implements FyMoneySettingService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" new file mode 100644 index 00000000..c6f1dd61 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneyTemporary01; +import com.mashibing.mapper.FyMoneyTemporary01Mapper; +import com.mashibing.service.base.FyMoneyTemporary01Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用临时表1 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneyTemporary01ServiceImpl extends ServiceImpl implements FyMoneyTemporary01Service { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" new file mode 100644 index 00000000..297efa16 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneyTemporary02; +import com.mashibing.mapper.FyMoneyTemporary02Mapper; +import com.mashibing.service.base.FyMoneyTemporary02Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用临时表2 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneyTemporary02ServiceImpl extends ServiceImpl implements FyMoneyTemporary02Service { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" new file mode 100644 index 00000000..8ecae9d7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneyTemporary03; +import com.mashibing.mapper.FyMoneyTemporary03Mapper; +import com.mashibing.service.base.FyMoneyTemporary03Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用临时表3 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneyTemporary03ServiceImpl extends ServiceImpl implements FyMoneyTemporary03Service { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" new file mode 100644 index 00000000..bf27846b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneyTemporary04; +import com.mashibing.mapper.FyMoneyTemporary04Mapper; +import com.mashibing.service.base.FyMoneyTemporary04Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用临时表4 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneyTemporary04ServiceImpl extends ServiceImpl implements FyMoneyTemporary04Service { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" new file mode 100644 index 00000000..9985660e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyPreReceive; +import com.mashibing.mapper.FyPreReceiveMapper; +import com.mashibing.service.base.FyPreReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 预收款管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyPreReceiveServiceImpl extends ServiceImpl implements FyPreReceiveService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" new file mode 100644 index 00000000..3696d95f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyPropertyMoneyDist; +import com.mashibing.mapper.FyPropertyMoneyDistMapper; +import com.mashibing.service.base.FyPropertyMoneyDistService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物业费分布 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyPropertyMoneyDistServiceImpl extends ServiceImpl implements FyPropertyMoneyDistService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" new file mode 100644 index 00000000..84b624e4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyPublicBox; +import com.mashibing.mapper.FyPublicBoxMapper; +import com.mashibing.service.base.FyPublicBoxService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公表信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyPublicBoxServiceImpl extends ServiceImpl implements FyPublicBoxService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" new file mode 100644 index 00000000..439491a8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyPublicBoxUser; +import com.mashibing.mapper.FyPublicBoxUserMapper; +import com.mashibing.service.base.FyPublicBoxUserService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公表关联用户 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyPublicBoxUserServiceImpl extends ServiceImpl implements FyPublicBoxUserService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" new file mode 100644 index 00000000..e1817d3c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyReceiptMain; +import com.mashibing.mapper.FyReceiptMainMapper; +import com.mashibing.service.base.FyReceiptMainService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 收款单主单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyReceiptMainServiceImpl extends ServiceImpl implements FyReceiptMainService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" new file mode 100644 index 00000000..d9164085 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyReceiptSub; +import com.mashibing.mapper.FyReceiptSubMapper; +import com.mashibing.service.base.FyReceiptSubService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 收款单子单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyReceiptSubServiceImpl extends ServiceImpl implements FyReceiptSubService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" new file mode 100644 index 00000000..fe3269bc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyRefundMain; +import com.mashibing.mapper.FyRefundMainMapper; +import com.mashibing.service.base.FyRefundMainService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 退款单主单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyRefundMainServiceImpl extends ServiceImpl implements FyRefundMainService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" new file mode 100644 index 00000000..9eaa707e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyRefundSub; +import com.mashibing.mapper.FyRefundSubMapper; +import com.mashibing.service.base.FyRefundSubService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 退款单子单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyRefundSubServiceImpl extends ServiceImpl implements FyRefundSubService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" new file mode 100644 index 00000000..c8fd799e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FySaleContract; +import com.mashibing.mapper.FySaleContractMapper; +import com.mashibing.service.base.FySaleContractService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 销售合同 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FySaleContractServiceImpl extends ServiceImpl implements FySaleContractService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..dca9ee28 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyShareStandingBookDetail; +import com.mashibing.mapper.FyShareStandingBookDetailMapper; +import com.mashibing.service.base.FyShareStandingBookDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公摊费用台账公表明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyShareStandingBookDetailServiceImpl extends ServiceImpl implements FyShareStandingBookDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" new file mode 100644 index 00000000..38bb88aa --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyShareStandingBook; +import com.mashibing.mapper.FyShareStandingBookMapper; +import com.mashibing.service.base.FyShareStandingBookService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公摊费用台账概要 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyShareStandingBookServiceImpl extends ServiceImpl implements FyShareStandingBookService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" new file mode 100644 index 00000000..5cba602f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyShareUserDetail; +import com.mashibing.mapper.FyShareUserDetailMapper; +import com.mashibing.service.base.FyShareUserDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公摊费用台账用户明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyShareUserDetailServiceImpl extends ServiceImpl implements FyShareUserDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..3ac683ef --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyStandingBookDetail; +import com.mashibing.mapper.FyStandingBookDetailMapper; +import com.mashibing.service.base.FyStandingBookDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用台账明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyStandingBookDetailServiceImpl extends ServiceImpl implements FyStandingBookDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" new file mode 100644 index 00000000..bf92b465 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyStandingBook; +import com.mashibing.mapper.FyStandingBookMapper; +import com.mashibing.service.base.FyStandingBookService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用台账概要 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyStandingBookServiceImpl extends ServiceImpl implements FyStandingBookService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" new file mode 100644 index 00000000..8e9dd99c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyTemporaryMoneySetting; +import com.mashibing.mapper.FyTemporaryMoneySettingMapper; +import com.mashibing.service.base.FyTemporaryMoneySettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 临客费项设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyTemporaryMoneySettingServiceImpl extends ServiceImpl implements FyTemporaryMoneySettingService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" new file mode 100644 index 00000000..de0ec987 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblAdviceBox; +import com.mashibing.mapper.TblAdviceBoxMapper; +import com.mashibing.service.base.TblAdviceBoxService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 意见箱 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblAdviceBoxServiceImpl extends ServiceImpl implements TblAdviceBoxService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" new file mode 100644 index 00000000..74cafef4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblAnswerData; +import com.mashibing.mapper.TblAnswerDataMapper; +import com.mashibing.service.base.TblAnswerDataService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 题目可选答案信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblAnswerDataServiceImpl extends ServiceImpl implements TblAnswerDataService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" new file mode 100644 index 00000000..3e4332b1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblArgRecord; +import com.mashibing.mapper.TblArgRecordMapper; +import com.mashibing.service.base.TblArgRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 参数档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblArgRecordServiceImpl extends ServiceImpl implements TblArgRecordService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" new file mode 100644 index 00000000..8d423f11 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblAttupload; +import com.mashibing.mapper.TblAttuploadMapper; +import com.mashibing.service.base.TblAttuploadService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 附件 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblAttuploadServiceImpl extends ServiceImpl implements TblAttuploadService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" new file mode 100644 index 00000000..3af54d5c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblColor; +import com.mashibing.mapper.TblColorMapper; +import com.mashibing.service.base.TblColorService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 颜色管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblColorServiceImpl extends ServiceImpl implements TblColorService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" new file mode 100644 index 00000000..c033c55f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCommonLanguage; +import com.mashibing.mapper.TblCommonLanguageMapper; +import com.mashibing.service.base.TblCommonLanguageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 常用语 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCommonLanguageServiceImpl extends ServiceImpl implements TblCommonLanguageService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" new file mode 100644 index 00000000..6eeb1464 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCommonMessage; +import com.mashibing.mapper.TblCommonMessageMapper; +import com.mashibing.service.base.TblCommonMessageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 常用短信 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCommonMessageServiceImpl extends ServiceImpl implements TblCommonMessageService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" new file mode 100644 index 00000000..330ee801 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCompanyRecord; +import com.mashibing.mapper.TblCompanyRecordMapper; +import com.mashibing.service.base.TblCompanyRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 单位名录 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCompanyRecordServiceImpl extends ServiceImpl implements TblCompanyRecordService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" new file mode 100644 index 00000000..1020286f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCompany; +import com.mashibing.mapper.TblCompanyMapper; +import com.mashibing.service.base.TblCompanyService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 企业档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCompanyServiceImpl extends ServiceImpl implements TblCompanyService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" new file mode 100644 index 00000000..11dfe067 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblComparyNotice; +import com.mashibing.mapper.TblComparyNoticeMapper; +import com.mashibing.service.base.TblComparyNoticeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 企业公告 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblComparyNoticeServiceImpl extends ServiceImpl implements TblComparyNoticeService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" new file mode 100644 index 00000000..3a119cb6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCustomType; +import com.mashibing.mapper.TblCustomTypeMapper; +import com.mashibing.service.base.TblCustomTypeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 自定义类型 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCustomTypeServiceImpl extends ServiceImpl implements TblCustomTypeService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" new file mode 100644 index 00000000..2b8e2874 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDashboard; +import com.mashibing.mapper.TblDashboardMapper; +import com.mashibing.service.base.TblDashboardService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 仪表盘 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDashboardServiceImpl extends ServiceImpl implements TblDashboardService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" new file mode 100644 index 00000000..f4dba8d1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDate; +import com.mashibing.mapper.TblDateMapper; +import com.mashibing.service.base.TblDateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 工作日期 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDateServiceImpl extends ServiceImpl implements TblDateService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" new file mode 100644 index 00000000..f34a1f05 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDbSetting; +import com.mashibing.mapper.TblDbSettingMapper; +import com.mashibing.service.base.TblDbSettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 数据库设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDbSettingServiceImpl extends ServiceImpl implements TblDbSettingService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" new file mode 100644 index 00000000..fb270d9a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDbbackup; +import com.mashibing.mapper.TblDbbackupMapper; +import com.mashibing.service.base.TblDbbackupService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 数据库备份 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDbbackupServiceImpl extends ServiceImpl implements TblDbbackupService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" new file mode 100644 index 00000000..e6ea079c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDbrecovery; +import com.mashibing.mapper.TblDbrecoveryMapper; +import com.mashibing.service.base.TblDbrecoveryService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 数据库还原 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDbrecoveryServiceImpl extends ServiceImpl implements TblDbrecoveryService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" new file mode 100644 index 00000000..2ff25f23 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDbsource; +import com.mashibing.mapper.TblDbsourceMapper; +import com.mashibing.service.base.TblDbsourceService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 数据库 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDbsourceServiceImpl extends ServiceImpl implements TblDbsourceService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" new file mode 100644 index 00000000..34f6cc0d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDept; +import com.mashibing.mapper.TblDeptMapper; +import com.mashibing.service.base.TblDeptService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 部门信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDeptServiceImpl extends ServiceImpl implements TblDeptService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" new file mode 100644 index 00000000..d11442b9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDeptkey; +import com.mashibing.mapper.TblDeptkeyMapper; +import com.mashibing.service.base.TblDeptkeyService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 部门key 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDeptkeyServiceImpl extends ServiceImpl implements TblDeptkeyService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" new file mode 100644 index 00000000..5aaedc3b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDesktop; +import com.mashibing.mapper.TblDesktopMapper; +import com.mashibing.service.base.TblDesktopService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 桌面 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDesktopServiceImpl extends ServiceImpl implements TblDesktopService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..c984cb92 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEmailReceive; +import com.mashibing.mapper.TblEmailReceiveMapper; +import com.mashibing.service.base.TblEmailReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 邮件接受 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEmailReceiveServiceImpl extends ServiceImpl implements TblEmailReceiveService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" new file mode 100644 index 00000000..54f554c1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEmailSend; +import com.mashibing.mapper.TblEmailSendMapper; +import com.mashibing.service.base.TblEmailSendService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 邮件发送 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEmailSendServiceImpl extends ServiceImpl implements TblEmailSendService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" new file mode 100644 index 00000000..6229c6d7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEmployeeContactCategory; +import com.mashibing.mapper.TblEmployeeContactCategoryMapper; +import com.mashibing.service.base.TblEmployeeContactCategoryService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 员工通讯录类别 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEmployeeContactCategoryServiceImpl extends ServiceImpl implements TblEmployeeContactCategoryService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" new file mode 100644 index 00000000..f2e452bf --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEmployeeContact; +import com.mashibing.mapper.TblEmployeeContactMapper; +import com.mashibing.service.base.TblEmployeeContactService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 员工通讯录 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEmployeeContactServiceImpl extends ServiceImpl implements TblEmployeeContactService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" new file mode 100644 index 00000000..f43345e1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEnvirSetting; +import com.mashibing.mapper.TblEnvirSettingMapper; +import com.mashibing.service.base.TblEnvirSettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 环境配置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEnvirSettingServiceImpl extends ServiceImpl implements TblEnvirSettingService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" new file mode 100644 index 00000000..29f647a8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblFunctionModel; +import com.mashibing.mapper.TblFunctionModelMapper; +import com.mashibing.service.base.TblFunctionModelService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 功能模块 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblFunctionModelServiceImpl extends ServiceImpl implements TblFunctionModelService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" new file mode 100644 index 00000000..885bd2a5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblGroupRecord; +import com.mashibing.mapper.TblGroupRecordMapper; +import com.mashibing.service.base.TblGroupRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 群组档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblGroupRecordServiceImpl extends ServiceImpl implements TblGroupRecordService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" new file mode 100644 index 00000000..6409c6bf --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblGroupsTodo; +import com.mashibing.mapper.TblGroupsTodoMapper; +import com.mashibing.service.base.TblGroupsTodoService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 分组待办事项 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblGroupsTodoServiceImpl extends ServiceImpl implements TblGroupsTodoService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" new file mode 100644 index 00000000..a9d46521 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblGroupsUser; +import com.mashibing.mapper.TblGroupsUserMapper; +import com.mashibing.service.base.TblGroupsUserService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 分组用户 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblGroupsUserServiceImpl extends ServiceImpl implements TblGroupsUserService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" new file mode 100644 index 00000000..ae431c15 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblLoginLog; +import com.mashibing.mapper.TblLoginLogMapper; +import com.mashibing.service.base.TblLoginLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 登录日志 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblLoginLogServiceImpl extends ServiceImpl implements TblLoginLogService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" new file mode 100644 index 00000000..1afd48e1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMainMenu; +import com.mashibing.mapper.TblMainMenuMapper; +import com.mashibing.service.base.TblMainMenuService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 主菜单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMainMenuServiceImpl extends ServiceImpl implements TblMainMenuService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" new file mode 100644 index 00000000..85318f49 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMessageCharge; +import com.mashibing.mapper.TblMessageChargeMapper; +import com.mashibing.service.base.TblMessageChargeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 短信充值单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMessageChargeServiceImpl extends ServiceImpl implements TblMessageChargeService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" new file mode 100644 index 00000000..456cdc83 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMessageReceive; +import com.mashibing.mapper.TblMessageReceiveMapper; +import com.mashibing.service.base.TblMessageReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 短信接受表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMessageReceiveServiceImpl extends ServiceImpl implements TblMessageReceiveService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" new file mode 100644 index 00000000..759ba1a1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMessageSend; +import com.mashibing.mapper.TblMessageSendMapper; +import com.mashibing.service.base.TblMessageSendService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 信息发送 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMessageSendServiceImpl extends ServiceImpl implements TblMessageSendService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" new file mode 100644 index 00000000..1a1e5af6 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMsgReceive; +import com.mashibing.mapper.TblMsgReceiveMapper; +import com.mashibing.service.base.TblMsgReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 信息接受 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMsgReceiveServiceImpl extends ServiceImpl implements TblMsgReceiveService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" new file mode 100644 index 00000000..d187a008 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMyNote; +import com.mashibing.mapper.TblMyNoteMapper; +import com.mashibing.service.base.TblMyNoteService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的记事本 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMyNoteServiceImpl extends ServiceImpl implements TblMyNoteService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" new file mode 100644 index 00000000..b39dae32 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMyadvice; +import com.mashibing.mapper.TblMyadviceMapper; +import com.mashibing.service.base.TblMyadviceService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的意见 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMyadviceServiceImpl extends ServiceImpl implements TblMyadviceService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" new file mode 100644 index 00000000..19aa1062 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMydash; +import com.mashibing.mapper.TblMydashMapper; +import com.mashibing.service.base.TblMydashService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的驾驶舱 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMydashServiceImpl extends ServiceImpl implements TblMydashService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" new file mode 100644 index 00000000..76a739ac --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMydesk; +import com.mashibing.mapper.TblMydeskMapper; +import com.mashibing.service.base.TblMydeskService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的桌面 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMydeskServiceImpl extends ServiceImpl implements TblMydeskService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" new file mode 100644 index 00000000..f20819cd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMyplan; +import com.mashibing.mapper.TblMyplanMapper; +import com.mashibing.service.base.TblMyplanService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的日程 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMyplanServiceImpl extends ServiceImpl implements TblMyplanService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" new file mode 100644 index 00000000..7a213a24 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMyset; +import com.mashibing.mapper.TblMysetMapper; +import com.mashibing.service.base.TblMysetService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 个人设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMysetServiceImpl extends ServiceImpl implements TblMysetService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" new file mode 100644 index 00000000..1ddead49 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblNetdiskDir; +import com.mashibing.mapper.TblNetdiskDirMapper; +import com.mashibing.service.base.TblNetdiskDirService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 网络硬盘_文件夹 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblNetdiskDirServiceImpl extends ServiceImpl implements TblNetdiskDirService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" new file mode 100644 index 00000000..89eb91ac --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblNetdiskUrl; +import com.mashibing.mapper.TblNetdiskUrlMapper; +import com.mashibing.service.base.TblNetdiskUrlService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 网络硬盘路径 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblNetdiskUrlServiceImpl extends ServiceImpl implements TblNetdiskUrlService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" new file mode 100644 index 00000000..a806863a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblPositionRecord; +import com.mashibing.mapper.TblPositionRecordMapper; +import com.mashibing.service.base.TblPositionRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 职位档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblPositionRecordServiceImpl extends ServiceImpl implements TblPositionRecordService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" new file mode 100644 index 00000000..cd80ed83 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblPrintPaper; +import com.mashibing.mapper.TblPrintPaperMapper; +import com.mashibing.service.base.TblPrintPaperService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 打印纸张宽度设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblPrintPaperServiceImpl extends ServiceImpl implements TblPrintPaperService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" new file mode 100644 index 00000000..4f5c4d15 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblPrintParam; +import com.mashibing.mapper.TblPrintParamMapper; +import com.mashibing.service.base.TblPrintParamService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 打印参数 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblPrintParamServiceImpl extends ServiceImpl implements TblPrintParamService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" new file mode 100644 index 00000000..b9a4d409 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblQuick; +import com.mashibing.mapper.TblQuickMapper; +import com.mashibing.service.base.TblQuickService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 快捷方式 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblQuickServiceImpl extends ServiceImpl implements TblQuickService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" new file mode 100644 index 00000000..fe5263b4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblRoleMenuPrivi; +import com.mashibing.mapper.TblRoleMenuPriviMapper; +import com.mashibing.service.base.TblRoleMenuPriviService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 角色菜单权限 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblRoleMenuPriviServiceImpl extends ServiceImpl implements TblRoleMenuPriviService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" new file mode 100644 index 00000000..15540c2c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblRole; +import com.mashibing.mapper.TblRoleMapper; +import com.mashibing.service.base.TblRoleService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 角色档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblRoleServiceImpl extends ServiceImpl implements TblRoleService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" new file mode 100644 index 00000000..7d9d0145 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblRule; +import com.mashibing.mapper.TblRuleMapper; +import com.mashibing.service.base.TblRuleService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 规章制度 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblRuleServiceImpl extends ServiceImpl implements TblRuleService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" new file mode 100644 index 00000000..47254b05 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblSendLog; +import com.mashibing.mapper.TblSendLogMapper; +import com.mashibing.service.base.TblSendLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 发送日志表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblSendLogServiceImpl extends ServiceImpl implements TblSendLogService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" new file mode 100644 index 00000000..b78ba2c7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblShortcutIcon; +import com.mashibing.mapper.TblShortcutIconMapper; +import com.mashibing.service.base.TblShortcutIconService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 快捷方式图标 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblShortcutIconServiceImpl extends ServiceImpl implements TblShortcutIconService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" new file mode 100644 index 00000000..67bc31aa --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblStopDate; +import com.mashibing.mapper.TblStopDateMapper; +import com.mashibing.service.base.TblStopDateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 到期日期 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblStopDateServiceImpl extends ServiceImpl implements TblStopDateService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" new file mode 100644 index 00000000..9c956a30 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblSysDiagrams; +import com.mashibing.mapper.TblSysDiagramsMapper; +import com.mashibing.service.base.TblSysDiagramsService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 系统图标 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblSysDiagramsServiceImpl extends ServiceImpl implements TblSysDiagramsService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" new file mode 100644 index 00000000..be8a0312 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblSystemLog; +import com.mashibing.mapper.TblSystemLogMapper; +import com.mashibing.service.base.TblSystemLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 系统日志 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblSystemLogServiceImpl extends ServiceImpl implements TblSystemLogService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" new file mode 100644 index 00000000..32c5264b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblTodo; +import com.mashibing.mapper.TblTodoMapper; +import com.mashibing.service.base.TblTodoService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 待办事项 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblTodoServiceImpl extends ServiceImpl implements TblTodoService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" new file mode 100644 index 00000000..c4f9fa0f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblType; +import com.mashibing.mapper.TblTypeMapper; +import com.mashibing.service.base.TblTypeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 类型库 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblTypeServiceImpl extends ServiceImpl implements TblTypeService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" new file mode 100644 index 00000000..623237c4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserDept; +import com.mashibing.mapper.TblUserDeptMapper; +import com.mashibing.service.base.TblUserDeptService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户部门表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserDeptServiceImpl extends ServiceImpl implements TblUserDeptService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" new file mode 100644 index 00000000..32353953 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserGroup; +import com.mashibing.mapper.TblUserGroupMapper; +import com.mashibing.service.base.TblUserGroupService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户分组 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserGroupServiceImpl extends ServiceImpl implements TblUserGroupService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" new file mode 100644 index 00000000..37e9f66a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserRecord; +import com.mashibing.mapper.TblUserRecordMapper; +import com.mashibing.service.base.TblUserRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserRecordServiceImpl extends ServiceImpl implements TblUserRecordService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" new file mode 100644 index 00000000..afadd36b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserRole; +import com.mashibing.mapper.TblUserRoleMapper; +import com.mashibing.service.base.TblUserRoleService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户角色表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserRoleServiceImpl extends ServiceImpl implements TblUserRoleService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" new file mode 100644 index 00000000..2fdecca4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserSubCompany; +import com.mashibing.mapper.TblUserSubCompanyMapper; +import com.mashibing.service.base.TblUserSubCompanyService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户子公司表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserSubCompanyServiceImpl extends ServiceImpl implements TblUserSubCompanyService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" new file mode 100644 index 00000000..bd74298d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVod; +import com.mashibing.mapper.TblVodMapper; +import com.mashibing.service.base.TblVodService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 视频点播 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVodServiceImpl extends ServiceImpl implements TblVodService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" new file mode 100644 index 00000000..5a1cf927 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVoteData; +import com.mashibing.mapper.TblVoteDataMapper; +import com.mashibing.service.base.TblVoteDataService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 投票数据表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVoteDataServiceImpl extends ServiceImpl implements TblVoteDataService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" new file mode 100644 index 00000000..8add15c1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVoteDetail; +import com.mashibing.mapper.TblVoteDetailMapper; +import com.mashibing.service.base.TblVoteDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 投票数据明细表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVoteDetailServiceImpl extends ServiceImpl implements TblVoteDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" new file mode 100644 index 00000000..213f9834 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVoteProject1; +import com.mashibing.mapper.TblVoteProject1Mapper; +import com.mashibing.service.base.TblVoteProject1Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 投票项目表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVoteProject1ServiceImpl extends ServiceImpl implements TblVoteProject1Service { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" new file mode 100644 index 00000000..c9d63b30 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVoteSubject; +import com.mashibing.mapper.TblVoteSubjectMapper; +import com.mashibing.service.base.TblVoteSubjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 投票题目表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVoteSubjectServiceImpl extends ServiceImpl implements TblVoteSubjectService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" new file mode 100644 index 00000000..06d23d10 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblWorkDate; +import com.mashibing.mapper.TblWorkDateMapper; +import com.mashibing.service.base.TblWorkDateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 工作日期 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblWorkDateServiceImpl extends ServiceImpl implements TblWorkDateService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..0825b0c4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyAskMsgRemindLog; +import com.mashibing.mapper.WyAskMsgRemindLogMapper; +import com.mashibing.service.base.WyAskMsgRemindLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 催缴短信提醒日志 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyAskMsgRemindLogServiceImpl extends ServiceImpl implements WyAskMsgRemindLogService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" new file mode 100644 index 00000000..6ee34414 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCarManage; +import com.mashibing.mapper.WyCarManageMapper; +import com.mashibing.service.base.WyCarManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 车辆管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCarManageServiceImpl extends ServiceImpl implements WyCarManageService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" new file mode 100644 index 00000000..b8d84fac --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCarSpaceManage; +import com.mashibing.mapper.WyCarSpaceManageMapper; +import com.mashibing.service.base.WyCarSpaceManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 车位管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCarSpaceManageServiceImpl extends ServiceImpl implements WyCarSpaceManageService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" new file mode 100644 index 00000000..d191d012 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCarSpaceRentDetail; +import com.mashibing.mapper.WyCarSpaceRentDetailMapper; +import com.mashibing.service.base.WyCarSpaceRentDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 车位租赁缴费明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCarSpaceRentDetailServiceImpl extends ServiceImpl implements WyCarSpaceRentDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" new file mode 100644 index 00000000..f5e1ac1d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCarSpaceRent; +import com.mashibing.mapper.WyCarSpaceRentMapper; +import com.mashibing.service.base.WyCarSpaceRentService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 车位租赁 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCarSpaceRentServiceImpl extends ServiceImpl implements WyCarSpaceRentService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" new file mode 100644 index 00000000..c95705b8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCleanCheck; +import com.mashibing.mapper.WyCleanCheckMapper; +import com.mashibing.service.base.WyCleanCheckService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 清洁检查 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCleanCheckServiceImpl extends ServiceImpl implements WyCleanCheckService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" new file mode 100644 index 00000000..7bde96df --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCleanPlan; +import com.mashibing.mapper.WyCleanPlanMapper; +import com.mashibing.service.base.WyCleanPlanService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 清洁安排 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCleanPlanServiceImpl extends ServiceImpl implements WyCleanPlanService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" new file mode 100644 index 00000000..c130b14c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCleanRecord; +import com.mashibing.mapper.WyCleanRecordMapper; +import com.mashibing.service.base.WyCleanRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 清洁记录 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCleanRecordServiceImpl extends ServiceImpl implements WyCleanRecordService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" new file mode 100644 index 00000000..511baf3d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCommitteeMembers; +import com.mashibing.mapper.WyCommitteeMembersMapper; +import com.mashibing.service.base.WyCommitteeMembersService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业委会成员 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCommitteeMembersServiceImpl extends ServiceImpl implements WyCommitteeMembersService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" new file mode 100644 index 00000000..4b1be59e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCommitteeMetting; +import com.mashibing.mapper.WyCommitteeMettingMapper; +import com.mashibing.service.base.WyCommitteeMettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业委会会议 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCommitteeMettingServiceImpl extends ServiceImpl implements WyCommitteeMettingService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" new file mode 100644 index 00000000..45ed0547 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCommunityEvent; +import com.mashibing.mapper.WyCommunityEventMapper; +import com.mashibing.service.base.WyCommunityEventService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 社区活动 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCommunityEventServiceImpl extends ServiceImpl implements WyCommunityEventService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" new file mode 100644 index 00000000..25ac5891 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyDutyManage; +import com.mashibing.mapper.WyDutyManageMapper; +import com.mashibing.service.base.WyDutyManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 执勤管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyDutyManageServiceImpl extends ServiceImpl implements WyDutyManageService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..ff281e70 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEmailReceive; +import com.mashibing.mapper.WyEmailReceiveMapper; +import com.mashibing.service.base.WyEmailReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 信件收取 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEmailReceiveServiceImpl extends ServiceImpl implements WyEmailReceiveService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..d209585c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateIncomeDetail; +import com.mashibing.mapper.WyEstateIncomeDetailMapper; +import com.mashibing.service.base.WyEstateIncomeDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费收入明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateIncomeDetailServiceImpl extends ServiceImpl implements WyEstateIncomeDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..2d4df8bf --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateIncomeProject; +import com.mashibing.mapper.WyEstateIncomeProjectMapper; +import com.mashibing.service.base.WyEstateIncomeProjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费收入项目 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateIncomeProjectServiceImpl extends ServiceImpl implements WyEstateIncomeProjectService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" new file mode 100644 index 00000000..39742aff --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateMoney; +import com.mashibing.mapper.WyEstateMoneyMapper; +import com.mashibing.service.base.WyEstateMoneyService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘费用 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateMoneyServiceImpl extends ServiceImpl implements WyEstateMoneyService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" new file mode 100644 index 00000000..afa57579 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateOutDetail; +import com.mashibing.mapper.WyEstateOutDetailMapper; +import com.mashibing.service.base.WyEstateOutDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费支出明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateOutDetailServiceImpl extends ServiceImpl implements WyEstateOutDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" new file mode 100644 index 00000000..90d5fdc2 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateOutDetailSub; +import com.mashibing.mapper.WyEstateOutDetailSubMapper; +import com.mashibing.service.base.WyEstateOutDetailSubService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费支出明细_审批子表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateOutDetailSubServiceImpl extends ServiceImpl implements WyEstateOutDetailSubService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" new file mode 100644 index 00000000..8bf31cb4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateOutProject; +import com.mashibing.mapper.WyEstateOutProjectMapper; +import com.mashibing.service.base.WyEstateOutProjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费支出项目 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateOutProjectServiceImpl extends ServiceImpl implements WyEstateOutProjectService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" new file mode 100644 index 00000000..aef32264 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyFireAccident; +import com.mashibing.mapper.WyFireAccidentMapper; +import com.mashibing.service.base.WyFireAccidentService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 消防事故 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyFireAccidentServiceImpl extends ServiceImpl implements WyFireAccidentService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" new file mode 100644 index 00000000..11da05bf --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyFireCheck; +import com.mashibing.mapper.WyFireCheckMapper; +import com.mashibing.service.base.WyFireCheckService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 消防巡查 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyFireCheckServiceImpl extends ServiceImpl implements WyFireCheckService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" new file mode 100644 index 00000000..ccdf6385 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyFireExercise; +import com.mashibing.mapper.WyFireExerciseMapper; +import com.mashibing.service.base.WyFireExerciseService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 消防演练 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyFireExerciseServiceImpl extends ServiceImpl implements WyFireExerciseService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" new file mode 100644 index 00000000..c4c7b6c9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyFireFacility; +import com.mashibing.mapper.WyFireFacilityMapper; +import com.mashibing.service.base.WyFireFacilityService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 消防设施 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyFireFacilityServiceImpl extends ServiceImpl implements WyFireFacilityService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" new file mode 100644 index 00000000..238747a8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyGoodsInout; +import com.mashibing.mapper.WyGoodsInoutMapper; +import com.mashibing.service.base.WyGoodsInoutService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物品出入 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyGoodsInoutServiceImpl extends ServiceImpl implements WyGoodsInoutService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" new file mode 100644 index 00000000..803a81a7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyGreenCheck; +import com.mashibing.mapper.WyGreenCheckMapper; +import com.mashibing.service.base.WyGreenCheckService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 绿化检查 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyGreenCheckServiceImpl extends ServiceImpl implements WyGreenCheckService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" new file mode 100644 index 00000000..718d6748 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyGreenSetting; +import com.mashibing.mapper.WyGreenSettingMapper; +import com.mashibing.service.base.WyGreenSettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 绿化设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyGreenSettingServiceImpl extends ServiceImpl implements WyGreenSettingService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..34c101cc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyIncomeDetail; +import com.mashibing.mapper.WyIncomeDetailMapper; +import com.mashibing.service.base.WyIncomeDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 收入明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyIncomeDetailServiceImpl extends ServiceImpl implements WyIncomeDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..b1a467a8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyIncomeProject; +import com.mashibing.mapper.WyIncomeProjectMapper; +import com.mashibing.service.base.WyIncomeProjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 收入项目 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyIncomeProjectServiceImpl extends ServiceImpl implements WyIncomeProjectService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" new file mode 100644 index 00000000..43e1c77f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyNoteManage; +import com.mashibing.mapper.WyNoteManageMapper; +import com.mashibing.service.base.WyNoteManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 票据管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyNoteManageServiceImpl extends ServiceImpl implements WyNoteManageService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" new file mode 100644 index 00000000..b12c0ccc --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyOutDetail; +import com.mashibing.mapper.WyOutDetailMapper; +import com.mashibing.service.base.WyOutDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 支出明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyOutDetailServiceImpl extends ServiceImpl implements WyOutDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" new file mode 100644 index 00000000..031caa22 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyOutProject; +import com.mashibing.mapper.WyOutProjectMapper; +import com.mashibing.service.base.WyOutProjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 支出项目 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyOutProjectServiceImpl extends ServiceImpl implements WyOutProjectService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" new file mode 100644 index 00000000..2c1f2ad5 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyPictureManage; +import com.mashibing.mapper.WyPictureManageMapper; +import com.mashibing.service.base.WyPictureManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 图纸管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyPictureManageServiceImpl extends ServiceImpl implements WyPictureManageService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" new file mode 100644 index 00000000..3d8c6bab --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyPropertyTakeoverDetail; +import com.mashibing.mapper.WyPropertyTakeoverDetailMapper; +import com.mashibing.service.base.WyPropertyTakeoverDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物业接管工程明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyPropertyTakeoverDetailServiceImpl extends ServiceImpl implements WyPropertyTakeoverDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" new file mode 100644 index 00000000..0c10e602 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyPropertyTakeoverSchema; +import com.mashibing.mapper.WyPropertyTakeoverSchemaMapper; +import com.mashibing.service.base.WyPropertyTakeoverSchemaService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物业接管概要 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyPropertyTakeoverSchemaServiceImpl extends ServiceImpl implements WyPropertyTakeoverSchemaService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..80d9ca7c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyRenewMsgRemindLog; +import com.mashibing.mapper.WyRenewMsgRemindLogMapper; +import com.mashibing.service.base.WyRenewMsgRemindLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 续费短信提醒日志 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyRenewMsgRemindLogServiceImpl extends ServiceImpl implements WyRenewMsgRemindLogService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" new file mode 100644 index 00000000..56d9d151 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WySecurityArrange; +import com.mashibing.mapper.WySecurityArrangeMapper; +import com.mashibing.service.base.WySecurityArrangeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 保安安排 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WySecurityArrangeServiceImpl extends ServiceImpl implements WySecurityArrangeService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" new file mode 100644 index 00000000..95851072 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyServiceCashierGroup; +import com.mashibing.mapper.WyServiceCashierGroupMapper; +import com.mashibing.service.base.WyServiceCashierGroupService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 客服收银组 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyServiceCashierGroupServiceImpl extends ServiceImpl implements WyServiceCashierGroupService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" new file mode 100644 index 00000000..6aba3269 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyTakeoverDataDetail; +import com.mashibing.mapper.WyTakeoverDataDetailMapper; +import com.mashibing.service.base.WyTakeoverDataDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物业接管资料明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyTakeoverDataDetailServiceImpl extends ServiceImpl implements WyTakeoverDataDetailService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" new file mode 100644 index 00000000..88a0f21e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyVegetationInformation; +import com.mashibing.mapper.WyVegetationInformationMapper; +import com.mashibing.service.base.WyVegetationInformationService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 植被信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyVegetationInformationServiceImpl extends ServiceImpl implements WyVegetationInformationService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" new file mode 100644 index 00000000..4ef7629b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyVisitManage; +import com.mashibing.mapper.WyVisitManageMapper; +import com.mashibing.service.base.WyVisitManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 来访管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyVisitManageServiceImpl extends ServiceImpl implements WyVisitManageService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" new file mode 100644 index 00000000..30380d8e --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhConstomerDecorate; +import com.mashibing.mapper.ZhConstomerDecorateMapper; +import com.mashibing.service.base.ZhConstomerDecorateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主装修 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhConstomerDecorateServiceImpl extends ServiceImpl implements ZhConstomerDecorateService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" new file mode 100644 index 00000000..da5757ce --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhConsumerComplain; +import com.mashibing.mapper.ZhConsumerComplainMapper; +import com.mashibing.service.base.ZhConsumerComplainService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主投诉 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhConsumerComplainServiceImpl extends ServiceImpl implements ZhConsumerComplainService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" new file mode 100644 index 00000000..1ed4116f --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCsHandleResult; +import com.mashibing.mapper.ZhCsHandleResultMapper; +import com.mashibing.service.base.ZhCsHandleResultService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主服务_办理结果 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCsHandleResultServiceImpl extends ServiceImpl implements ZhCsHandleResultService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" new file mode 100644 index 00000000..867cba4a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCsHandleSpeed; +import com.mashibing.mapper.ZhCsHandleSpeedMapper; +import com.mashibing.service.base.ZhCsHandleSpeedService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主服务_办理进度 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCsHandleSpeedServiceImpl extends ServiceImpl implements ZhCsHandleSpeedService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" new file mode 100644 index 00000000..df714ba0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerAskFix; +import com.mashibing.mapper.ZhCustomerAskFixMapper; +import com.mashibing.service.base.ZhCustomerAskFixService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主请修 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerAskFixServiceImpl extends ServiceImpl implements ZhCustomerAskFixService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" new file mode 100644 index 00000000..75386e6a --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerCheck; +import com.mashibing.mapper.ZhCustomerCheckMapper; +import com.mashibing.service.base.ZhCustomerCheckService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主验房 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerCheckServiceImpl extends ServiceImpl implements ZhCustomerCheckService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" new file mode 100644 index 00000000..f3f2abca --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerEstate; +import com.mashibing.mapper.ZhCustomerEstateMapper; +import com.mashibing.service.base.ZhCustomerEstateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主房产对照表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerEstateServiceImpl extends ServiceImpl implements ZhCustomerEstateService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" new file mode 100644 index 00000000..c414b8a8 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerMembers; +import com.mashibing.mapper.ZhCustomerMembersMapper; +import com.mashibing.service.base.ZhCustomerMembersService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主成员 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerMembersServiceImpl extends ServiceImpl implements ZhCustomerMembersService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" new file mode 100644 index 00000000..f79257b4 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomer; +import com.mashibing.mapper.ZhCustomerMapper; +import com.mashibing.service.base.ZhCustomerService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerServiceImpl extends ServiceImpl implements ZhCustomerService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" new file mode 100644 index 00000000..16395bcd --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerService; +import com.mashibing.mapper.ZhCustomerServiceMapper; +import com.mashibing.service.base.ZhCustomerServiceService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主服务 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerServiceServiceImpl extends ServiceImpl implements ZhCustomerServiceService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" new file mode 100644 index 00000000..109c871b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerServiceType; +import com.mashibing.mapper.ZhCustomerServiceTypeMapper; +import com.mashibing.service.base.ZhCustomerServiceTypeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主服务类型 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerServiceTypeServiceImpl extends ServiceImpl implements ZhCustomerServiceTypeService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" new file mode 100644 index 00000000..def513b7 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContractCell; +import com.mashibing.mapper.ZhRentContractCellMapper; +import com.mashibing.service.base.ZhRentContractCellService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同房间 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractCellServiceImpl extends ServiceImpl implements ZhRentContractCellService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" new file mode 100644 index 00000000..45c0da98 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContractChange; +import com.mashibing.mapper.ZhRentContractChangeMapper; +import com.mashibing.service.base.ZhRentContractChangeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同变更 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractChangeServiceImpl extends ServiceImpl implements ZhRentContractChangeService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" new file mode 100644 index 00000000..2fdfbd4d --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContractRefund; +import com.mashibing.mapper.ZhRentContractRefundMapper; +import com.mashibing.service.base.ZhRentContractRefundService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同退款 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractRefundServiceImpl extends ServiceImpl implements ZhRentContractRefundService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" new file mode 100644 index 00000000..a93da188 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContractReturn; +import com.mashibing.mapper.ZhRentContractReturnMapper; +import com.mashibing.service.base.ZhRentContractReturnService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同返利 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractReturnServiceImpl extends ServiceImpl implements ZhRentContractReturnService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" new file mode 100644 index 00000000..267f891b --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContract; +import com.mashibing.mapper.ZhRentContractMapper; +import com.mashibing.service.base.ZhRentContractService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractServiceImpl extends ServiceImpl implements ZhRentContractService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" new file mode 100644 index 00000000..39bdc8ef --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentInformation; +import com.mashibing.mapper.ZhRentInformationMapper; +import com.mashibing.service.base.ZhRentInformationService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租户信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentInformationServiceImpl extends ServiceImpl implements ZhRentInformationService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" new file mode 100644 index 00000000..d370c7df --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentReceive; +import com.mashibing.mapper.ZhRentReceiveMapper; +import com.mashibing.service.base.ZhRentReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租金收取 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentReceiveServiceImpl extends ServiceImpl implements ZhRentReceiveService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" new file mode 100644 index 00000000..2cd6279c --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentShare; +import com.mashibing.mapper.ZhRentShareMapper; +import com.mashibing.service.base.ZhRentShareService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁分租信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentShareServiceImpl extends ServiceImpl implements ZhRentShareService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" new file mode 100644 index 00000000..cdd56946 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentTransfer; +import com.mashibing.mapper.ZhRentTransferMapper; +import com.mashibing.service.base.ZhRentTransferService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租户转兑 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentTransferServiceImpl extends ServiceImpl implements ZhRentTransferService { + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/vo/CellMessage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/vo/CellMessage.java" new file mode 100644 index 00000000..e41350a1 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/vo/CellMessage.java" @@ -0,0 +1,71 @@ +package com.mashibing.vo; + +public class CellMessage { + private String unitCode; + private Integer startFloor; + private Integer stopFloor; + private Integer startCellId; + private Integer stopCellId; + + public CellMessage() { + } + + public CellMessage(String unitCode, Integer startFloor, Integer stopFloor, Integer startCellId, Integer stopCellId) { + this.unitCode = unitCode; + this.startFloor = startFloor; + this.stopFloor = stopFloor; + this.startCellId = startCellId; + this.stopCellId = stopCellId; + } + + public String getUnitCode() { + return unitCode; + } + + public void setUnitCode(String unitCode) { + this.unitCode = unitCode; + } + + public Integer getStartFloor() { + return startFloor; + } + + public void setStartFloor(Integer startFloor) { + this.startFloor = startFloor; + } + + public Integer getStopFloor() { + return stopFloor; + } + + public void setStopFloor(Integer stopFloor) { + this.stopFloor = stopFloor; + } + + public Integer getStartCellId() { + return startCellId; + } + + public void setStartCellId(Integer startCellId) { + this.startCellId = startCellId; + } + + public Integer getStopCellId() { + return stopCellId; + } + + public void setStopCellId(Integer stopCellId) { + this.stopCellId = stopCellId; + } + + @Override + public String toString() { + return "CellMessage{" + + "unitCode='" + unitCode + '\'' + + ", startFloor=" + startFloor + + ", stopFloor=" + stopFloor + + ", startCellId=" + startCellId + + ", stopCellId=" + stopCellId + + '}'; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/vo/UnitMessage.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/vo/UnitMessage.java" new file mode 100644 index 00000000..c298fff9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/java/com/mashibing/vo/UnitMessage.java" @@ -0,0 +1,39 @@ +package com.mashibing.vo; + +public class UnitMessage { + + private String buildingCode; + private Integer unitCount; + + public UnitMessage() { + } + + public UnitMessage(String buildingCode, Integer unitCount) { + this.buildingCode = buildingCode; + this.unitCount = unitCount; + } + + public String getBuildingCode() { + return buildingCode; + } + + public void setBuildingCode(String buildingCode) { + this.buildingCode = buildingCode; + } + + public Integer getUnitCount() { + return unitCount; + } + + public void setUnitCount(Integer unitCount) { + this.unitCount = unitCount; + } + + @Override + public String toString() { + return "UnitMessage{" + + "buildingCode='" + buildingCode + '\'' + + ", unitCount=" + unitCount + + '}'; + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/resources/application.yaml" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/resources/application.yaml" new file mode 100644 index 00000000..fbf86b78 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/main/resources/application.yaml" @@ -0,0 +1,21 @@ +#项目启动端口 +server: + port: 8080 +#数据源配置 +spring: + datasource: + url: jdbc:mysql://localhost:3306/family_service_platform?serverTimezone=UTC&useSSL=false + password: 123456 + username: root + driver-class-name: com.mysql.cj.jdbc.Driver +#配置mybatis +mybatis: + mapper-locations: classpath:com/mashibing/mapper/*.xml + configuration: + map-underscore-to-camel-case: true +#sql语句日志打印 +logging: + level: + com: + mashibing: + mapper: debug diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" new file mode 100644 index 00000000..22c5e9e9 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" @@ -0,0 +1,13 @@ +package com.mashibing; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class FamilyServicePlatformApplicationTests { + + @Test + void contextLoads() { + } + +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" new file mode 100644 index 00000000..f8a635a0 --- /dev/null +++ "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" @@ -0,0 +1,52 @@ +package com.mashibing; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.generator.AutoGenerator; +import com.baomidou.mybatisplus.generator.config.DataSourceConfig; +import com.baomidou.mybatisplus.generator.config.GlobalConfig; +import com.baomidou.mybatisplus.generator.config.PackageConfig; +import com.baomidou.mybatisplus.generator.config.StrategyConfig; +import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy; +import org.junit.jupiter.api.Test; + +public class TestGenerator { + + @Test + public void testGenerator() { + AutoGenerator autoGenerator = new AutoGenerator(); + + //全局配置 + GlobalConfig globalConfig = new GlobalConfig(); + globalConfig.setAuthor("lian") + .setOutputDir("D:\\IdeaProjects\\family_service_platform\\src\\main\\java")//设置输出路径 + .setFileOverride(true)//设置文件覆盖 + .setIdType(IdType.AUTO)//设置主键生成策略 + .setServiceName("%sService")//service接口的名称 + .setBaseResultMap(true)//基本结果集合 + .setBaseColumnList(true)//设置基本的列 + .setControllerName("%sController"); + + //配置数据源 + DataSourceConfig dataSourceConfig = new DataSourceConfig(); + dataSourceConfig.setDriverName("com.mysql.cj.jdbc.Driver").setUrl("jdbc:mysql://localhost:3306/family_service_platform?serverTimezone=UTC") + .setUsername("root").setPassword("123456"); + + //策略配置 + StrategyConfig strategyConfig = new StrategyConfig(); + strategyConfig.setCapitalMode(true)//设置全局大写命名 + .setNaming(NamingStrategy.underline_to_camel)//数据库表映射到实体的命名策略 + //.setTablePrefix("tbl_")//设置表名前缀 + .setInclude(); + + //包名配置 + PackageConfig packageConfig = new PackageConfig(); + packageConfig.setParent("com.mashibing").setMapper("mapper") + .setService("service").setController("controller") + .setEntity("bean").setXml("mapper"); + + autoGenerator.setGlobalConfig(globalConfig).setDataSource(dataSourceConfig) + .setStrategy(strategyConfig).setPackageInfo(packageConfig); + + autoGenerator.execute(); + } +} diff --git "a/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/webproject.zip" "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/webproject.zip" new file mode 100644 index 00000000..eb39e325 Binary files /dev/null and "b/project/05\346\245\274\347\233\230\347\256\241\347\220\2062/webproject.zip" differ diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.gitignore" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.gitignore" new file mode 100644 index 00000000..a2a3040a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.gitignore" @@ -0,0 +1,31 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/** +!**/src/test/** + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ + +### VS Code ### +.vscode/ diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" new file mode 100644 index 00000000..e76d1f32 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" @@ -0,0 +1,117 @@ +/* + * Copyright 2007-present the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +import java.net.*; +import java.io.*; +import java.nio.channels.*; +import java.util.Properties; + +public class MavenWrapperDownloader { + + private static final String WRAPPER_VERSION = "0.5.6"; + /** + * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. + */ + private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" + + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar"; + + /** + * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to + * use instead of the default one. + */ + private static final String MAVEN_WRAPPER_PROPERTIES_PATH = + ".mvn/wrapper/maven-wrapper.properties"; + + /** + * Path where the maven-wrapper.jar will be saved to. + */ + private static final String MAVEN_WRAPPER_JAR_PATH = + ".mvn/wrapper/maven-wrapper.jar"; + + /** + * Name of the property which should be used to override the default download url for the wrapper. + */ + private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; + + public static void main(String args[]) { + System.out.println("- Downloader started"); + File baseDirectory = new File(args[0]); + System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); + + // If the maven-wrapper.properties exists, read it and check if it contains a custom + // wrapperUrl parameter. + File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); + String url = DEFAULT_DOWNLOAD_URL; + if(mavenWrapperPropertyFile.exists()) { + FileInputStream mavenWrapperPropertyFileInputStream = null; + try { + mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); + Properties mavenWrapperProperties = new Properties(); + mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); + url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); + } catch (IOException e) { + System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); + } finally { + try { + if(mavenWrapperPropertyFileInputStream != null) { + mavenWrapperPropertyFileInputStream.close(); + } + } catch (IOException e) { + // Ignore ... + } + } + } + System.out.println("- Downloading from: " + url); + + File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); + if(!outputFile.getParentFile().exists()) { + if(!outputFile.getParentFile().mkdirs()) { + System.out.println( + "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'"); + } + } + System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); + try { + downloadFileFromURL(url, outputFile); + System.out.println("Done"); + System.exit(0); + } catch (Throwable e) { + System.out.println("- Error downloading"); + e.printStackTrace(); + System.exit(1); + } + } + + private static void downloadFileFromURL(String urlString, File destination) throws Exception { + if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { + String username = System.getenv("MVNW_USERNAME"); + char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); + Authenticator.setDefault(new Authenticator() { + @Override + protected PasswordAuthentication getPasswordAuthentication() { + return new PasswordAuthentication(username, password); + } + }); + } + URL website = new URL(urlString); + ReadableByteChannel rbc; + rbc = Channels.newChannel(website.openStream()); + FileOutputStream fos = new FileOutputStream(destination); + fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); + fos.close(); + rbc.close(); + } + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.mvn/wrapper/maven-wrapper.jar" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.mvn/wrapper/maven-wrapper.jar" new file mode 100644 index 00000000..2cc7d4a5 Binary files /dev/null and "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.mvn/wrapper/maven-wrapper.jar" differ diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.mvn/wrapper/maven-wrapper.properties" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.mvn/wrapper/maven-wrapper.properties" new file mode 100644 index 00000000..642d572c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/.mvn/wrapper/maven-wrapper.properties" @@ -0,0 +1,2 @@ +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip +wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/README.md" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/README.md" new file mode 100644 index 00000000..281f4882 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/README.md" @@ -0,0 +1,5 @@ +前端项目地址 +浏览器打开: +https://github.com/db46rt00ors/property-server-manage +git打开: +https://github.com/db46rt00ors/property-server-manage.git \ No newline at end of file diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/mvnw" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/mvnw" new file mode 100644 index 00000000..a16b5431 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/mvnw" @@ -0,0 +1,310 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Maven Start Up Batch script +# +# Required ENV vars: +# ------------------ +# JAVA_HOME - location of a JDK home dir +# +# Optional ENV vars +# ----------------- +# M2_HOME - location of maven2's installed home dir +# MAVEN_OPTS - parameters passed to the Java VM when running Maven +# e.g. to debug Maven itself, use +# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# ---------------------------------------------------------------------------- + +if [ -z "$MAVEN_SKIP_RC" ] ; then + + if [ -f /etc/mavenrc ] ; then + . /etc/mavenrc + fi + + if [ -f "$HOME/.mavenrc" ] ; then + . "$HOME/.mavenrc" + fi + +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +mingw=false +case "`uname`" in + CYGWIN*) cygwin=true ;; + MINGW*) mingw=true;; + Darwin*) darwin=true + # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home + # See https://developer.apple.com/library/mac/qa/qa1170/_index.html + if [ -z "$JAVA_HOME" ]; then + if [ -x "/usr/libexec/java_home" ]; then + export JAVA_HOME="`/usr/libexec/java_home`" + else + export JAVA_HOME="/Library/Java/Home" + fi + fi + ;; +esac + +if [ -z "$JAVA_HOME" ] ; then + if [ -r /etc/gentoo-release ] ; then + JAVA_HOME=`java-config --jre-home` + fi +fi + +if [ -z "$M2_HOME" ] ; then + ## resolve links - $0 may be a link to maven's home + PRG="$0" + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG="`dirname "$PRG"`/$link" + fi + done + + saveddir=`pwd` + + M2_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + M2_HOME=`cd "$M2_HOME" && pwd` + + cd "$saveddir" + # echo Using m2 at $M2_HOME +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --unix "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --unix "$CLASSPATH"` +fi + +# For Mingw, ensure paths are in UNIX format before anything is touched +if $mingw ; then + [ -n "$M2_HOME" ] && + M2_HOME="`(cd "$M2_HOME"; pwd)`" + [ -n "$JAVA_HOME" ] && + JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" +fi + +if [ -z "$JAVA_HOME" ]; then + javaExecutable="`which javac`" + if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then + # readlink(1) is not available as standard on Solaris 10. + readLink=`which readlink` + if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then + if $darwin ; then + javaHome="`dirname \"$javaExecutable\"`" + javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" + else + javaExecutable="`readlink -f \"$javaExecutable\"`" + fi + javaHome="`dirname \"$javaExecutable\"`" + javaHome=`expr "$javaHome" : '\(.*\)/bin'` + JAVA_HOME="$javaHome" + export JAVA_HOME + fi + fi +fi + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD="`which java`" + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." >&2 + echo " We cannot execute $JAVACMD" >&2 + exit 1 +fi + +if [ -z "$JAVA_HOME" ] ; then + echo "Warning: JAVA_HOME environment variable is not set." +fi + +CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher + +# traverses directory structure from process work directory to filesystem root +# first directory with .mvn subdirectory is considered project base directory +find_maven_basedir() { + + if [ -z "$1" ] + then + echo "Path not specified to find_maven_basedir" + return 1 + fi + + basedir="$1" + wdir="$1" + while [ "$wdir" != '/' ] ; do + if [ -d "$wdir"/.mvn ] ; then + basedir=$wdir + break + fi + # workaround for JBEAP-8937 (on Solaris 10/Sparc) + if [ -d "${wdir}" ]; then + wdir=`cd "$wdir/.."; pwd` + fi + # end of workaround + done + echo "${basedir}" +} + +# concatenates all lines of a file +concat_lines() { + if [ -f "$1" ]; then + echo "$(tr -s '\n' ' ' < "$1")" + fi +} + +BASE_DIR=`find_maven_basedir "$(pwd)"` +if [ -z "$BASE_DIR" ]; then + exit 1; +fi + +########################################################################################## +# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +# This allows using the maven wrapper in projects that prohibit checking in binary data. +########################################################################################## +if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found .mvn/wrapper/maven-wrapper.jar" + fi +else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." + fi + if [ -n "$MVNW_REPOURL" ]; then + jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + else + jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + fi + while IFS="=" read key value; do + case "$key" in (wrapperUrl) jarUrl="$value"; break ;; + esac + done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" + if [ "$MVNW_VERBOSE" = true ]; then + echo "Downloading from: $jarUrl" + fi + wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" + if $cygwin; then + wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` + fi + + if command -v wget > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found wget ... using wget" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + wget "$jarUrl" -O "$wrapperJarPath" + else + wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" + fi + elif command -v curl > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found curl ... using curl" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + curl -o "$wrapperJarPath" "$jarUrl" -f + else + curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f + fi + + else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Falling back to using Java to download" + fi + javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" + # For Cygwin, switch paths to Windows format before running javac + if $cygwin; then + javaClass=`cygpath --path --windows "$javaClass"` + fi + if [ -e "$javaClass" ]; then + if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Compiling MavenWrapperDownloader.java ..." + fi + # Compiling the Java class + ("$JAVA_HOME/bin/javac" "$javaClass") + fi + if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + # Running the downloader + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Running MavenWrapperDownloader.java ..." + fi + ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") + fi + fi + fi +fi +########################################################################################## +# End of extension +########################################################################################## + +export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} +if [ "$MVNW_VERBOSE" = true ]; then + echo $MAVEN_PROJECTBASEDIR +fi +MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --path --windows "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --windows "$CLASSPATH"` + [ -n "$MAVEN_PROJECTBASEDIR" ] && + MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` +fi + +# Provide a "standardized" way to retrieve the CLI args that will +# work with both Windows and non-Windows executions. +MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" +export MAVEN_CMD_LINE_ARGS + +WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +exec "$JAVACMD" \ + $MAVEN_OPTS \ + -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ + "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ + ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/mvnw.cmd" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/mvnw.cmd" new file mode 100644 index 00000000..c8d43372 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/mvnw.cmd" @@ -0,0 +1,182 @@ +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM https://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Maven Start Up Batch script +@REM +@REM Required ENV vars: +@REM JAVA_HOME - location of a JDK home dir +@REM +@REM Optional ENV vars +@REM M2_HOME - location of maven2's installed home dir +@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands +@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending +@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven +@REM e.g. to debug Maven itself, use +@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM ---------------------------------------------------------------------------- + +@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' +@echo off +@REM set title of command window +title %0 +@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' +@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% + +@REM set %HOME% to equivalent of $HOME +if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") + +@REM Execute a user defined script before this one +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre +@REM check for pre script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" +if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" +:skipRcPre + +@setlocal + +set ERROR_CODE=0 + +@REM To isolate internal variables from possible post scripts, we use another setlocal +@setlocal + +@REM ==== START VALIDATION ==== +if not "%JAVA_HOME%" == "" goto OkJHome + +echo. +echo Error: JAVA_HOME not found in your environment. >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +:OkJHome +if exist "%JAVA_HOME%\bin\java.exe" goto init + +echo. +echo Error: JAVA_HOME is set to an invalid directory. >&2 +echo JAVA_HOME = "%JAVA_HOME%" >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +@REM ==== END VALIDATION ==== + +:init + +@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". +@REM Fallback to current working directory if not found. + +set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% +IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir + +set EXEC_DIR=%CD% +set WDIR=%EXEC_DIR% +:findBaseDir +IF EXIST "%WDIR%"\.mvn goto baseDirFound +cd .. +IF "%WDIR%"=="%CD%" goto baseDirNotFound +set WDIR=%CD% +goto findBaseDir + +:baseDirFound +set MAVEN_PROJECTBASEDIR=%WDIR% +cd "%EXEC_DIR%" +goto endDetectBaseDir + +:baseDirNotFound +set MAVEN_PROJECTBASEDIR=%EXEC_DIR% +cd "%EXEC_DIR%" + +:endDetectBaseDir + +IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig + +@setlocal EnableExtensions EnableDelayedExpansion +for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a +@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% + +:endReadAdditionalConfig + +SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" +set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" +set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + +FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( + IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B +) + +@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +@REM This allows using the maven wrapper in projects that prohibit checking in binary data. +if exist %WRAPPER_JAR% ( + if "%MVNW_VERBOSE%" == "true" ( + echo Found %WRAPPER_JAR% + ) +) else ( + if not "%MVNW_REPOURL%" == "" ( + SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + ) + if "%MVNW_VERBOSE%" == "true" ( + echo Couldn't find %WRAPPER_JAR%, downloading it ... + echo Downloading from: %DOWNLOAD_URL% + ) + + powershell -Command "&{"^ + "$webclient = new-object System.Net.WebClient;"^ + "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ + "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ + "}"^ + "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ + "}" + if "%MVNW_VERBOSE%" == "true" ( + echo Finished downloading %WRAPPER_JAR% + ) +) +@REM End of extension + +@REM Provide a "standardized" way to retrieve the CLI args that will +@REM work with both Windows and non-Windows executions. +set MAVEN_CMD_LINE_ARGS=%* + +%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* +if ERRORLEVEL 1 goto error +goto end + +:error +set ERROR_CODE=1 + +:end +@endlocal & set ERROR_CODE=%ERROR_CODE% + +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost +@REM check for post script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" +if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" +:skipRcPost + +@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' +if "%MAVEN_BATCH_PAUSE%" == "on" pause + +if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% + +exit /B %ERROR_CODE% diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/pom.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/pom.xml" new file mode 100644 index 00000000..6507335a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/pom.xml" @@ -0,0 +1,94 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 2.2.6.RELEASE + + + com.mashibing + family_service_platform + 0.0.1-SNAPSHOT + family_service_platform + Demo project for Spring Boot + + + 1.8 + + + + + org.springframework.boot + spring-boot-starter-web + + + org.mybatis.spring.boot + mybatis-spring-boot-starter + 2.1.2 + + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + mysql + mysql-connector-java + runtime + + + + com.baomidou + mybatis-plus-generator + 3.3.1 + + + com.baomidou + mybatis-plus-boot-starter + 3.3.1 + + + org.apache.velocity + velocity-engine-core + 2.2 + + + org.springframework.boot + spring-boot-starter-test + test + + + org.junit.vintage + junit-vintage-engine + + + + + com.alibaba + fastjson + 1.2.9 + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + src/main/java + + **/*.xml + + + + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" new file mode 100644 index 00000000..023c9a63 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" @@ -0,0 +1,15 @@ +package com.mashibing; + +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +@MapperScan +public class FamilyServicePlatformApplication { + + public static void main(String[] args) { + SpringApplication.run(FamilyServicePlatformApplication.class, args); + } + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" new file mode 100644 index 00000000..1997f89d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" @@ -0,0 +1,531 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; +import java.util.Date; + +/** + *

+ * 楼宇信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcBuilding implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房产编码 + */ + private String estateCode; + + /** + * 楼宇编码 + */ + private String buildingCode; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 楼宇功能 + */ + private String buildingFunction; + + /** + * 使用面积 + */ + private Double usedArea; + + /** + * 建筑面积 + */ + private Double buildArea; + + /** + * 建设许可证号 + */ + private String buildPermissionId; + + /** + * 销售许可证号 + */ + private String salePermissionId; + + /** + * 竣工日期 + */ + private Date finishDate; + + /** + * 封顶日期 + */ + private Date overRoofDate; + + /** + * 装修 + */ + private String decorate; + + /** + * 结构类别 + */ + private String structType; + + /** + * 完损等级 + */ + private String damageGrade; + + /** + * 单元数量 + */ + private Double unitCount; + + /** + * 楼宇类型 + */ + private String buildingType; + + /** + * 清扫层数 + */ + private Integer cleanFloor; + + /** + * 拖洗层数 + */ + private Integer mopFloor; + + /** + * 楼狼通道地面 + */ + private Double channelArea; + + /** + * 电梯轿箱 + */ + private Integer elevator; + + /** + * 通道门 + */ + private Integer channelDoor; + + /** + * 电梯门 + */ + private Integer evevatorDoor; + + /** + * 水井门 + */ + private Integer waterWellDoor; + + /** + * 电井门 + */ + private Integer electricWellDoor; + + /** + * 百叶窗 + */ + private Integer windowShades; + + /** + * 消防栓 + */ + private Integer hydrant; + + /** + * 整容镜 + */ + private Integer mirrors; + + /** + * 单元门 + */ + private Integer unitDoor; + + /** + * 硬化地面 + */ + private Double hardenGroundArea; + + /** + * 提纯绿地 + */ + private Double greenArea; + + /** + * 不提纯绿地 + */ + private Double noGreenArea; + + /** + * 人工水面 + */ + private Double waterByPerson; + + /** + * 是否使用电梯 + */ + private String isElevator; + + /** + * 是否需要二次水电 + */ + private String isSecondWaterElectric; + + /** + * 随机标识码 + */ + private String randomIdentify; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getEstateCode() { + return estateCode; + } + + public void setEstateCode(String estateCode) { + this.estateCode = estateCode; + } + + public String getBuildingCode() { + return buildingCode; + } + + public void setBuildingCode(String buildingCode) { + this.buildingCode = buildingCode; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getBuildingFunction() { + return buildingFunction; + } + + public void setBuildingFunction(String buildingFunction) { + this.buildingFunction = buildingFunction; + } + + public Double getUsedArea() { + return usedArea; + } + + public void setUsedArea(Double usedArea) { + this.usedArea = usedArea; + } + + public Double getBuildArea() { + return buildArea; + } + + public void setBuildArea(Double buildArea) { + this.buildArea = buildArea; + } + + public String getBuildPermissionId() { + return buildPermissionId; + } + + public void setBuildPermissionId(String buildPermissionId) { + this.buildPermissionId = buildPermissionId; + } + + public String getSalePermissionId() { + return salePermissionId; + } + + public void setSalePermissionId(String salePermissionId) { + this.salePermissionId = salePermissionId; + } + + public Date getFinishDate() { + return finishDate; + } + + public void setFinishDate(Date finishDate) { + this.finishDate = finishDate; + } + + public Date getOverRoofDate() { + return overRoofDate; + } + + public void setOverRoofDate(Date overRoofDate) { + this.overRoofDate = overRoofDate; + } + + public String getDecorate() { + return decorate; + } + + public void setDecorate(String decorate) { + this.decorate = decorate; + } + + public String getStructType() { + return structType; + } + + public void setStructType(String structType) { + this.structType = structType; + } + + public String getDamageGrade() { + return damageGrade; + } + + public void setDamageGrade(String damageGrade) { + this.damageGrade = damageGrade; + } + + public Double getUnitCount() { + return unitCount; + } + + public void setUnitCount(Double unitCount) { + this.unitCount = unitCount; + } + + public String getBuildingType() { + return buildingType; + } + + public void setBuildingType(String buildingType) { + this.buildingType = buildingType; + } + + public Integer getCleanFloor() { + return cleanFloor; + } + + public void setCleanFloor(Integer cleanFloor) { + this.cleanFloor = cleanFloor; + } + + public Integer getMopFloor() { + return mopFloor; + } + + public void setMopFloor(Integer mopFloor) { + this.mopFloor = mopFloor; + } + + public Double getChannelArea() { + return channelArea; + } + + public void setChannelArea(Double channelArea) { + this.channelArea = channelArea; + } + + public Integer getElevator() { + return elevator; + } + + public void setElevator(Integer elevator) { + this.elevator = elevator; + } + + public Integer getChannelDoor() { + return channelDoor; + } + + public void setChannelDoor(Integer channelDoor) { + this.channelDoor = channelDoor; + } + + public Integer getEvevatorDoor() { + return evevatorDoor; + } + + public void setEvevatorDoor(Integer evevatorDoor) { + this.evevatorDoor = evevatorDoor; + } + + public Integer getWaterWellDoor() { + return waterWellDoor; + } + + public void setWaterWellDoor(Integer waterWellDoor) { + this.waterWellDoor = waterWellDoor; + } + + public Integer getElectricWellDoor() { + return electricWellDoor; + } + + public void setElectricWellDoor(Integer electricWellDoor) { + this.electricWellDoor = electricWellDoor; + } + + public Integer getWindowShades() { + return windowShades; + } + + public void setWindowShades(Integer windowShades) { + this.windowShades = windowShades; + } + + public Integer getHydrant() { + return hydrant; + } + + public void setHydrant(Integer hydrant) { + this.hydrant = hydrant; + } + + public Integer getMirrors() { + return mirrors; + } + + public void setMirrors(Integer mirrors) { + this.mirrors = mirrors; + } + + public Integer getUnitDoor() { + return unitDoor; + } + + public void setUnitDoor(Integer unitDoor) { + this.unitDoor = unitDoor; + } + + public Double getHardenGroundArea() { + return hardenGroundArea; + } + + public void setHardenGroundArea(Double hardenGroundArea) { + this.hardenGroundArea = hardenGroundArea; + } + + public Double getGreenArea() { + return greenArea; + } + + public void setGreenArea(Double greenArea) { + this.greenArea = greenArea; + } + + public Double getNoGreenArea() { + return noGreenArea; + } + + public void setNoGreenArea(Double noGreenArea) { + this.noGreenArea = noGreenArea; + } + + public Double getWaterByPerson() { + return waterByPerson; + } + + public void setWaterByPerson(Double waterByPerson) { + this.waterByPerson = waterByPerson; + } + + public String getIsElevator() { + return isElevator; + } + + public void setIsElevator(String isElevator) { + this.isElevator = isElevator; + } + + public String getIsSecondWaterElectric() { + return isSecondWaterElectric; + } + + public void setIsSecondWaterElectric(String isSecondWaterElectric) { + this.isSecondWaterElectric = isSecondWaterElectric; + } + + public String getRandomIdentify() { + return randomIdentify; + } + + public void setRandomIdentify(String randomIdentify) { + this.randomIdentify = randomIdentify; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "FcBuilding{" + + "id=" + id + + ", estateCode=" + estateCode + + ", buildingCode=" + buildingCode + + ", buildingName=" + buildingName + + ", buildingFunction=" + buildingFunction + + ", usedArea=" + usedArea + + ", buildArea=" + buildArea + + ", buildPermissionId=" + buildPermissionId + + ", salePermissionId=" + salePermissionId + + ", finishDate=" + finishDate + + ", overRoofDate=" + overRoofDate + + ", decorate=" + decorate + + ", structType=" + structType + + ", damageGrade=" + damageGrade + + ", unitCount=" + unitCount + + ", buildingType=" + buildingType + + ", cleanFloor=" + cleanFloor + + ", mopFloor=" + mopFloor + + ", channelArea=" + channelArea + + ", elevator=" + elevator + + ", channelDoor=" + channelDoor + + ", evevatorDoor=" + evevatorDoor + + ", waterWellDoor=" + waterWellDoor + + ", electricWellDoor=" + electricWellDoor + + ", windowShades=" + windowShades + + ", hydrant=" + hydrant + + ", mirrors=" + mirrors + + ", unitDoor=" + unitDoor + + ", hardenGroundArea=" + hardenGroundArea + + ", greenArea=" + greenArea + + ", noGreenArea=" + noGreenArea + + ", waterByPerson=" + waterByPerson + + ", isElevator=" + isElevator + + ", isSecondWaterElectric=" + isSecondWaterElectric + + ", randomIdentify=" + randomIdentify + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" new file mode 100644 index 00000000..72f3bac2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" @@ -0,0 +1,474 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 房间信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcCell implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 房间编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 单元编码 + */ + private String unitCode; + + /** + * 房间编码 + */ + private String cellCode; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 户型编码 + */ + private String cellHouseCode; + + /** + * 朝向编码 + */ + private String cellTowardCode; + + /** + * 功能 + */ + private String cellFunction; + + /** + * 装修编码 + */ + private String cellDecorateCode; + + /** + * 使用面积 + */ + private Double cellUsedArea; + + /** + * 建筑面积 + */ + private Double cellBuildArea; + + /** + * 车库面积 + */ + private Double carportArea; + + /** + * 车位面积 + */ + private Double carArea; + + /** + * 阁楼面积 + */ + private Double loftArea; + + /** + * 储藏室面积 + */ + private Double storeArea; + + /** + * 楼层数 + */ + private Integer floorNumber; + + /** + * 上次欠缴 + */ + private Double lastDebt; + + /** + * 物业类型 + */ + private Long propertyType; + + /** + * 租金 + */ + private Double rentMoney; + + /** + * 长度 + */ + private Double length; + + /** + * 宽度 + */ + private Double width; + + /** + * 档口用途 + */ + private Long stallUse; + + /** + * 档口区域 + */ + private Long stallArea; + + /** + * 是否已售 + */ + private String isSale; + + /** + * 是否已租 + */ + private String isRent; + + /** + * 销售合同编号 + */ + private String saleContractId; + + /** + * 租赁合同编号 + */ + private String rentContractId; + + /** + * 备注 + */ + private String remark; + + /** + * 系数 + */ + private String factor; + + /** + * 房间性质 + */ + private Integer cellProperty; + + /** + * 储藏室号 + */ + private String storeId; + + /** + * 车牌号 + */ + private String carLicenceId; + + /** + * 车位号 + */ + private String carSpaceId; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUnitCode() { + return unitCode; + } + + public void setUnitCode(String unitCode) { + this.unitCode = unitCode; + } + + public String getCellCode() { + return cellCode; + } + + public void setCellCode(String cellCode) { + this.cellCode = cellCode; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getCellHouseCode() { + return cellHouseCode; + } + + public void setCellHouseCode(String cellHouseCode) { + this.cellHouseCode = cellHouseCode; + } + + public String getCellTowardCode() { + return cellTowardCode; + } + + public void setCellTowardCode(String cellTowardCode) { + this.cellTowardCode = cellTowardCode; + } + + public String getCellFunction() { + return cellFunction; + } + + public void setCellFunction(String cellFunction) { + this.cellFunction = cellFunction; + } + + public String getCellDecorateCode() { + return cellDecorateCode; + } + + public void setCellDecorateCode(String cellDecorateCode) { + this.cellDecorateCode = cellDecorateCode; + } + + public Double getCellUsedArea() { + return cellUsedArea; + } + + public void setCellUsedArea(Double cellUsedArea) { + this.cellUsedArea = cellUsedArea; + } + + public Double getCellBuildArea() { + return cellBuildArea; + } + + public void setCellBuildArea(Double cellBuildArea) { + this.cellBuildArea = cellBuildArea; + } + + public Double getCarportArea() { + return carportArea; + } + + public void setCarportArea(Double carportArea) { + this.carportArea = carportArea; + } + + public Double getCarArea() { + return carArea; + } + + public void setCarArea(Double carArea) { + this.carArea = carArea; + } + + public Double getLoftArea() { + return loftArea; + } + + public void setLoftArea(Double loftArea) { + this.loftArea = loftArea; + } + + public Double getStoreArea() { + return storeArea; + } + + public void setStoreArea(Double storeArea) { + this.storeArea = storeArea; + } + + public Integer getFloorNumber() { + return floorNumber; + } + + public void setFloorNumber(Integer floorNumber) { + this.floorNumber = floorNumber; + } + + public Double getLastDebt() { + return lastDebt; + } + + public void setLastDebt(Double lastDebt) { + this.lastDebt = lastDebt; + } + + public Long getPropertyType() { + return propertyType; + } + + public void setPropertyType(Long propertyType) { + this.propertyType = propertyType; + } + + public Double getRentMoney() { + return rentMoney; + } + + public void setRentMoney(Double rentMoney) { + this.rentMoney = rentMoney; + } + + public Double getLength() { + return length; + } + + public void setLength(Double length) { + this.length = length; + } + + public Double getWidth() { + return width; + } + + public void setWidth(Double width) { + this.width = width; + } + + public Long getStallUse() { + return stallUse; + } + + public void setStallUse(Long stallUse) { + this.stallUse = stallUse; + } + + public Long getStallArea() { + return stallArea; + } + + public void setStallArea(Long stallArea) { + this.stallArea = stallArea; + } + + public String getIsSale() { + return isSale; + } + + public void setIsSale(String isSale) { + this.isSale = isSale; + } + + public String getIsRent() { + return isRent; + } + + public void setIsRent(String isRent) { + this.isRent = isRent; + } + + public String getSaleContractId() { + return saleContractId; + } + + public void setSaleContractId(String saleContractId) { + this.saleContractId = saleContractId; + } + + public String getRentContractId() { + return rentContractId; + } + + public void setRentContractId(String rentContractId) { + this.rentContractId = rentContractId; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getFactor() { + return factor; + } + + public void setFactor(String factor) { + this.factor = factor; + } + + public Integer getCellProperty() { + return cellProperty; + } + + public void setCellProperty(Integer cellProperty) { + this.cellProperty = cellProperty; + } + + public String getStoreId() { + return storeId; + } + + public void setStoreId(String storeId) { + this.storeId = storeId; + } + + public String getCarLicenceId() { + return carLicenceId; + } + + public void setCarLicenceId(String carLicenceId) { + this.carLicenceId = carLicenceId; + } + + public String getCarSpaceId() { + return carSpaceId; + } + + public void setCarSpaceId(String carSpaceId) { + this.carSpaceId = carSpaceId; + } + + @Override + public String toString() { + return "FcCell{" + + "id=" + id + + ", unitCode=" + unitCode + + ", cellCode=" + cellCode + + ", cellName=" + cellName + + ", cellHouseCode=" + cellHouseCode + + ", cellTowardCode=" + cellTowardCode + + ", cellFunction=" + cellFunction + + ", cellDecorateCode=" + cellDecorateCode + + ", cellUsedArea=" + cellUsedArea + + ", cellBuildArea=" + cellBuildArea + + ", carportArea=" + carportArea + + ", carArea=" + carArea + + ", loftArea=" + loftArea + + ", storeArea=" + storeArea + + ", floorNumber=" + floorNumber + + ", lastDebt=" + lastDebt + + ", propertyType=" + propertyType + + ", rentMoney=" + rentMoney + + ", length=" + length + + ", width=" + width + + ", stallUse=" + stallUse + + ", stallArea=" + stallArea + + ", isSale=" + isSale + + ", isRent=" + isRent + + ", saleContractId=" + saleContractId + + ", rentContractId=" + rentContractId + + ", remark=" + remark + + ", factor=" + factor + + ", cellProperty=" + cellProperty + + ", storeId=" + storeId + + ", carLicenceId=" + carLicenceId + + ", carSpaceId=" + carSpaceId + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" new file mode 100644 index 00000000..4f403639 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 房间加建信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcCellAddbuild implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属房间id + */ + private Integer cellId; + + /** + * 加建面积 + */ + private Double addbuildArea; + + /** + * 加建时间 + */ + private LocalDateTime addbuildTime; + + /** + * 加建状态 + */ + private String addbuildState; + + /** + * 加建说明 + */ + private String addbuildDesc; + + /** + * 加建附件 + */ + private String addbuildAccessory; + + /** + * 操作人 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Double getAddbuildArea() { + return addbuildArea; + } + + public void setAddbuildArea(Double addbuildArea) { + this.addbuildArea = addbuildArea; + } + + public LocalDateTime getAddbuildTime() { + return addbuildTime; + } + + public void setAddbuildTime(LocalDateTime addbuildTime) { + this.addbuildTime = addbuildTime; + } + + public String getAddbuildState() { + return addbuildState; + } + + public void setAddbuildState(String addbuildState) { + this.addbuildState = addbuildState; + } + + public String getAddbuildDesc() { + return addbuildDesc; + } + + public void setAddbuildDesc(String addbuildDesc) { + this.addbuildDesc = addbuildDesc; + } + + public String getAddbuildAccessory() { + return addbuildAccessory; + } + + public void setAddbuildAccessory(String addbuildAccessory) { + this.addbuildAccessory = addbuildAccessory; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "FcCellAddbuild{" + + "id=" + id + + ", cellId=" + cellId + + ", addbuildArea=" + addbuildArea + + ", addbuildTime=" + addbuildTime + + ", addbuildState=" + addbuildState + + ", addbuildDesc=" + addbuildDesc + + ", addbuildAccessory=" + addbuildAccessory + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" new file mode 100644 index 00000000..8b7db416 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" @@ -0,0 +1,336 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 楼盘信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcEstate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房产编码 + */ + private String estateCode; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 房产地址 + */ + private String estateAddr; + + /** + * 占地面积 + */ + private Double coverArea; + + /** + * 建筑面积 + */ + private Double buildArea; + + /** + * 绿地面积 + */ + private Double greenArea; + + /** + * 道路面积 + */ + private Double roadArea; + + /** + * 楼宇数量 + */ + private Double buildingNumber; + + /** + * 负责人 + */ + private String buildingLeader; + + /** + * 公司名称 + */ + private String companyName; + + /** + * 法人代表 + */ + private String companyBehalf; + + /** + * 联系人 + */ + private String contact; + + /** + * 联系电话 + */ + private String contactPhone; + + /** + * 联系地址 + */ + private String contactAddr; + + /** + * 车位滞纳金比率 + */ + private Double carSpaceDelayRate; + + /** + * 车位超期天数 + */ + private Integer carSpaceOverDay; + + /** + * 房产类型 + */ + private String estateType; + + /** + * 路灯数量 + */ + private Integer streetLampNumber; + + /** + * 化粪池数量 + */ + @TableField("hfcNum") + private Integer hfcNum; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getEstateCode() { + return estateCode; + } + + public void setEstateCode(String estateCode) { + this.estateCode = estateCode; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getEstateAddr() { + return estateAddr; + } + + public void setEstateAddr(String estateAddr) { + this.estateAddr = estateAddr; + } + + public Double getCoverArea() { + return coverArea; + } + + public void setCoverArea(Double coverArea) { + this.coverArea = coverArea; + } + + public Double getBuildArea() { + return buildArea; + } + + public void setBuildArea(Double buildArea) { + this.buildArea = buildArea; + } + + public Double getGreenArea() { + return greenArea; + } + + public void setGreenArea(Double greenArea) { + this.greenArea = greenArea; + } + + public Double getRoadArea() { + return roadArea; + } + + public void setRoadArea(Double roadArea) { + this.roadArea = roadArea; + } + + public Double getBuildingNumber() { + return buildingNumber; + } + + public void setBuildingNumber(Double buildingNumber) { + this.buildingNumber = buildingNumber; + } + + public String getBuildingLeader() { + return buildingLeader; + } + + public void setBuildingLeader(String buildingLeader) { + this.buildingLeader = buildingLeader; + } + + public String getCompanyName() { + return companyName; + } + + public void setCompanyName(String companyName) { + this.companyName = companyName; + } + + public String getCompanyBehalf() { + return companyBehalf; + } + + public void setCompanyBehalf(String companyBehalf) { + this.companyBehalf = companyBehalf; + } + + public String getContact() { + return contact; + } + + public void setContact(String contact) { + this.contact = contact; + } + + public String getContactPhone() { + return contactPhone; + } + + public void setContactPhone(String contactPhone) { + this.contactPhone = contactPhone; + } + + public String getContactAddr() { + return contactAddr; + } + + public void setContactAddr(String contactAddr) { + this.contactAddr = contactAddr; + } + + public Double getCarSpaceDelayRate() { + return carSpaceDelayRate; + } + + public void setCarSpaceDelayRate(Double carSpaceDelayRate) { + this.carSpaceDelayRate = carSpaceDelayRate; + } + + public Integer getCarSpaceOverDay() { + return carSpaceOverDay; + } + + public void setCarSpaceOverDay(Integer carSpaceOverDay) { + this.carSpaceOverDay = carSpaceOverDay; + } + + public String getEstateType() { + return estateType; + } + + public void setEstateType(String estateType) { + this.estateType = estateType; + } + + public Integer getStreetLampNumber() { + return streetLampNumber; + } + + public void setStreetLampNumber(Integer streetLampNumber) { + this.streetLampNumber = streetLampNumber; + } + + public Integer getHfcNum() { + return hfcNum; + } + + public void setHfcNum(Integer hfcNum) { + this.hfcNum = hfcNum; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "FcEstate{" + + "id=" + id + + ", estateCode=" + estateCode + + ", estateName=" + estateName + + ", estateAddr=" + estateAddr + + ", coverArea=" + coverArea + + ", buildArea=" + buildArea + + ", greenArea=" + greenArea + + ", roadArea=" + roadArea + + ", buildingNumber=" + buildingNumber + + ", buildingLeader=" + buildingLeader + + ", companyName=" + companyName + + ", companyBehalf=" + companyBehalf + + ", contact=" + contact + + ", contactPhone=" + contactPhone + + ", contactAddr=" + contactAddr + + ", carSpaceDelayRate=" + carSpaceDelayRate + + ", carSpaceOverDay=" + carSpaceOverDay + + ", estateType=" + estateType + + ", streetLampNumber=" + streetLampNumber + + ", hfcNum=" + hfcNum + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" new file mode 100644 index 00000000..c455aa05 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 单元信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FcUnit implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 楼宇编号 + */ + private String buildingCode; + + /** + * 单元编码 + */ + private String unitCode; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 开始楼层 + */ + private Integer startFloor; + + /** + * 结束楼层 + */ + private Integer stopFloor; + + /** + * 开始房号 + */ + private Integer startCellId; + + /** + * 结束房号 + */ + private Integer stopCellId; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBuildingCode() { + return buildingCode; + } + + public void setBuildingCode(String buildingCode) { + this.buildingCode = buildingCode; + } + + public String getUnitCode() { + return unitCode; + } + + public void setUnitCode(String unitCode) { + this.unitCode = unitCode; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public Integer getStartFloor() { + return startFloor; + } + + public void setStartFloor(Integer startFloor) { + this.startFloor = startFloor; + } + + public Integer getStopFloor() { + return stopFloor; + } + + public void setStopFloor(Integer stopFloor) { + this.stopFloor = stopFloor; + } + + public Integer getStartCellId() { + return startCellId; + } + + public void setStartCellId(Integer startCellId) { + this.startCellId = startCellId; + } + + public Integer getStopCellId() { + return stopCellId; + } + + public void setStopCellId(Integer stopCellId) { + this.stopCellId = stopCellId; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "FcUnit{" + + "id=" + id + + ", buildingCode=" + buildingCode + + ", unitCode=" + unitCode + + ", unitName=" + unitName + + ", startFloor=" + startFloor + + ", stopFloor=" + stopFloor + + ", startCellId=" + startCellId + + ", stopCellId=" + stopCellId + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" new file mode 100644 index 00000000..d867e860 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" @@ -0,0 +1,221 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 房产信息临时表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyEstateTemporary implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 所属公司 + */ + private String company; + + /** + * 房产编码 + */ + private String estateCode; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 楼宇编码 + */ + private String buildingCode; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 单元编码 + */ + private String unitCode; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 房间编码 + */ + private String cellCode; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 建筑面积 + */ + private Double buildArea; + + /** + * 楼层数 + */ + private Integer floorNumber; + + /** + * 功能 + */ + private String function; + + /** + * 备注 + */ + private String remark; + + /** + * 操作人编码 + */ + private String operatePerson; + + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getEstateCode() { + return estateCode; + } + + public void setEstateCode(String estateCode) { + this.estateCode = estateCode; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getBuildingCode() { + return buildingCode; + } + + public void setBuildingCode(String buildingCode) { + this.buildingCode = buildingCode; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getUnitCode() { + return unitCode; + } + + public void setUnitCode(String unitCode) { + this.unitCode = unitCode; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public String getCellCode() { + return cellCode; + } + + public void setCellCode(String cellCode) { + this.cellCode = cellCode; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public Double getBuildArea() { + return buildArea; + } + + public void setBuildArea(Double buildArea) { + this.buildArea = buildArea; + } + + public Integer getFloorNumber() { + return floorNumber; + } + + public void setFloorNumber(Integer floorNumber) { + this.floorNumber = floorNumber; + } + + public String getFunction() { + return function; + } + + public void setFunction(String function) { + this.function = function; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + @Override + public String toString() { + return "FyEstateTemporary{" + + "company=" + company + + ", estateCode=" + estateCode + + ", estateName=" + estateName + + ", buildingCode=" + buildingCode + + ", buildingName=" + buildingName + + ", unitCode=" + unitCode + + ", unitName=" + unitName + + ", cellCode=" + cellCode + + ", cellName=" + cellName + + ", buildArea=" + buildArea + + ", floorNumber=" + floorNumber + + ", function=" + function + + ", remark=" + remark + + ", operatePerson=" + operatePerson + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" new file mode 100644 index 00000000..070de0e0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 历史费用临时表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyHistoryMoneyTemp implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 房间id + */ + private Integer cellId; + + /** + * 房产名称 + */ + private String cellName; + + /** + * 建筑面积 + */ + private Double buildArea; + + /** + * 单价 + */ + private Double priceUnit; + + /** + * 金额 + */ + private Double money; + + /** + * 费用起期 + */ + private LocalDateTime moneyStartDate; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 备注 + */ + private String remark; + + /** + * 操作人编码 + */ + private String operatePerson; + + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public Double getBuildArea() { + return buildArea; + } + + public void setBuildArea(Double buildArea) { + this.buildArea = buildArea; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public LocalDateTime getMoneyStartDate() { + return moneyStartDate; + } + + public void setMoneyStartDate(LocalDateTime moneyStartDate) { + this.moneyStartDate = moneyStartDate; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + @Override + public String toString() { + return "FyHistoryMoneyTemp{" + + "cellId=" + cellId + + ", cellName=" + cellName + + ", buildArea=" + buildArea + + ", priceUnit=" + priceUnit + + ", money=" + money + + ", moneyStartDate=" + moneyStartDate + + ", moneyStopDate=" + moneyStopDate + + ", remark=" + remark + + ", operatePerson=" + operatePerson + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" new file mode 100644 index 00000000..ba6be805 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" @@ -0,0 +1,363 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 作废单主单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyInvalidMain implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 作废单号 + */ + @TableId(value = "invalid_id", type = IdType.AUTO) + private String invalidId; + + /** + * 所属收款单号 + */ + private String receiveId; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 收费日期 + */ + private LocalDateTime receiveDate; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 费用金额 + */ + private Double money; + + /** + * 实收金额 + */ + private Double realReceiveMoney; + + /** + * 优惠金额 + */ + private Double discountMoney; + + /** + * 收款方式 + */ + private String receiveMethod; + + /** + * 是否业主 + */ + private String isCustomer; + + /** + * 收费金额 + */ + private Double receiveMoney; + + /** + * 费项id + */ + private Long moneyId; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 本次欠缴 + */ + private Double currentDelayMoney; + + /** + * 上次欠缴 + */ + private Double lastDelayMoney; + + /** + * 作废类型 + */ + private String invalidType; + + /** + * 收据号 + */ + private String receiptNumber; + + /** + * 发票号 + */ + private String invoiceNumber; + + /** + * 收款人 + */ + private String receivePerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 作废人 + */ + private String invalidPerson; + + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getRealReceiveMoney() { + return realReceiveMoney; + } + + public void setRealReceiveMoney(Double realReceiveMoney) { + this.realReceiveMoney = realReceiveMoney; + } + + public Double getDiscountMoney() { + return discountMoney; + } + + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + public String getReceiveMethod() { + return receiveMethod; + } + + public void setReceiveMethod(String receiveMethod) { + this.receiveMethod = receiveMethod; + } + + public String getIsCustomer() { + return isCustomer; + } + + public void setIsCustomer(String isCustomer) { + this.isCustomer = isCustomer; + } + + public Double getReceiveMoney() { + return receiveMoney; + } + + public void setReceiveMoney(Double receiveMoney) { + this.receiveMoney = receiveMoney; + } + + public Long getMoneyId() { + return moneyId; + } + + public void setMoneyId(Long moneyId) { + this.moneyId = moneyId; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Double getCurrentDelayMoney() { + return currentDelayMoney; + } + + public void setCurrentDelayMoney(Double currentDelayMoney) { + this.currentDelayMoney = currentDelayMoney; + } + + public Double getLastDelayMoney() { + return lastDelayMoney; + } + + public void setLastDelayMoney(Double lastDelayMoney) { + this.lastDelayMoney = lastDelayMoney; + } + + public String getInvalidType() { + return invalidType; + } + + public void setInvalidType(String invalidType) { + this.invalidType = invalidType; + } + + public String getReceiptNumber() { + return receiptNumber; + } + + public void setReceiptNumber(String receiptNumber) { + this.receiptNumber = receiptNumber; + } + + public String getInvoiceNumber() { + return invoiceNumber; + } + + public void setInvoiceNumber(String invoiceNumber) { + this.invoiceNumber = invoiceNumber; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getInvalidPerson() { + return invalidPerson; + } + + public void setInvalidPerson(String invalidPerson) { + this.invalidPerson = invalidPerson; + } + + @Override + public String toString() { + return "FyInvalidMain{" + + "invalidId=" + invalidId + + ", receiveId=" + receiveId + + ", cellId=" + cellId + + ", receiveDate=" + receiveDate + + ", customerName=" + customerName + + ", money=" + money + + ", realReceiveMoney=" + realReceiveMoney + + ", discountMoney=" + discountMoney + + ", receiveMethod=" + receiveMethod + + ", isCustomer=" + isCustomer + + ", receiveMoney=" + receiveMoney + + ", moneyId=" + moneyId + + ", estateId=" + estateId + + ", currentDelayMoney=" + currentDelayMoney + + ", lastDelayMoney=" + lastDelayMoney + + ", invalidType=" + invalidType + + ", receiptNumber=" + receiptNumber + + ", invoiceNumber=" + invoiceNumber + + ", receivePerson=" + receivePerson + + ", remark=" + remark + + ", company=" + company + + ", invalidReason=" + invalidReason + + ", invalidDate=" + invalidDate + + ", invalidPerson=" + invalidPerson + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" new file mode 100644 index 00000000..25b3d52f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 作废单子单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyInvalidSub implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 作废明细单号 + */ + @TableId(value = "invalid_detail_id", type = IdType.AUTO) + private String invalidDetailId; + + /** + * 所属作废单号 + */ + private String invalidId; + + /** + * 费项名称 + */ + private String moneySettingName; + + /** + * 计费单价 + */ + private Double chargeUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 实际用量 + */ + private Double realUsed; + + /** + * 费用金额 + */ + private Double money; + + /** + * 滞纳金 + */ + private Double delayMoney; + + /** + * 本次应付 + */ + private Double currentShouldPay; + + /** + * 超期天数 + */ + private Integer overDay; + + /** + * 费用起期 + */ + private LocalDateTime moneyStartDate; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 缴费限期 + */ + private LocalDateTime payLimitDay; + + /** + * 记录人 + */ + private String inputPerson; + + /** + * 所属台账id + */ + private String standingBookId; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 减免金额 + */ + private Double derateMoney; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 滞纳金减免金额 + */ + private Double delayDerateMoney; + + /** + * 楼层系数 + */ + private Double mopFloor; + + /** + * 费用倍数 + */ + private Integer moneyMult; + + + public String getInvalidDetailId() { + return invalidDetailId; + } + + public void setInvalidDetailId(String invalidDetailId) { + this.invalidDetailId = invalidDetailId; + } + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getMoneySettingName() { + return moneySettingName; + } + + public void setMoneySettingName(String moneySettingName) { + this.moneySettingName = moneySettingName; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getRealUsed() { + return realUsed; + } + + public void setRealUsed(Double realUsed) { + this.realUsed = realUsed; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getDelayMoney() { + return delayMoney; + } + + public void setDelayMoney(Double delayMoney) { + this.delayMoney = delayMoney; + } + + public Double getCurrentShouldPay() { + return currentShouldPay; + } + + public void setCurrentShouldPay(Double currentShouldPay) { + this.currentShouldPay = currentShouldPay; + } + + public Integer getOverDay() { + return overDay; + } + + public void setOverDay(Integer overDay) { + this.overDay = overDay; + } + + public LocalDateTime getMoneyStartDate() { + return moneyStartDate; + } + + public void setMoneyStartDate(LocalDateTime moneyStartDate) { + this.moneyStartDate = moneyStartDate; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public LocalDateTime getPayLimitDay() { + return payLimitDay; + } + + public void setPayLimitDay(LocalDateTime payLimitDay) { + this.payLimitDay = payLimitDay; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public String getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(String standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getDerateMoney() { + return derateMoney; + } + + public void setDerateMoney(Double derateMoney) { + this.derateMoney = derateMoney; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public Double getDelayDerateMoney() { + return delayDerateMoney; + } + + public void setDelayDerateMoney(Double delayDerateMoney) { + this.delayDerateMoney = delayDerateMoney; + } + + public Double getMopFloor() { + return mopFloor; + } + + public void setMopFloor(Double mopFloor) { + this.mopFloor = mopFloor; + } + + public Integer getMoneyMult() { + return moneyMult; + } + + public void setMoneyMult(Integer moneyMult) { + this.moneyMult = moneyMult; + } + + @Override + public String toString() { + return "FyInvalidSub{" + + "invalidDetailId=" + invalidDetailId + + ", invalidId=" + invalidId + + ", moneySettingName=" + moneySettingName + + ", chargeUnit=" + chargeUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", realUsed=" + realUsed + + ", money=" + money + + ", delayMoney=" + delayMoney + + ", currentShouldPay=" + currentShouldPay + + ", overDay=" + overDay + + ", moneyStartDate=" + moneyStartDate + + ", moneyStopDate=" + moneyStopDate + + ", payLimitDay=" + payLimitDay + + ", inputPerson=" + inputPerson + + ", standingBookId=" + standingBookId + + ", receiveCycle=" + receiveCycle + + ", derateMoney=" + derateMoney + + ", moneyId=" + moneyId + + ", delayDerateMoney=" + delayDerateMoney + + ", mopFloor=" + mopFloor + + ", moneyMult=" + moneyMult + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" new file mode 100644 index 00000000..3185d6c7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" @@ -0,0 +1,502 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 费项设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneySetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编号 + */ + private String moneySettingCode; + + /** + * 费项名称 + */ + private String moneySettingName; + + /** + * 收费方式 + */ + private String receiveType; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 费用类型 + */ + private String moneyType; + + /** + * 是否允许修改单价 + */ + private String isUpdatePrice; + + /** + * 是否便捷费项 + */ + private String isConvenientMoney; + + /** + * 最小使用量 + */ + private Double minUsedNumber; + + /** + * 是否阶梯收费 + */ + private String isStepReceive; + + /** + * 阶梯条件1 + */ + private Double stepCondition1; + + /** + * 阶梯单价1 + */ + private Double stepPrice1; + + /** + * 阶梯条件2 + */ + private Double stepCondition21; + + /** + * 阶梯条件2 + */ + private Double stepCondition22; + + /** + * 阶梯单价2 + */ + private Double stepPrice2; + + /** + * 阶梯条件3 + */ + private Double stepCondition31; + + /** + * 阶梯条件3 + */ + private Double stepCondition32; + + /** + * 阶梯单价3 + */ + private Double stepPrice3; + + /** + * 阶梯条件4 + */ + private Double stepCondition41; + + /** + * 阶梯条件4 + */ + private Double stepCondition42; + + /** + * 阶梯单价4 + */ + private Double stepPrice4; + + /** + * 阶梯条件5 + */ + private Double stepCondition5; + + /** + * 阶梯单价5 + */ + private Double stepPrice5; + + /** + * 续费短信 + */ + private String renewMessage; + + /** + * 从已收费的费用止期后N天发送短信 + */ + private Integer receiveWarnStopDay; + + /** + * 最多短信重复提醒次数 + */ + private Integer maxWarnNumber; + + /** + * 催缴短信 + */ + private String askMessage; + + /** + * 从未收取的缴费限期前N天发送短信 + */ + private Integer noReceiveWarnStopDay; + + /** + * 关联费项ID + */ + private Integer associateMoneyId; + + /** + * 滞纳金比率 + */ + private Double delayRate; + + /** + * 滞纳金超期天数 + */ + private Integer delayOverDay; + + /** + * 所属公司 + */ + private String company; + + /** + * 常规收费打印时隐藏单价 + */ + private String receivePrintHidden; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMoneySettingCode() { + return moneySettingCode; + } + + public void setMoneySettingCode(String moneySettingCode) { + this.moneySettingCode = moneySettingCode; + } + + public String getMoneySettingName() { + return moneySettingName; + } + + public void setMoneySettingName(String moneySettingName) { + this.moneySettingName = moneySettingName; + } + + public String getReceiveType() { + return receiveType; + } + + public void setReceiveType(String receiveType) { + this.receiveType = receiveType; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getMoneyType() { + return moneyType; + } + + public void setMoneyType(String moneyType) { + this.moneyType = moneyType; + } + + public String getIsUpdatePrice() { + return isUpdatePrice; + } + + public void setIsUpdatePrice(String isUpdatePrice) { + this.isUpdatePrice = isUpdatePrice; + } + + public String getIsConvenientMoney() { + return isConvenientMoney; + } + + public void setIsConvenientMoney(String isConvenientMoney) { + this.isConvenientMoney = isConvenientMoney; + } + + public Double getMinUsedNumber() { + return minUsedNumber; + } + + public void setMinUsedNumber(Double minUsedNumber) { + this.minUsedNumber = minUsedNumber; + } + + public String getIsStepReceive() { + return isStepReceive; + } + + public void setIsStepReceive(String isStepReceive) { + this.isStepReceive = isStepReceive; + } + + public Double getStepCondition1() { + return stepCondition1; + } + + public void setStepCondition1(Double stepCondition1) { + this.stepCondition1 = stepCondition1; + } + + public Double getStepPrice1() { + return stepPrice1; + } + + public void setStepPrice1(Double stepPrice1) { + this.stepPrice1 = stepPrice1; + } + + public Double getStepCondition21() { + return stepCondition21; + } + + public void setStepCondition21(Double stepCondition21) { + this.stepCondition21 = stepCondition21; + } + + public Double getStepCondition22() { + return stepCondition22; + } + + public void setStepCondition22(Double stepCondition22) { + this.stepCondition22 = stepCondition22; + } + + public Double getStepPrice2() { + return stepPrice2; + } + + public void setStepPrice2(Double stepPrice2) { + this.stepPrice2 = stepPrice2; + } + + public Double getStepCondition31() { + return stepCondition31; + } + + public void setStepCondition31(Double stepCondition31) { + this.stepCondition31 = stepCondition31; + } + + public Double getStepCondition32() { + return stepCondition32; + } + + public void setStepCondition32(Double stepCondition32) { + this.stepCondition32 = stepCondition32; + } + + public Double getStepPrice3() { + return stepPrice3; + } + + public void setStepPrice3(Double stepPrice3) { + this.stepPrice3 = stepPrice3; + } + + public Double getStepCondition41() { + return stepCondition41; + } + + public void setStepCondition41(Double stepCondition41) { + this.stepCondition41 = stepCondition41; + } + + public Double getStepCondition42() { + return stepCondition42; + } + + public void setStepCondition42(Double stepCondition42) { + this.stepCondition42 = stepCondition42; + } + + public Double getStepPrice4() { + return stepPrice4; + } + + public void setStepPrice4(Double stepPrice4) { + this.stepPrice4 = stepPrice4; + } + + public Double getStepCondition5() { + return stepCondition5; + } + + public void setStepCondition5(Double stepCondition5) { + this.stepCondition5 = stepCondition5; + } + + public Double getStepPrice5() { + return stepPrice5; + } + + public void setStepPrice5(Double stepPrice5) { + this.stepPrice5 = stepPrice5; + } + + public String getRenewMessage() { + return renewMessage; + } + + public void setRenewMessage(String renewMessage) { + this.renewMessage = renewMessage; + } + + public Integer getReceiveWarnStopDay() { + return receiveWarnStopDay; + } + + public void setReceiveWarnStopDay(Integer receiveWarnStopDay) { + this.receiveWarnStopDay = receiveWarnStopDay; + } + + public Integer getMaxWarnNumber() { + return maxWarnNumber; + } + + public void setMaxWarnNumber(Integer maxWarnNumber) { + this.maxWarnNumber = maxWarnNumber; + } + + public String getAskMessage() { + return askMessage; + } + + public void setAskMessage(String askMessage) { + this.askMessage = askMessage; + } + + public Integer getNoReceiveWarnStopDay() { + return noReceiveWarnStopDay; + } + + public void setNoReceiveWarnStopDay(Integer noReceiveWarnStopDay) { + this.noReceiveWarnStopDay = noReceiveWarnStopDay; + } + + public Integer getAssociateMoneyId() { + return associateMoneyId; + } + + public void setAssociateMoneyId(Integer associateMoneyId) { + this.associateMoneyId = associateMoneyId; + } + + public Double getDelayRate() { + return delayRate; + } + + public void setDelayRate(Double delayRate) { + this.delayRate = delayRate; + } + + public Integer getDelayOverDay() { + return delayOverDay; + } + + public void setDelayOverDay(Integer delayOverDay) { + this.delayOverDay = delayOverDay; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getReceivePrintHidden() { + return receivePrintHidden; + } + + public void setReceivePrintHidden(String receivePrintHidden) { + this.receivePrintHidden = receivePrintHidden; + } + + @Override + public String toString() { + return "FyMoneySetting{" + + "id=" + id + + ", moneySettingCode=" + moneySettingCode + + ", moneySettingName=" + moneySettingName + + ", receiveType=" + receiveType + + ", priceUnit=" + priceUnit + + ", receiveCycle=" + receiveCycle + + ", moneyType=" + moneyType + + ", isUpdatePrice=" + isUpdatePrice + + ", isConvenientMoney=" + isConvenientMoney + + ", minUsedNumber=" + minUsedNumber + + ", isStepReceive=" + isStepReceive + + ", stepCondition1=" + stepCondition1 + + ", stepPrice1=" + stepPrice1 + + ", stepCondition21=" + stepCondition21 + + ", stepCondition22=" + stepCondition22 + + ", stepPrice2=" + stepPrice2 + + ", stepCondition31=" + stepCondition31 + + ", stepCondition32=" + stepCondition32 + + ", stepPrice3=" + stepPrice3 + + ", stepCondition41=" + stepCondition41 + + ", stepCondition42=" + stepCondition42 + + ", stepPrice4=" + stepPrice4 + + ", stepCondition5=" + stepCondition5 + + ", stepPrice5=" + stepPrice5 + + ", renewMessage=" + renewMessage + + ", receiveWarnStopDay=" + receiveWarnStopDay + + ", maxWarnNumber=" + maxWarnNumber + + ", askMessage=" + askMessage + + ", noReceiveWarnStopDay=" + noReceiveWarnStopDay + + ", associateMoneyId=" + associateMoneyId + + ", delayRate=" + delayRate + + ", delayOverDay=" + delayOverDay + + ", company=" + company + + ", receivePrintHidden=" + receivePrintHidden + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" new file mode 100644 index 00000000..e3145667 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" @@ -0,0 +1,377 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用临时表1 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneyTemporary01 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编码 + */ + private Integer moneyId; + + /** + * 档案名称 + */ + private String recordName; + + /** + * 档案备注 + */ + private String recordRemark; + + /** + * 房间编码 + */ + private Integer cellId; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 表编号 + */ + private String boxId; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 本次用量 + */ + private Double currentUseNumber; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 操作人编码 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 楼层系数 + */ + private Double floorFactor; + + /** + * 费用倍数 + */ + private Integer moneyMult; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getRecordName() { + return recordName; + } + + public void setRecordName(String recordName) { + this.recordName = recordName; + } + + public String getRecordRemark() { + return recordRemark; + } + + public void setRecordRemark(String recordRemark) { + this.recordRemark = recordRemark; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getBoxId() { + return boxId; + } + + public void setBoxId(String boxId) { + this.boxId = boxId; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getCurrentUseNumber() { + return currentUseNumber; + } + + public void setCurrentUseNumber(Double currentUseNumber) { + this.currentUseNumber = currentUseNumber; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + public Integer getMoneyMult() { + return moneyMult; + } + + public void setMoneyMult(Integer moneyMult) { + this.moneyMult = moneyMult; + } + + @Override + public String toString() { + return "FyMoneyTemporary01{" + + "id=" + id + + ", moneyId=" + moneyId + + ", recordName=" + recordName + + ", recordRemark=" + recordRemark + + ", cellId=" + cellId + + ", estateName=" + estateName + + ", buildingName=" + buildingName + + ", unitName=" + unitName + + ", cellName=" + cellName + + ", customerName=" + customerName + + ", boxId=" + boxId + + ", priceUnit=" + priceUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", currentUseNumber=" + currentUseNumber + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + ", floorFactor=" + floorFactor + + ", moneyMult=" + moneyMult + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" new file mode 100644 index 00000000..248e91c1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" @@ -0,0 +1,321 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用临时表2 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneyTemporary02 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编码 + */ + private Integer moneyId; + + /** + * 档案名称 + */ + private String recordName; + + /** + * 档案备注 + */ + private String recordRemark; + + /** + * 房间编码 + */ + private Integer cellId; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 计费单位 + */ + private Double chargeUnit; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 操作人编码 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 楼层系数 + */ + private Double floorFactor; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getRecordName() { + return recordName; + } + + public void setRecordName(String recordName) { + this.recordName = recordName; + } + + public String getRecordRemark() { + return recordRemark; + } + + public void setRecordRemark(String recordRemark) { + this.recordRemark = recordRemark; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + @Override + public String toString() { + return "FyMoneyTemporary02{" + + "id=" + id + + ", moneyId=" + moneyId + + ", recordName=" + recordName + + ", recordRemark=" + recordRemark + + ", cellId=" + cellId + + ", estateName=" + estateName + + ", buildingName=" + buildingName + + ", unitName=" + unitName + + ", cellName=" + cellName + + ", customerName=" + customerName + + ", chargeUnit=" + chargeUnit + + ", priceUnit=" + priceUnit + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + ", floorFactor=" + floorFactor + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" new file mode 100644 index 00000000..04da5c4d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" @@ -0,0 +1,279 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用临时表3 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneyTemporary03 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编码 + */ + private Integer moneySettingCode; + + /** + * 档案名称 + */ + private String recordName; + + /** + * 档案备注 + */ + private String recordRemark; + + /** + * 公表名称 + */ + private String publicBoxName; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 分摊户数 + */ + private Double shareNumber; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 本次用量 + */ + private Double currentUseNumber; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 操作人编码 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMoneySettingCode() { + return moneySettingCode; + } + + public void setMoneySettingCode(Integer moneySettingCode) { + this.moneySettingCode = moneySettingCode; + } + + public String getRecordName() { + return recordName; + } + + public void setRecordName(String recordName) { + this.recordName = recordName; + } + + public String getRecordRemark() { + return recordRemark; + } + + public void setRecordRemark(String recordRemark) { + this.recordRemark = recordRemark; + } + + public String getPublicBoxName() { + return publicBoxName; + } + + public void setPublicBoxName(String publicBoxName) { + this.publicBoxName = publicBoxName; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getShareNumber() { + return shareNumber; + } + + public void setShareNumber(Double shareNumber) { + this.shareNumber = shareNumber; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getCurrentUseNumber() { + return currentUseNumber; + } + + public void setCurrentUseNumber(Double currentUseNumber) { + this.currentUseNumber = currentUseNumber; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "FyMoneyTemporary03{" + + "id=" + id + + ", moneySettingCode=" + moneySettingCode + + ", recordName=" + recordName + + ", recordRemark=" + recordRemark + + ", publicBoxName=" + publicBoxName + + ", priceUnit=" + priceUnit + + ", shareNumber=" + shareNumber + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", currentUseNumber=" + currentUseNumber + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" new file mode 100644 index 00000000..343ce915 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" @@ -0,0 +1,293 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用临时表4 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyMoneyTemporary04 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项编码 + */ + private Integer moneySettingCode; + + /** + * 房间编号 + */ + private Integer cellId; + + /** + * 房产名称 + */ + private String estateName; + + /** + * 楼宇名称 + */ + private String buildingName; + + /** + * 单元名称 + */ + private String unitName; + + /** + * 房间名称 + */ + private String cellName; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 表编号 + */ + private String boxId; + + /** + * 分摊金额 + */ + private Double shareMoney; + + /** + * 本次分摊量 + */ + private Double currentShareNumber; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 主键标识 + */ + private String primaryIdentify; + + /** + * 操作人编码 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMoneySettingCode() { + return moneySettingCode; + } + + public void setMoneySettingCode(Integer moneySettingCode) { + this.moneySettingCode = moneySettingCode; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getEstateName() { + return estateName; + } + + public void setEstateName(String estateName) { + this.estateName = estateName; + } + + public String getBuildingName() { + return buildingName; + } + + public void setBuildingName(String buildingName) { + this.buildingName = buildingName; + } + + public String getUnitName() { + return unitName; + } + + public void setUnitName(String unitName) { + this.unitName = unitName; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getBoxId() { + return boxId; + } + + public void setBoxId(String boxId) { + this.boxId = boxId; + } + + public Double getShareMoney() { + return shareMoney; + } + + public void setShareMoney(Double shareMoney) { + this.shareMoney = shareMoney; + } + + public Double getCurrentShareNumber() { + return currentShareNumber; + } + + public void setCurrentShareNumber(Double currentShareNumber) { + this.currentShareNumber = currentShareNumber; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getPrimaryIdentify() { + return primaryIdentify; + } + + public void setPrimaryIdentify(String primaryIdentify) { + this.primaryIdentify = primaryIdentify; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "FyMoneyTemporary04{" + + "id=" + id + + ", moneySettingCode=" + moneySettingCode + + ", cellId=" + cellId + + ", estateName=" + estateName + + ", buildingName=" + buildingName + + ", unitName=" + unitName + + ", cellName=" + cellName + + ", customerName=" + customerName + + ", boxId=" + boxId + + ", shareMoney=" + shareMoney + + ", currentShareNumber=" + currentShareNumber + + ", priceUnit=" + priceUnit + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + ", primaryIdentify=" + primaryIdentify + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" new file mode 100644 index 00000000..298cd463 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 预收款管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyPreReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 凭证号 + */ + private String voucherNumber; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 摘要 + */ + private String summary; + + /** + * 金额 + */ + private Double money; + + /** + * 经手人 + */ + private String handlerPerson; + + /** + * 收款日期 + */ + private LocalDateTime receiveDate; + + /** + * 录入人 + */ + private String inputPerson; + + /** + * 所属公司 + */ + private String company; + + /** + * 收款方式 + */ + private String receiveMethod; + + /** + * 数据来源 + */ + private String dataSource; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getVoucherNumber() { + return voucherNumber; + } + + public void setVoucherNumber(String voucherNumber) { + this.voucherNumber = voucherNumber; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getSummary() { + return summary; + } + + public void setSummary(String summary) { + this.summary = summary; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public String getHandlerPerson() { + return handlerPerson; + } + + public void setHandlerPerson(String handlerPerson) { + this.handlerPerson = handlerPerson; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getReceiveMethod() { + return receiveMethod; + } + + public void setReceiveMethod(String receiveMethod) { + this.receiveMethod = receiveMethod; + } + + public String getDataSource() { + return dataSource; + } + + public void setDataSource(String dataSource) { + this.dataSource = dataSource; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "FyPreReceive{" + + "id=" + id + + ", voucherNumber=" + voucherNumber + + ", cellId=" + cellId + + ", summary=" + summary + + ", money=" + money + + ", handlerPerson=" + handlerPerson + + ", receiveDate=" + receiveDate + + ", inputPerson=" + inputPerson + + ", company=" + company + + ", receiveMethod=" + receiveMethod + + ", dataSource=" + dataSource + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" new file mode 100644 index 00000000..04d92ce4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 物业费分布 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyPropertyMoneyDist implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private Integer cellId; + + /** + * 费项编号 + */ + private Integer moneyId; + + /** + * 是否共有费用 + */ + private String isPublicMoney; + + /** + * 当前读数 + */ + private Double currentReadNumber; + + /** + * 上次计费单位 + */ + private Double lastChargeUnit; + + /** + * 楼层系数 + */ + private Double floorFactor; + + /** + * 使用量倍数 + */ + private Integer useNumberMult; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getIsPublicMoney() { + return isPublicMoney; + } + + public void setIsPublicMoney(String isPublicMoney) { + this.isPublicMoney = isPublicMoney; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getLastChargeUnit() { + return lastChargeUnit; + } + + public void setLastChargeUnit(Double lastChargeUnit) { + this.lastChargeUnit = lastChargeUnit; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + public Integer getUseNumberMult() { + return useNumberMult; + } + + public void setUseNumberMult(Integer useNumberMult) { + this.useNumberMult = useNumberMult; + } + + @Override + public String toString() { + return "FyPropertyMoneyDist{" + + "id=" + id + + ", cellId=" + cellId + + ", moneyId=" + moneyId + + ", isPublicMoney=" + isPublicMoney + + ", currentReadNumber=" + currentReadNumber + + ", lastChargeUnit=" + lastChargeUnit + + ", floorFactor=" + floorFactor + + ", useNumberMult=" + useNumberMult + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" new file mode 100644 index 00000000..d684549f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" @@ -0,0 +1,95 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 公表信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyPublicBox implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 公表编号 + */ + private String publicBoxId; + + /** + * 所属费项 + */ + private Integer moneyId; + + /** + * 公表读数 + */ + private Double publicBoxReadNumber; + + /** + * 分摊方法 + */ + private String shareMethod; + + /** + * 公表状态 + */ + private String publicBoxState; + + + public String getPublicBoxId() { + return publicBoxId; + } + + public void setPublicBoxId(String publicBoxId) { + this.publicBoxId = publicBoxId; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public Double getPublicBoxReadNumber() { + return publicBoxReadNumber; + } + + public void setPublicBoxReadNumber(Double publicBoxReadNumber) { + this.publicBoxReadNumber = publicBoxReadNumber; + } + + public String getShareMethod() { + return shareMethod; + } + + public void setShareMethod(String shareMethod) { + this.shareMethod = shareMethod; + } + + public String getPublicBoxState() { + return publicBoxState; + } + + public void setPublicBoxState(String publicBoxState) { + this.publicBoxState = publicBoxState; + } + + @Override + public String toString() { + return "FyPublicBox{" + + "publicBoxId=" + publicBoxId + + ", moneyId=" + moneyId + + ", publicBoxReadNumber=" + publicBoxReadNumber + + ", shareMethod=" + shareMethod + + ", publicBoxState=" + publicBoxState + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" new file mode 100644 index 00000000..ac36b7f5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" @@ -0,0 +1,68 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 公表关联用户 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyPublicBoxUser implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动增长id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 表号 + */ + private String publicBoxId; + + /** + * 房间号 + */ + private Integer cellId; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPublicBoxId() { + return publicBoxId; + } + + public void setPublicBoxId(String publicBoxId) { + this.publicBoxId = publicBoxId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + @Override + public String toString() { + return "FyPublicBoxUser{" + + "id=" + id + + ", publicBoxId=" + publicBoxId + + ", cellId=" + cellId + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" new file mode 100644 index 00000000..1726aaf6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" @@ -0,0 +1,503 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 收款单主单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyReceiptMain implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 收款单号 + */ + @TableId(value = "id", type = IdType.AUTO) + private String id; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 收费日期 + */ + private LocalDateTime receiveDate; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 应付合计 + */ + private Double shouldPayTotal; + + /** + * 本次应收 + */ + private Double currentShouldReceive; + + /** + * 优惠金额 + */ + private Double discountMoney; + + /** + * 收款方式 + */ + private String receiveMethod; + + /** + * 是否业主 + */ + private String isCustomer; + + /** + * 本次实收 + */ + private Double currentRealReceive; + + /** + * 临客费项id + */ + private Long temporaryMoneyId; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 本次欠缴 + */ + private Double currentDelayMoney; + + /** + * 上次欠缴 + */ + private Double lastDelayMoney; + + /** + * 标题 + */ + private String title; + + /** + * 收款类型 + */ + private String receiveType; + + /** + * 收据号 + */ + private String receiptNumber; + + /** + * 发票号 + */ + private String invoiceNumber; + + /** + * 状态 + */ + private String status; + + /** + * 备注 + */ + private String remark; + + /** + * 收款人 + */ + private String receivePerson; + + /** + * 所属公司 + */ + private String company; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 修改原因 + */ + private String updateReason; + + /** + * 单据审核状态 + */ + private String receiptCheckStatus; + + /** + * 单据审核人 + */ + private String receiptCheckPerson; + + /** + * 单据审核时间 + */ + private LocalDateTime receiptCheckTime; + + /** + * 单据审核意见 + */ + private String receiptCheckAdvice; + + /** + * 现金审核状态 + */ + private String moneyCheckStatus; + + /** + * 现金审核人 + */ + private String moneyCheckPerson; + + /** + * 现金审核时间 + */ + private LocalDateTime moneyCheckTime; + + /** + * 现金审核意见 + */ + private String moneyCheckAdvice; + + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Double getShouldPayTotal() { + return shouldPayTotal; + } + + public void setShouldPayTotal(Double shouldPayTotal) { + this.shouldPayTotal = shouldPayTotal; + } + + public Double getCurrentShouldReceive() { + return currentShouldReceive; + } + + public void setCurrentShouldReceive(Double currentShouldReceive) { + this.currentShouldReceive = currentShouldReceive; + } + + public Double getDiscountMoney() { + return discountMoney; + } + + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + public String getReceiveMethod() { + return receiveMethod; + } + + public void setReceiveMethod(String receiveMethod) { + this.receiveMethod = receiveMethod; + } + + public String getIsCustomer() { + return isCustomer; + } + + public void setIsCustomer(String isCustomer) { + this.isCustomer = isCustomer; + } + + public Double getCurrentRealReceive() { + return currentRealReceive; + } + + public void setCurrentRealReceive(Double currentRealReceive) { + this.currentRealReceive = currentRealReceive; + } + + public Long getTemporaryMoneyId() { + return temporaryMoneyId; + } + + public void setTemporaryMoneyId(Long temporaryMoneyId) { + this.temporaryMoneyId = temporaryMoneyId; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Double getCurrentDelayMoney() { + return currentDelayMoney; + } + + public void setCurrentDelayMoney(Double currentDelayMoney) { + this.currentDelayMoney = currentDelayMoney; + } + + public Double getLastDelayMoney() { + return lastDelayMoney; + } + + public void setLastDelayMoney(Double lastDelayMoney) { + this.lastDelayMoney = lastDelayMoney; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getReceiveType() { + return receiveType; + } + + public void setReceiveType(String receiveType) { + this.receiveType = receiveType; + } + + public String getReceiptNumber() { + return receiptNumber; + } + + public void setReceiptNumber(String receiptNumber) { + this.receiptNumber = receiptNumber; + } + + public String getInvoiceNumber() { + return invoiceNumber; + } + + public void setInvoiceNumber(String invoiceNumber) { + this.invoiceNumber = invoiceNumber; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getUpdateReason() { + return updateReason; + } + + public void setUpdateReason(String updateReason) { + this.updateReason = updateReason; + } + + public String getReceiptCheckStatus() { + return receiptCheckStatus; + } + + public void setReceiptCheckStatus(String receiptCheckStatus) { + this.receiptCheckStatus = receiptCheckStatus; + } + + public String getReceiptCheckPerson() { + return receiptCheckPerson; + } + + public void setReceiptCheckPerson(String receiptCheckPerson) { + this.receiptCheckPerson = receiptCheckPerson; + } + + public LocalDateTime getReceiptCheckTime() { + return receiptCheckTime; + } + + public void setReceiptCheckTime(LocalDateTime receiptCheckTime) { + this.receiptCheckTime = receiptCheckTime; + } + + public String getReceiptCheckAdvice() { + return receiptCheckAdvice; + } + + public void setReceiptCheckAdvice(String receiptCheckAdvice) { + this.receiptCheckAdvice = receiptCheckAdvice; + } + + public String getMoneyCheckStatus() { + return moneyCheckStatus; + } + + public void setMoneyCheckStatus(String moneyCheckStatus) { + this.moneyCheckStatus = moneyCheckStatus; + } + + public String getMoneyCheckPerson() { + return moneyCheckPerson; + } + + public void setMoneyCheckPerson(String moneyCheckPerson) { + this.moneyCheckPerson = moneyCheckPerson; + } + + public LocalDateTime getMoneyCheckTime() { + return moneyCheckTime; + } + + public void setMoneyCheckTime(LocalDateTime moneyCheckTime) { + this.moneyCheckTime = moneyCheckTime; + } + + public String getMoneyCheckAdvice() { + return moneyCheckAdvice; + } + + public void setMoneyCheckAdvice(String moneyCheckAdvice) { + this.moneyCheckAdvice = moneyCheckAdvice; + } + + @Override + public String toString() { + return "FyReceiptMain{" + + "id=" + id + + ", cellId=" + cellId + + ", receiveDate=" + receiveDate + + ", customerName=" + customerName + + ", shouldPayTotal=" + shouldPayTotal + + ", currentShouldReceive=" + currentShouldReceive + + ", discountMoney=" + discountMoney + + ", receiveMethod=" + receiveMethod + + ", isCustomer=" + isCustomer + + ", currentRealReceive=" + currentRealReceive + + ", temporaryMoneyId=" + temporaryMoneyId + + ", estateId=" + estateId + + ", currentDelayMoney=" + currentDelayMoney + + ", lastDelayMoney=" + lastDelayMoney + + ", title=" + title + + ", receiveType=" + receiveType + + ", receiptNumber=" + receiptNumber + + ", invoiceNumber=" + invoiceNumber + + ", status=" + status + + ", remark=" + remark + + ", receivePerson=" + receivePerson + + ", company=" + company + + ", operateDate=" + operateDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", updateReason=" + updateReason + + ", receiptCheckStatus=" + receiptCheckStatus + + ", receiptCheckPerson=" + receiptCheckPerson + + ", receiptCheckTime=" + receiptCheckTime + + ", receiptCheckAdvice=" + receiptCheckAdvice + + ", moneyCheckStatus=" + moneyCheckStatus + + ", moneyCheckPerson=" + moneyCheckPerson + + ", moneyCheckTime=" + moneyCheckTime + + ", moneyCheckAdvice=" + moneyCheckAdvice + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" new file mode 100644 index 00000000..352d3143 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" @@ -0,0 +1,377 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 收款单子单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyReceiptSub implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 收款明细单号 + */ + @TableId(value = "receipt_detail_id", type = IdType.AUTO) + private Integer receiptDetailId; + + /** + * 所属收款单号 + */ + private String receiptId; + + /** + * 费项名称 + */ + private String moneySettingName; + + /** + * 计费单价 + */ + private Double chargeUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 实际用量 + */ + private Double realUsed; + + /** + * 费用金额 + */ + private Double money; + + /** + * 滞纳金 + */ + private Double delayMoney; + + /** + * 滞纳金减免金额 + */ + private Double delayDerateMoney; + + /** + * 本次应付 + */ + private Double currentShouldPay; + + /** + * 超期天数 + */ + private Integer overDay; + + /** + * 费用起期 + */ + private LocalDateTime moneyStartDate; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 缴费限期 + */ + private LocalDateTime payLimitDay; + + /** + * 楼层系数 + */ + private Double floorFactor; + + /** + * 记录人 + */ + private String inputPerson; + + /** + * 所属台账id + */ + private String standingBookId; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 费用减免金额 + */ + private Double derateMoney; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 变更原因 + */ + private String updateReason; + + /** + * 变更人id + */ + private String updatePerson; + + /** + * 变更时间 + */ + private LocalDateTime updateDate; + + /** + * 费用倍数 + */ + private Integer moneyMult; + + + public Integer getReceiptDetailId() { + return receiptDetailId; + } + + public void setReceiptDetailId(Integer receiptDetailId) { + this.receiptDetailId = receiptDetailId; + } + + public String getReceiptId() { + return receiptId; + } + + public void setReceiptId(String receiptId) { + this.receiptId = receiptId; + } + + public String getMoneySettingName() { + return moneySettingName; + } + + public void setMoneySettingName(String moneySettingName) { + this.moneySettingName = moneySettingName; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getRealUsed() { + return realUsed; + } + + public void setRealUsed(Double realUsed) { + this.realUsed = realUsed; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getDelayMoney() { + return delayMoney; + } + + public void setDelayMoney(Double delayMoney) { + this.delayMoney = delayMoney; + } + + public Double getDelayDerateMoney() { + return delayDerateMoney; + } + + public void setDelayDerateMoney(Double delayDerateMoney) { + this.delayDerateMoney = delayDerateMoney; + } + + public Double getCurrentShouldPay() { + return currentShouldPay; + } + + public void setCurrentShouldPay(Double currentShouldPay) { + this.currentShouldPay = currentShouldPay; + } + + public Integer getOverDay() { + return overDay; + } + + public void setOverDay(Integer overDay) { + this.overDay = overDay; + } + + public LocalDateTime getMoneyStartDate() { + return moneyStartDate; + } + + public void setMoneyStartDate(LocalDateTime moneyStartDate) { + this.moneyStartDate = moneyStartDate; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public LocalDateTime getPayLimitDay() { + return payLimitDay; + } + + public void setPayLimitDay(LocalDateTime payLimitDay) { + this.payLimitDay = payLimitDay; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public String getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(String standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getDerateMoney() { + return derateMoney; + } + + public void setDerateMoney(Double derateMoney) { + this.derateMoney = derateMoney; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getUpdateReason() { + return updateReason; + } + + public void setUpdateReason(String updateReason) { + this.updateReason = updateReason; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public Integer getMoneyMult() { + return moneyMult; + } + + public void setMoneyMult(Integer moneyMult) { + this.moneyMult = moneyMult; + } + + @Override + public String toString() { + return "FyReceiptSub{" + + "receiptDetailId=" + receiptDetailId + + ", receiptId=" + receiptId + + ", moneySettingName=" + moneySettingName + + ", chargeUnit=" + chargeUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", realUsed=" + realUsed + + ", money=" + money + + ", delayMoney=" + delayMoney + + ", delayDerateMoney=" + delayDerateMoney + + ", currentShouldPay=" + currentShouldPay + + ", overDay=" + overDay + + ", moneyStartDate=" + moneyStartDate + + ", moneyStopDate=" + moneyStopDate + + ", payLimitDay=" + payLimitDay + + ", floorFactor=" + floorFactor + + ", inputPerson=" + inputPerson + + ", standingBookId=" + standingBookId + + ", receiveCycle=" + receiveCycle + + ", derateMoney=" + derateMoney + + ", moneyId=" + moneyId + + ", updateReason=" + updateReason + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", moneyMult=" + moneyMult + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" new file mode 100644 index 00000000..dd320bda --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" @@ -0,0 +1,419 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 退款单主单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyRefundMain implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 退款单号 + */ + @TableId(value = "refund_id", type = IdType.AUTO) + private String refundId; + + /** + * 所属收款单号 + */ + private String receiptId; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 收费日期 + */ + private LocalDateTime receiveCycle; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 费用金额 + */ + private Double money; + + /** + * 实收金额 + */ + private Double realReceiveMoney; + + /** + * 优惠金额 + */ + private Double discountMoney; + + /** + * 收款方式 + */ + private String receiveMethod; + + /** + * 是否业主 + */ + private String isCustomer; + + /** + * 收款金额 + */ + private Double receiveMoney; + + /** + * 费项id + */ + private Long moneyId; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 本次欠缴 + */ + private Double currentDelayMoney; + + /** + * 上次欠缴 + */ + private Double lastDelayMoney; + + /** + * 退款类型 + */ + private String refundType; + + /** + * 收据号 + */ + private String receiptNumber; + + /** + * 发票号 + */ + private String invoiceNumber; + + /** + * 收款人 + */ + private String receivePerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + /** + * 退款原因 + */ + private String refundReason; + + /** + * 退款时间 + */ + private LocalDateTime refundTime; + + /** + * 退款人 + */ + private String refundPerson; + + /** + * 审核状态 + */ + private String checkStatus; + + /** + * 审核人 + */ + private String checkPerson; + + /** + * 审核时间 + */ + private LocalDateTime checkTime; + + /** + * 审核意见 + */ + private String checkAdvice; + + + public String getRefundId() { + return refundId; + } + + public void setRefundId(String refundId) { + this.refundId = refundId; + } + + public String getReceiptId() { + return receiptId; + } + + public void setReceiptId(String receiptId) { + this.receiptId = receiptId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public LocalDateTime getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(LocalDateTime receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getRealReceiveMoney() { + return realReceiveMoney; + } + + public void setRealReceiveMoney(Double realReceiveMoney) { + this.realReceiveMoney = realReceiveMoney; + } + + public Double getDiscountMoney() { + return discountMoney; + } + + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + public String getReceiveMethod() { + return receiveMethod; + } + + public void setReceiveMethod(String receiveMethod) { + this.receiveMethod = receiveMethod; + } + + public String getIsCustomer() { + return isCustomer; + } + + public void setIsCustomer(String isCustomer) { + this.isCustomer = isCustomer; + } + + public Double getReceiveMoney() { + return receiveMoney; + } + + public void setReceiveMoney(Double receiveMoney) { + this.receiveMoney = receiveMoney; + } + + public Long getMoneyId() { + return moneyId; + } + + public void setMoneyId(Long moneyId) { + this.moneyId = moneyId; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Double getCurrentDelayMoney() { + return currentDelayMoney; + } + + public void setCurrentDelayMoney(Double currentDelayMoney) { + this.currentDelayMoney = currentDelayMoney; + } + + public Double getLastDelayMoney() { + return lastDelayMoney; + } + + public void setLastDelayMoney(Double lastDelayMoney) { + this.lastDelayMoney = lastDelayMoney; + } + + public String getRefundType() { + return refundType; + } + + public void setRefundType(String refundType) { + this.refundType = refundType; + } + + public String getReceiptNumber() { + return receiptNumber; + } + + public void setReceiptNumber(String receiptNumber) { + this.receiptNumber = receiptNumber; + } + + public String getInvoiceNumber() { + return invoiceNumber; + } + + public void setInvoiceNumber(String invoiceNumber) { + this.invoiceNumber = invoiceNumber; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getRefundReason() { + return refundReason; + } + + public void setRefundReason(String refundReason) { + this.refundReason = refundReason; + } + + public LocalDateTime getRefundTime() { + return refundTime; + } + + public void setRefundTime(LocalDateTime refundTime) { + this.refundTime = refundTime; + } + + public String getRefundPerson() { + return refundPerson; + } + + public void setRefundPerson(String refundPerson) { + this.refundPerson = refundPerson; + } + + public String getCheckStatus() { + return checkStatus; + } + + public void setCheckStatus(String checkStatus) { + this.checkStatus = checkStatus; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public LocalDateTime getCheckTime() { + return checkTime; + } + + public void setCheckTime(LocalDateTime checkTime) { + this.checkTime = checkTime; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + @Override + public String toString() { + return "FyRefundMain{" + + "refundId=" + refundId + + ", receiptId=" + receiptId + + ", cellId=" + cellId + + ", receiveCycle=" + receiveCycle + + ", customerName=" + customerName + + ", money=" + money + + ", realReceiveMoney=" + realReceiveMoney + + ", discountMoney=" + discountMoney + + ", receiveMethod=" + receiveMethod + + ", isCustomer=" + isCustomer + + ", receiveMoney=" + receiveMoney + + ", moneyId=" + moneyId + + ", estateId=" + estateId + + ", currentDelayMoney=" + currentDelayMoney + + ", lastDelayMoney=" + lastDelayMoney + + ", refundType=" + refundType + + ", receiptNumber=" + receiptNumber + + ", invoiceNumber=" + invoiceNumber + + ", receivePerson=" + receivePerson + + ", remark=" + remark + + ", company=" + company + + ", refundReason=" + refundReason + + ", refundTime=" + refundTime + + ", refundPerson=" + refundPerson + + ", checkStatus=" + checkStatus + + ", checkPerson=" + checkPerson + + ", checkTime=" + checkTime + + ", checkAdvice=" + checkAdvice + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" new file mode 100644 index 00000000..d08a6e4c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 退款单子单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyRefundSub implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 退款单明细单号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属退款单号 + */ + private String refundId; + + /** + * 费项名称 + */ + private String moneySettingName; + + /** + * 计费单价 + */ + private Double chargeUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 实际用量 + */ + private Double realUsed; + + /** + * 费用金额 + */ + private Double money; + + /** + * 滞纳金 + */ + private Double delayMoney; + + /** + * 本次应付 + */ + private Double currentShouldPay; + + /** + * 超期天数 + */ + private Integer overDay; + + /** + * 费用起期 + */ + private LocalDateTime moneyStartDate; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 缴费限期 + */ + private LocalDateTime payLimitDay; + + /** + * 记录人 + */ + private String inputPerson; + + /** + * 所属台账id + */ + private String standingBookId; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 费用减免金额 + */ + private Double moneyDerate; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 滞纳金减免金额 + */ + private Double delayDerateMoney; + + /** + * 费用倍数 + */ + private Integer moneyMult; + + /** + * 楼层系数 + */ + private Double floorFactor; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRefundId() { + return refundId; + } + + public void setRefundId(String refundId) { + this.refundId = refundId; + } + + public String getMoneySettingName() { + return moneySettingName; + } + + public void setMoneySettingName(String moneySettingName) { + this.moneySettingName = moneySettingName; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getRealUsed() { + return realUsed; + } + + public void setRealUsed(Double realUsed) { + this.realUsed = realUsed; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Double getDelayMoney() { + return delayMoney; + } + + public void setDelayMoney(Double delayMoney) { + this.delayMoney = delayMoney; + } + + public Double getCurrentShouldPay() { + return currentShouldPay; + } + + public void setCurrentShouldPay(Double currentShouldPay) { + this.currentShouldPay = currentShouldPay; + } + + public Integer getOverDay() { + return overDay; + } + + public void setOverDay(Integer overDay) { + this.overDay = overDay; + } + + public LocalDateTime getMoneyStartDate() { + return moneyStartDate; + } + + public void setMoneyStartDate(LocalDateTime moneyStartDate) { + this.moneyStartDate = moneyStartDate; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public LocalDateTime getPayLimitDay() { + return payLimitDay; + } + + public void setPayLimitDay(LocalDateTime payLimitDay) { + this.payLimitDay = payLimitDay; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public String getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(String standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getMoneyDerate() { + return moneyDerate; + } + + public void setMoneyDerate(Double moneyDerate) { + this.moneyDerate = moneyDerate; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public Double getDelayDerateMoney() { + return delayDerateMoney; + } + + public void setDelayDerateMoney(Double delayDerateMoney) { + this.delayDerateMoney = delayDerateMoney; + } + + public Integer getMoneyMult() { + return moneyMult; + } + + public void setMoneyMult(Integer moneyMult) { + this.moneyMult = moneyMult; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + @Override + public String toString() { + return "FyRefundSub{" + + "id=" + id + + ", refundId=" + refundId + + ", moneySettingName=" + moneySettingName + + ", chargeUnit=" + chargeUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", realUsed=" + realUsed + + ", money=" + money + + ", delayMoney=" + delayMoney + + ", currentShouldPay=" + currentShouldPay + + ", overDay=" + overDay + + ", moneyStartDate=" + moneyStartDate + + ", moneyStopDate=" + moneyStopDate + + ", payLimitDay=" + payLimitDay + + ", inputPerson=" + inputPerson + + ", standingBookId=" + standingBookId + + ", receiveCycle=" + receiveCycle + + ", moneyDerate=" + moneyDerate + + ", moneyId=" + moneyId + + ", delayDerateMoney=" + delayDerateMoney + + ", moneyMult=" + moneyMult + + ", floorFactor=" + floorFactor + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" new file mode 100644 index 00000000..1f173ca4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 销售合同 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FySaleContract implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 合同编号 + */ + @TableId(value = "sale_contract_id", type = IdType.AUTO) + private String saleContractId; + + /** + * 所属房间编号 + */ + private Integer cellId; + + /** + * 合同金额 + */ + private Double contractMoney; + + /** + * 合同日期 + */ + private LocalDateTime contractDate; + + /** + * 付款方式 + */ + private String payMethod; + + /** + * 身份证号 + */ + private String idNumber; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 固定电话 + */ + private String onlinePhone; + + /** + * 手机号码 + */ + private String phoneNumber; + + /** + * 备注 + */ + private String remark; + + /** + * 合同附件 + */ + private String contractAttach; + + + public String getSaleContractId() { + return saleContractId; + } + + public void setSaleContractId(String saleContractId) { + this.saleContractId = saleContractId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Double getContractMoney() { + return contractMoney; + } + + public void setContractMoney(Double contractMoney) { + this.contractMoney = contractMoney; + } + + public LocalDateTime getContractDate() { + return contractDate; + } + + public void setContractDate(LocalDateTime contractDate) { + this.contractDate = contractDate; + } + + public String getPayMethod() { + return payMethod; + } + + public void setPayMethod(String payMethod) { + this.payMethod = payMethod; + } + + public String getIdNumber() { + return idNumber; + } + + public void setIdNumber(String idNumber) { + this.idNumber = idNumber; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getOnlinePhone() { + return onlinePhone; + } + + public void setOnlinePhone(String onlinePhone) { + this.onlinePhone = onlinePhone; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getContractAttach() { + return contractAttach; + } + + public void setContractAttach(String contractAttach) { + this.contractAttach = contractAttach; + } + + @Override + public String toString() { + return "FySaleContract{" + + "saleContractId=" + saleContractId + + ", cellId=" + cellId + + ", contractMoney=" + contractMoney + + ", contractDate=" + contractDate + + ", payMethod=" + payMethod + + ", idNumber=" + idNumber + + ", customerName=" + customerName + + ", onlinePhone=" + onlinePhone + + ", phoneNumber=" + phoneNumber + + ", remark=" + remark + + ", contractAttach=" + contractAttach + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" new file mode 100644 index 00000000..5121055b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 公摊费用台账概要 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyShareStandingBook implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 公摊费用编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 台账名称 + */ + private String standingBookName; + + /** + * 关联费用编码 + */ + private Integer associateCostCode; + + /** + * 备注 + */ + private String remark; + + /** + * 生成日期 + */ + private LocalDateTime createDate; + + /** + * 生成人 + */ + private String createPerson; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getStandingBookName() { + return standingBookName; + } + + public void setStandingBookName(String standingBookName) { + this.standingBookName = standingBookName; + } + + public Integer getAssociateCostCode() { + return associateCostCode; + } + + public void setAssociateCostCode(Integer associateCostCode) { + this.associateCostCode = associateCostCode; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "FyShareStandingBook{" + + "id=" + id + + ", standingBookName=" + standingBookName + + ", associateCostCode=" + associateCostCode + + ", remark=" + remark + + ", createDate=" + createDate + + ", createPerson=" + createPerson + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" new file mode 100644 index 00000000..196a3672 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" @@ -0,0 +1,223 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 公摊费用台账公表明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyShareStandingBookDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 公表明细id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属台账编号 + */ + private Double standingBookId; + + /** + * 公表名称 + */ + private String publicBoxName; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 分摊户数 + */ + private Double shareNumber; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 本次用量 + */ + private Double currentUseNumber; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Double getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(Double standingBookId) { + this.standingBookId = standingBookId; + } + + public String getPublicBoxName() { + return publicBoxName; + } + + public void setPublicBoxName(String publicBoxName) { + this.publicBoxName = publicBoxName; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getShareNumber() { + return shareNumber; + } + + public void setShareNumber(Double shareNumber) { + this.shareNumber = shareNumber; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getCurrentUseNumber() { + return currentUseNumber; + } + + public void setCurrentUseNumber(Double currentUseNumber) { + this.currentUseNumber = currentUseNumber; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + @Override + public String toString() { + return "FyShareStandingBookDetail{" + + "id=" + id + + ", standingBookId=" + standingBookId + + ", publicBoxName=" + publicBoxName + + ", priceUnit=" + priceUnit + + ", shareNumber=" + shareNumber + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", currentUseNumber=" + currentUseNumber + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveCycle=" + receiveCycle + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" new file mode 100644 index 00000000..29b44da3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" @@ -0,0 +1,307 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 公摊费用台账用户明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyShareUserDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户明细id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属台账编号 + */ + private Double standingBookId; + + /** + * 所属房间编码 + */ + private Integer cellId; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 表编号 + */ + private String boxId; + + /** + * 分摊金额 + */ + private Double shareMoney; + + /** + * 本次分摊量 + */ + private Double currentShareNumber; + + /** + * 本次费用起期 + */ + private LocalDateTime currentPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次缴费限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 收费标识 + */ + private String receiveIdentify; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 费用标识 + */ + private String costIdentify; + + /** + * 收费单号 + */ + private String receiveId; + + /** + * 退款次数 + */ + private Integer refundNumber; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 减免金额 + */ + private Double derateMoney; + + /** + * 应收金额 + */ + private Double shouldPay; + + /** + * 作废次数 + */ + private Integer invalidNumber; + + /** + * 减免滞纳金 + */ + private Double derateDelayMoney; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Double getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(Double standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getBoxId() { + return boxId; + } + + public void setBoxId(String boxId) { + this.boxId = boxId; + } + + public Double getShareMoney() { + return shareMoney; + } + + public void setShareMoney(Double shareMoney) { + this.shareMoney = shareMoney; + } + + public Double getCurrentShareNumber() { + return currentShareNumber; + } + + public void setCurrentShareNumber(Double currentShareNumber) { + this.currentShareNumber = currentShareNumber; + } + + public LocalDateTime getCurrentPayStartDate() { + return currentPayStartDate; + } + + public void setCurrentPayStartDate(LocalDateTime currentPayStartDate) { + this.currentPayStartDate = currentPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public String getReceiveIdentify() { + return receiveIdentify; + } + + public void setReceiveIdentify(String receiveIdentify) { + this.receiveIdentify = receiveIdentify; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public String getCostIdentify() { + return costIdentify; + } + + public void setCostIdentify(String costIdentify) { + this.costIdentify = costIdentify; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public Integer getRefundNumber() { + return refundNumber; + } + + public void setRefundNumber(Integer refundNumber) { + this.refundNumber = refundNumber; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getDerateMoney() { + return derateMoney; + } + + public void setDerateMoney(Double derateMoney) { + this.derateMoney = derateMoney; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public Integer getInvalidNumber() { + return invalidNumber; + } + + public void setInvalidNumber(Integer invalidNumber) { + this.invalidNumber = invalidNumber; + } + + public Double getDerateDelayMoney() { + return derateDelayMoney; + } + + public void setDerateDelayMoney(Double derateDelayMoney) { + this.derateDelayMoney = derateDelayMoney; + } + + @Override + public String toString() { + return "FyShareUserDetail{" + + "id=" + id + + ", standingBookId=" + standingBookId + + ", cellId=" + cellId + + ", customerName=" + customerName + + ", boxId=" + boxId + + ", shareMoney=" + shareMoney + + ", currentShareNumber=" + currentShareNumber + + ", currentPayStartDate=" + currentPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", receiveIdentify=" + receiveIdentify + + ", priceUnit=" + priceUnit + + ", costIdentify=" + costIdentify + + ", receiveId=" + receiveId + + ", refundNumber=" + refundNumber + + ", receiveCycle=" + receiveCycle + + ", derateMoney=" + derateMoney + + ", shouldPay=" + shouldPay + + ", invalidNumber=" + invalidNumber + + ", derateDelayMoney=" + derateDelayMoney + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" new file mode 100644 index 00000000..c23dfc0a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用台账概要 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyStandingBook implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 台账编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 台账名称 + */ + private String standingBookName; + + /** + * 关联费用编码 + */ + private Integer associateCostCode; + + /** + * 备注 + */ + private String remark; + + /** + * 生成日期 + */ + private LocalDateTime creationDate; + + /** + * 生成人 + */ + private String creationPerson; + + /** + * 关联台账账号 + */ + private String associateStandingBookId; + + /** + * 所属公司 + */ + private Integer company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getStandingBookName() { + return standingBookName; + } + + public void setStandingBookName(String standingBookName) { + this.standingBookName = standingBookName; + } + + public Integer getAssociateCostCode() { + return associateCostCode; + } + + public void setAssociateCostCode(Integer associateCostCode) { + this.associateCostCode = associateCostCode; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public LocalDateTime getCreationDate() { + return creationDate; + } + + public void setCreationDate(LocalDateTime creationDate) { + this.creationDate = creationDate; + } + + public String getCreationPerson() { + return creationPerson; + } + + public void setCreationPerson(String creationPerson) { + this.creationPerson = creationPerson; + } + + public String getAssociateStandingBookId() { + return associateStandingBookId; + } + + public void setAssociateStandingBookId(String associateStandingBookId) { + this.associateStandingBookId = associateStandingBookId; + } + + public Integer getCompany() { + return company; + } + + public void setCompany(Integer company) { + this.company = company; + } + + @Override + public String toString() { + return "FyStandingBook{" + + "id=" + id + + ", standingBookName=" + standingBookName + + ", associateCostCode=" + associateCostCode + + ", remark=" + remark + + ", creationDate=" + creationDate + + ", creationPerson=" + creationPerson + + ", associateStandingBookId=" + associateStandingBookId + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" new file mode 100644 index 00000000..e74226d7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" @@ -0,0 +1,391 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 费用台账明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyStandingBookDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 台账明细编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属台账编号 + */ + private Integer standingBookId; + + /** + * 所属房间编码 + */ + private Integer cellId; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 表编号 + */ + private String boxId; + + /** + * 计费单位 + */ + private Double chargeUnit; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 上次读数 + */ + private Double lastReadNumber; + + /** + * 本次读数 + */ + private Double currentReadNumber; + + /** + * 本次用量 + */ + private Double currentUseNumber; + + /** + * 应缴费用 + */ + private Double shouldPay; + + /** + * 上次费用止期 + */ + private LocalDateTime lastPayStopDate; + + /** + * 上次费用起期 + */ + private LocalDateTime lastPayStartDate; + + /** + * 本次费用止期 + */ + private LocalDateTime currentPayStopDate; + + /** + * 本次费用限期 + */ + private LocalDateTime currentPayLimitDate; + + /** + * 费用标识 + */ + private String costIdentify; + + /** + * 收费标识 + */ + private String receiveIdentify; + + /** + * 收费单号 + */ + private String receiveId; + + /** + * 退款次数 + */ + private Integer refundNumber; + + /** + * 收费周期 + */ + private Integer receiveCycle; + + /** + * 减免费用 + */ + private Double derateMoney; + + /** + * 应收费用 + */ + private Double shouldReceive; + + /** + * 作废次数 + */ + private Integer invalidNumber; + + /** + * 楼层系数 + */ + private Double floorFactor; + + /** + * 减免滞纳金 + */ + private Double derateDelayMoney; + + /** + * 费用倍数 + */ + private Integer payMult; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getStandingBookId() { + return standingBookId; + } + + public void setStandingBookId(Integer standingBookId) { + this.standingBookId = standingBookId; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getBoxId() { + return boxId; + } + + public void setBoxId(String boxId) { + this.boxId = boxId; + } + + public Double getChargeUnit() { + return chargeUnit; + } + + public void setChargeUnit(Double chargeUnit) { + this.chargeUnit = chargeUnit; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public Double getLastReadNumber() { + return lastReadNumber; + } + + public void setLastReadNumber(Double lastReadNumber) { + this.lastReadNumber = lastReadNumber; + } + + public Double getCurrentReadNumber() { + return currentReadNumber; + } + + public void setCurrentReadNumber(Double currentReadNumber) { + this.currentReadNumber = currentReadNumber; + } + + public Double getCurrentUseNumber() { + return currentUseNumber; + } + + public void setCurrentUseNumber(Double currentUseNumber) { + this.currentUseNumber = currentUseNumber; + } + + public Double getShouldPay() { + return shouldPay; + } + + public void setShouldPay(Double shouldPay) { + this.shouldPay = shouldPay; + } + + public LocalDateTime getLastPayStopDate() { + return lastPayStopDate; + } + + public void setLastPayStopDate(LocalDateTime lastPayStopDate) { + this.lastPayStopDate = lastPayStopDate; + } + + public LocalDateTime getLastPayStartDate() { + return lastPayStartDate; + } + + public void setLastPayStartDate(LocalDateTime lastPayStartDate) { + this.lastPayStartDate = lastPayStartDate; + } + + public LocalDateTime getCurrentPayStopDate() { + return currentPayStopDate; + } + + public void setCurrentPayStopDate(LocalDateTime currentPayStopDate) { + this.currentPayStopDate = currentPayStopDate; + } + + public LocalDateTime getCurrentPayLimitDate() { + return currentPayLimitDate; + } + + public void setCurrentPayLimitDate(LocalDateTime currentPayLimitDate) { + this.currentPayLimitDate = currentPayLimitDate; + } + + public String getCostIdentify() { + return costIdentify; + } + + public void setCostIdentify(String costIdentify) { + this.costIdentify = costIdentify; + } + + public String getReceiveIdentify() { + return receiveIdentify; + } + + public void setReceiveIdentify(String receiveIdentify) { + this.receiveIdentify = receiveIdentify; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public Integer getRefundNumber() { + return refundNumber; + } + + public void setRefundNumber(Integer refundNumber) { + this.refundNumber = refundNumber; + } + + public Integer getReceiveCycle() { + return receiveCycle; + } + + public void setReceiveCycle(Integer receiveCycle) { + this.receiveCycle = receiveCycle; + } + + public Double getDerateMoney() { + return derateMoney; + } + + public void setDerateMoney(Double derateMoney) { + this.derateMoney = derateMoney; + } + + public Double getShouldReceive() { + return shouldReceive; + } + + public void setShouldReceive(Double shouldReceive) { + this.shouldReceive = shouldReceive; + } + + public Integer getInvalidNumber() { + return invalidNumber; + } + + public void setInvalidNumber(Integer invalidNumber) { + this.invalidNumber = invalidNumber; + } + + public Double getFloorFactor() { + return floorFactor; + } + + public void setFloorFactor(Double floorFactor) { + this.floorFactor = floorFactor; + } + + public Double getDerateDelayMoney() { + return derateDelayMoney; + } + + public void setDerateDelayMoney(Double derateDelayMoney) { + this.derateDelayMoney = derateDelayMoney; + } + + public Integer getPayMult() { + return payMult; + } + + public void setPayMult(Integer payMult) { + this.payMult = payMult; + } + + @Override + public String toString() { + return "FyStandingBookDetail{" + + "id=" + id + + ", standingBookId=" + standingBookId + + ", cellId=" + cellId + + ", customerName=" + customerName + + ", boxId=" + boxId + + ", chargeUnit=" + chargeUnit + + ", priceUnit=" + priceUnit + + ", lastReadNumber=" + lastReadNumber + + ", currentReadNumber=" + currentReadNumber + + ", currentUseNumber=" + currentUseNumber + + ", shouldPay=" + shouldPay + + ", lastPayStopDate=" + lastPayStopDate + + ", lastPayStartDate=" + lastPayStartDate + + ", currentPayStopDate=" + currentPayStopDate + + ", currentPayLimitDate=" + currentPayLimitDate + + ", costIdentify=" + costIdentify + + ", receiveIdentify=" + receiveIdentify + + ", receiveId=" + receiveId + + ", refundNumber=" + refundNumber + + ", receiveCycle=" + receiveCycle + + ", derateMoney=" + derateMoney + + ", shouldReceive=" + shouldReceive + + ", invalidNumber=" + invalidNumber + + ", floorFactor=" + floorFactor + + ", derateDelayMoney=" + derateDelayMoney + + ", payMult=" + payMult + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" new file mode 100644 index 00000000..4451f4b6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 临客费项设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class FyTemporaryMoneySetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 临客费项id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 费项名称 + */ + private String temporaryMoneyName; + + /** + * 上级费项id + */ + private Integer upperMoneyId; + + /** + * 单位价格 + */ + private Double priceUnit; + + /** + * 费项说明 + */ + private String moneyDescription; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTemporaryMoneyName() { + return temporaryMoneyName; + } + + public void setTemporaryMoneyName(String temporaryMoneyName) { + this.temporaryMoneyName = temporaryMoneyName; + } + + public Integer getUpperMoneyId() { + return upperMoneyId; + } + + public void setUpperMoneyId(Integer upperMoneyId) { + this.upperMoneyId = upperMoneyId; + } + + public Double getPriceUnit() { + return priceUnit; + } + + public void setPriceUnit(Double priceUnit) { + this.priceUnit = priceUnit; + } + + public String getMoneyDescription() { + return moneyDescription; + } + + public void setMoneyDescription(String moneyDescription) { + this.moneyDescription = moneyDescription; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "FyTemporaryMoneySetting{" + + "id=" + id + + ", temporaryMoneyName=" + temporaryMoneyName + + ", upperMoneyId=" + upperMoneyId + + ", priceUnit=" + priceUnit + + ", moneyDescription=" + moneyDescription + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" new file mode 100644 index 00000000..e1cc2fff --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" @@ -0,0 +1,169 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 意见箱 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblAdviceBox implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String name; + + /** + * 类型 + */ + private String type; + + /** + * 状态 + */ + private String status; + + /** + * 管理员id + */ + private String adminId; + + /** + * 用户范围id + */ + private String userRangeId; + + /** + * 用户范围姓名 + */ + @TableField("User_range_name") + private String userRangeName; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getAdminId() { + return adminId; + } + + public void setAdminId(String adminId) { + this.adminId = adminId; + } + + public String getUserRangeId() { + return userRangeId; + } + + public void setUserRangeId(String userRangeId) { + this.userRangeId = userRangeId; + } + + public String getUserRangeName() { + return userRangeName; + } + + public void setUserRangeName(String userRangeName) { + this.userRangeName = userRangeName; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblAdviceBox{" + + "id=" + id + + ", name=" + name + + ", type=" + type + + ", status=" + status + + ", adminId=" + adminId + + ", userRangeId=" + userRangeId + + ", userRangeName=" + userRangeName + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" new file mode 100644 index 00000000..fbdd9156 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 题目可选答案信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblAnswerData implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 答案编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属题目编号 + */ + private Integer subjectId; + + /** + * 答案名称 + */ + private String answerName; + + /** + * 答案类型 + */ + private String answerType; + + /** + * 建档人 + */ + private String inputRecordPerson; + + /** + * 建档时间 + */ + private LocalDateTime inputRecordDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getSubjectId() { + return subjectId; + } + + public void setSubjectId(Integer subjectId) { + this.subjectId = subjectId; + } + + public String getAnswerName() { + return answerName; + } + + public void setAnswerName(String answerName) { + this.answerName = answerName; + } + + public String getAnswerType() { + return answerType; + } + + public void setAnswerType(String answerType) { + this.answerType = answerType; + } + + public String getInputRecordPerson() { + return inputRecordPerson; + } + + public void setInputRecordPerson(String inputRecordPerson) { + this.inputRecordPerson = inputRecordPerson; + } + + public LocalDateTime getInputRecordDate() { + return inputRecordDate; + } + + public void setInputRecordDate(LocalDateTime inputRecordDate) { + this.inputRecordDate = inputRecordDate; + } + + @Override + public String toString() { + return "TblAnswerData{" + + "id=" + id + + ", subjectId=" + subjectId + + ", answerName=" + answerName + + ", answerType=" + answerType + + ", inputRecordPerson=" + inputRecordPerson + + ", inputRecordDate=" + inputRecordDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" new file mode 100644 index 00000000..5bf6f9d7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" @@ -0,0 +1,110 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 参数档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblArgRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 参数编码 + */ + @TableId(value = "arg_code", type = IdType.AUTO) + private String argCode; + + /** + * 参数名称 + */ + private String argName; + + /** + * 参数值 + */ + private String argValue; + + /** + * 说明 + */ + private String argDesc; + + /** + * 排序号 + */ + private Integer argOrder; + + /** + * 所属产品 + */ + private String belongProduct; + + + public String getArgCode() { + return argCode; + } + + public void setArgCode(String argCode) { + this.argCode = argCode; + } + + public String getArgName() { + return argName; + } + + public void setArgName(String argName) { + this.argName = argName; + } + + public String getArgValue() { + return argValue; + } + + public void setArgValue(String argValue) { + this.argValue = argValue; + } + + public String getArgDesc() { + return argDesc; + } + + public void setArgDesc(String argDesc) { + this.argDesc = argDesc; + } + + public Integer getArgOrder() { + return argOrder; + } + + public void setArgOrder(Integer argOrder) { + this.argOrder = argOrder; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblArgRecord{" + + "argCode=" + argCode + + ", argName=" + argName + + ", argValue=" + argValue + + ", argDesc=" + argDesc + + ", argOrder=" + argOrder + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" new file mode 100644 index 00000000..eaeb744b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" @@ -0,0 +1,101 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 附件 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblAttupload implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 附件id + */ + @TableId(value = "attID", type = IdType.AUTO) + private Integer attID; + + /** + * 附件名称 + */ + @TableField("attName") + private String attName; + + /** + * 附件新名称 + */ + @TableField("attNewName") + private String attNewName; + + /** + * 唯一key + */ + @TableField("attKey") + private String attKey; + + /** + * 附件分类 + */ + @TableField("attClass") + private String attClass; + + + public Integer getAttID() { + return attID; + } + + public void setAttID(Integer attID) { + this.attID = attID; + } + + public String getAttName() { + return attName; + } + + public void setAttName(String attName) { + this.attName = attName; + } + + public String getAttNewName() { + return attNewName; + } + + public void setAttNewName(String attNewName) { + this.attNewName = attNewName; + } + + public String getAttKey() { + return attKey; + } + + public void setAttKey(String attKey) { + this.attKey = attKey; + } + + public String getAttClass() { + return attClass; + } + + public void setAttClass(String attClass) { + this.attClass = attClass; + } + + @Override + public String toString() { + return "TblAttupload{" + + "attID=" + attID + + ", attName=" + attName + + ", attNewName=" + attNewName + + ", attKey=" + attKey + + ", attClass=" + attClass + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" new file mode 100644 index 00000000..05d8de78 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" @@ -0,0 +1,54 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 颜色管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblColor implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 颜色 + */ + private String color; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getColor() { + return color; + } + + public void setColor(String color) { + this.color = color; + } + + @Override + public String toString() { + return "TblColor{" + + "id=" + id + + ", color=" + color + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" new file mode 100644 index 00000000..b7164ecd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 常用语 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCommonLanguage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 内容 + */ + private String content; + + /** + * 状态 + */ + private String status; + + /** + * 分类 + */ + private String category; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblCommonLanguage{" + + "id=" + id + + ", content=" + content + + ", status=" + status + + ", category=" + category + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" new file mode 100644 index 00000000..e4d1eed9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" @@ -0,0 +1,68 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 常用短信 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCommonMessage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 短信编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 短信内容 + */ + private String messageContent; + + /** + * 类型 + */ + private Long messageType; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMessageContent() { + return messageContent; + } + + public void setMessageContent(String messageContent) { + this.messageContent = messageContent; + } + + public Long getMessageType() { + return messageType; + } + + public void setMessageType(Long messageType) { + this.messageType = messageType; + } + + @Override + public String toString() { + return "TblCommonMessage{" + + "id=" + id + + ", messageContent=" + messageContent + + ", messageType=" + messageType + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" new file mode 100644 index 00000000..7cf5a810 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" @@ -0,0 +1,349 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 企业档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCompany implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 企业编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 企业全称 + */ + private String companyFullName; + + /** + * 企业简称 + */ + private String companySimpleName; + + /** + * 英文名称 + */ + private String companyEnglishName; + + /** + * 企业品牌 + */ + private String companyBrand; + + /** + * 企业类型 + */ + private String companyType; + + /** + * 所属行业 + */ + private String companyTrade; + + /** + * 企业地址 + */ + private String companyAddr; + + /** + * 邮政编码 + */ + private String postCode; + + /** + * 企业电话 + */ + private String companyPhone; + + /** + * 企业传真 + */ + private String companyFax; + + /** + * 企业网站 + */ + private String companyWebsite; + + /** + * 企业邮箱 + */ + private String companyEmail; + + /** + * 国税号 + */ + private String companyNational; + + /** + * 地税号 + */ + private String companyLand; + + /** + * 开户银行 + */ + private String openBank; + + /** + * 银行账号 + */ + private String bankAccount; + + /** + * 法人代表 + */ + private String companyLeader; + + /** + * 注册时间 + */ + private LocalDateTime registerDate; + + /** + * 注册资金 + */ + private Double registerMoney; + + /** + * 员工人数 + */ + private String employeeNumber; + + /** + * 企业简介 + */ + private String companyIntro; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCompanyFullName() { + return companyFullName; + } + + public void setCompanyFullName(String companyFullName) { + this.companyFullName = companyFullName; + } + + public String getCompanySimpleName() { + return companySimpleName; + } + + public void setCompanySimpleName(String companySimpleName) { + this.companySimpleName = companySimpleName; + } + + public String getCompanyEnglishName() { + return companyEnglishName; + } + + public void setCompanyEnglishName(String companyEnglishName) { + this.companyEnglishName = companyEnglishName; + } + + public String getCompanyBrand() { + return companyBrand; + } + + public void setCompanyBrand(String companyBrand) { + this.companyBrand = companyBrand; + } + + public String getCompanyType() { + return companyType; + } + + public void setCompanyType(String companyType) { + this.companyType = companyType; + } + + public String getCompanyTrade() { + return companyTrade; + } + + public void setCompanyTrade(String companyTrade) { + this.companyTrade = companyTrade; + } + + public String getCompanyAddr() { + return companyAddr; + } + + public void setCompanyAddr(String companyAddr) { + this.companyAddr = companyAddr; + } + + public String getPostCode() { + return postCode; + } + + public void setPostCode(String postCode) { + this.postCode = postCode; + } + + public String getCompanyPhone() { + return companyPhone; + } + + public void setCompanyPhone(String companyPhone) { + this.companyPhone = companyPhone; + } + + public String getCompanyFax() { + return companyFax; + } + + public void setCompanyFax(String companyFax) { + this.companyFax = companyFax; + } + + public String getCompanyWebsite() { + return companyWebsite; + } + + public void setCompanyWebsite(String companyWebsite) { + this.companyWebsite = companyWebsite; + } + + public String getCompanyEmail() { + return companyEmail; + } + + public void setCompanyEmail(String companyEmail) { + this.companyEmail = companyEmail; + } + + public String getCompanyNational() { + return companyNational; + } + + public void setCompanyNational(String companyNational) { + this.companyNational = companyNational; + } + + public String getCompanyLand() { + return companyLand; + } + + public void setCompanyLand(String companyLand) { + this.companyLand = companyLand; + } + + public String getOpenBank() { + return openBank; + } + + public void setOpenBank(String openBank) { + this.openBank = openBank; + } + + public String getBankAccount() { + return bankAccount; + } + + public void setBankAccount(String bankAccount) { + this.bankAccount = bankAccount; + } + + public String getCompanyLeader() { + return companyLeader; + } + + public void setCompanyLeader(String companyLeader) { + this.companyLeader = companyLeader; + } + + public LocalDateTime getRegisterDate() { + return registerDate; + } + + public void setRegisterDate(LocalDateTime registerDate) { + this.registerDate = registerDate; + } + + public Double getRegisterMoney() { + return registerMoney; + } + + public void setRegisterMoney(Double registerMoney) { + this.registerMoney = registerMoney; + } + + public String getEmployeeNumber() { + return employeeNumber; + } + + public void setEmployeeNumber(String employeeNumber) { + this.employeeNumber = employeeNumber; + } + + public String getCompanyIntro() { + return companyIntro; + } + + public void setCompanyIntro(String companyIntro) { + this.companyIntro = companyIntro; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "TblCompany{" + + "id=" + id + + ", companyFullName=" + companyFullName + + ", companySimpleName=" + companySimpleName + + ", companyEnglishName=" + companyEnglishName + + ", companyBrand=" + companyBrand + + ", companyType=" + companyType + + ", companyTrade=" + companyTrade + + ", companyAddr=" + companyAddr + + ", postCode=" + postCode + + ", companyPhone=" + companyPhone + + ", companyFax=" + companyFax + + ", companyWebsite=" + companyWebsite + + ", companyEmail=" + companyEmail + + ", companyNational=" + companyNational + + ", companyLand=" + companyLand + + ", openBank=" + openBank + + ", bankAccount=" + bankAccount + + ", companyLeader=" + companyLeader + + ", registerDate=" + registerDate + + ", registerMoney=" + registerMoney + + ", employeeNumber=" + employeeNumber + + ", companyIntro=" + companyIntro + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" new file mode 100644 index 00000000..f8c86ab3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" @@ -0,0 +1,237 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 单位名录 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCompanyRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 公司名称 + */ + private String companyName; + + /** + * 公司地址 + */ + private String companyAdd; + + /** + * 公司类型 + */ + private String companyType; + + /** + * 公司级别 + */ + private String compantGrade; + + /** + * 上级部门 + */ + private String parentCompany; + + /** + * 负责人 + */ + private String leader; + + /** + * 邮政编码 + */ + private String postCode; + + /** + * 公司电话 + */ + private String companyPhone; + + /** + * 传真号码 + */ + private String faxNumber; + + /** + * 电子邮件 + */ + private String email; + + /** + * 简单介绍 + */ + private String simpleDesc; + + /** + * 备注 + */ + private String remark; + + /** + * 录入人 + */ + private String inputPerson; + + /** + * 录入时间 + */ + private LocalDateTime inputTime; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCompanyName() { + return companyName; + } + + public void setCompanyName(String companyName) { + this.companyName = companyName; + } + + public String getCompanyAdd() { + return companyAdd; + } + + public void setCompanyAdd(String companyAdd) { + this.companyAdd = companyAdd; + } + + public String getCompanyType() { + return companyType; + } + + public void setCompanyType(String companyType) { + this.companyType = companyType; + } + + public String getCompantGrade() { + return compantGrade; + } + + public void setCompantGrade(String compantGrade) { + this.compantGrade = compantGrade; + } + + public String getParentCompany() { + return parentCompany; + } + + public void setParentCompany(String parentCompany) { + this.parentCompany = parentCompany; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getPostCode() { + return postCode; + } + + public void setPostCode(String postCode) { + this.postCode = postCode; + } + + public String getCompanyPhone() { + return companyPhone; + } + + public void setCompanyPhone(String companyPhone) { + this.companyPhone = companyPhone; + } + + public String getFaxNumber() { + return faxNumber; + } + + public void setFaxNumber(String faxNumber) { + this.faxNumber = faxNumber; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getSimpleDesc() { + return simpleDesc; + } + + public void setSimpleDesc(String simpleDesc) { + this.simpleDesc = simpleDesc; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public LocalDateTime getInputTime() { + return inputTime; + } + + public void setInputTime(LocalDateTime inputTime) { + this.inputTime = inputTime; + } + + @Override + public String toString() { + return "TblCompanyRecord{" + + "id=" + id + + ", companyName=" + companyName + + ", companyAdd=" + companyAdd + + ", companyType=" + companyType + + ", compantGrade=" + compantGrade + + ", parentCompany=" + parentCompany + + ", leader=" + leader + + ", postCode=" + postCode + + ", companyPhone=" + companyPhone + + ", faxNumber=" + faxNumber + + ", email=" + email + + ", simpleDesc=" + simpleDesc + + ", remark=" + remark + + ", inputPerson=" + inputPerson + + ", inputTime=" + inputTime + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" new file mode 100644 index 00000000..b1fb8c64 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" @@ -0,0 +1,293 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 企业公告 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblComparyNotice implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动增长id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 公告主题 + */ + private String noticeTheme; + + /** + * 公告内容 + */ + private String noticeContent; + + /** + * 开始时间 + */ + private LocalDateTime startDate; + + /** + * 结束时间 + */ + private LocalDateTime stopDate; + + /** + * 接受类型 + */ + private String receiveType; + + /** + * 公告分类 + */ + private Long noticeCategory; + + /** + * 附件名称 + */ + private String attachName; + + /** + * 附件路径 + */ + private String attachPath; + + /** + * 状态 + */ + private String status; + + /** + * 公告类别 + */ + private String noticeType; + + /** + * 公告附件 + */ + private String noticeAttach; + + /** + * 录入人 + */ + private String inputPerson; + + /** + * 录入时间 + */ + private LocalDateTime inputDate; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 审批时间 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 允许查看的用户编码 + */ + private String allowUserCode; + + /** + * 允许查看的用户名称 + */ + private String allowUserName; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getNoticeTheme() { + return noticeTheme; + } + + public void setNoticeTheme(String noticeTheme) { + this.noticeTheme = noticeTheme; + } + + public String getNoticeContent() { + return noticeContent; + } + + public void setNoticeContent(String noticeContent) { + this.noticeContent = noticeContent; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getReceiveType() { + return receiveType; + } + + public void setReceiveType(String receiveType) { + this.receiveType = receiveType; + } + + public Long getNoticeCategory() { + return noticeCategory; + } + + public void setNoticeCategory(Long noticeCategory) { + this.noticeCategory = noticeCategory; + } + + public String getAttachName() { + return attachName; + } + + public void setAttachName(String attachName) { + this.attachName = attachName; + } + + public String getAttachPath() { + return attachPath; + } + + public void setAttachPath(String attachPath) { + this.attachPath = attachPath; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getNoticeType() { + return noticeType; + } + + public void setNoticeType(String noticeType) { + this.noticeType = noticeType; + } + + public String getNoticeAttach() { + return noticeAttach; + } + + public void setNoticeAttach(String noticeAttach) { + this.noticeAttach = noticeAttach; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public LocalDateTime getInputDate() { + return inputDate; + } + + public void setInputDate(LocalDateTime inputDate) { + this.inputDate = inputDate; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getAllowUserCode() { + return allowUserCode; + } + + public void setAllowUserCode(String allowUserCode) { + this.allowUserCode = allowUserCode; + } + + public String getAllowUserName() { + return allowUserName; + } + + public void setAllowUserName(String allowUserName) { + this.allowUserName = allowUserName; + } + + @Override + public String toString() { + return "TblComparyNotice{" + + "id=" + id + + ", noticeTheme=" + noticeTheme + + ", noticeContent=" + noticeContent + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", receiveType=" + receiveType + + ", noticeCategory=" + noticeCategory + + ", attachName=" + attachName + + ", attachPath=" + attachPath + + ", status=" + status + + ", noticeType=" + noticeType + + ", noticeAttach=" + noticeAttach + + ", inputPerson=" + inputPerson + + ", inputDate=" + inputDate + + ", checkPerson=" + checkPerson + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", allowUserCode=" + allowUserCode + + ", allowUserName=" + allowUserName + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" new file mode 100644 index 00000000..de4723c0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 自定义类型 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblCustomType implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 类型编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 类型名称 + */ + private String name; + + /** + * 类型状态 + */ + private String status; + + /** + * 类型分类 + */ + private String category; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + + @Override + public String toString() { + return "TblCustomType{" + + "id=" + id + + ", name=" + name + + ", status=" + status + + ", category=" + category + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" new file mode 100644 index 00000000..91778b33 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" @@ -0,0 +1,112 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 仪表盘 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDashboard implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 数据项 + */ + private String dataItem; + + /** + * 更多地址 + */ + private String morePath; + + /** + * 权限 + */ + private String privileges; + + /** + * 状态 + */ + @TableField("Status") + private String Status; + + /** + * 所属产品 + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDataItem() { + return dataItem; + } + + public void setDataItem(String dataItem) { + this.dataItem = dataItem; + } + + public String getMorePath() { + return morePath; + } + + public void setMorePath(String morePath) { + this.morePath = morePath; + } + + public String getPrivileges() { + return privileges; + } + + public void setPrivileges(String privileges) { + this.privileges = privileges; + } + + public String getStatus() { + return Status; + } + + public void setStatus(String Status) { + this.Status = Status; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblDashboard{" + + "id=" + id + + ", dataItem=" + dataItem + + ", morePath=" + morePath + + ", privileges=" + privileges + + ", Status=" + Status + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" new file mode 100644 index 00000000..0bb821f5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" @@ -0,0 +1,83 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 工作日期 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 日期 + */ + private LocalDateTime dt; + + /** + * 星期 + */ + private Integer weekday; + + /** + * 是否上班 + */ + private Integer isWork; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getDt() { + return dt; + } + + public void setDt(LocalDateTime dt) { + this.dt = dt; + } + + public Integer getWeekday() { + return weekday; + } + + public void setWeekday(Integer weekday) { + this.weekday = weekday; + } + + public Integer getIsWork() { + return isWork; + } + + public void setIsWork(Integer isWork) { + this.isWork = isWork; + } + + @Override + public String toString() { + return "TblDate{" + + "id=" + id + + ", dt=" + dt + + ", weekday=" + weekday + + ", isWork=" + isWork + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" new file mode 100644 index 00000000..d9d0ad54 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableField; +import java.io.Serializable; + +/** + *

+ * 数据库设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDbSetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 连接地址 + */ + @TableField("db_Url") + private String dbUrl; + + /** + * 用户名 + */ + private String dbUsername; + + /** + * 密码 + */ + private String dbPwd; + + /** + * 数据库名 + */ + private String dbLibName; + + /** + * 存放路径 + */ + private String savePath; + + /** + * 存放名称 + */ + private String saveName; + + + public String getDbUrl() { + return dbUrl; + } + + public void setDbUrl(String dbUrl) { + this.dbUrl = dbUrl; + } + + public String getDbUsername() { + return dbUsername; + } + + public void setDbUsername(String dbUsername) { + this.dbUsername = dbUsername; + } + + public String getDbPwd() { + return dbPwd; + } + + public void setDbPwd(String dbPwd) { + this.dbPwd = dbPwd; + } + + public String getDbLibName() { + return dbLibName; + } + + public void setDbLibName(String dbLibName) { + this.dbLibName = dbLibName; + } + + public String getSavePath() { + return savePath; + } + + public void setSavePath(String savePath) { + this.savePath = savePath; + } + + public String getSaveName() { + return saveName; + } + + public void setSaveName(String saveName) { + this.saveName = saveName; + } + + @Override + public String toString() { + return "TblDbSetting{" + + "dbUrl=" + dbUrl + + ", dbUsername=" + dbUsername + + ", dbPwd=" + dbPwd + + ", dbLibName=" + dbLibName + + ", savePath=" + savePath + + ", saveName=" + saveName + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" new file mode 100644 index 00000000..8211db58 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 数据库备份 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDbbackup implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 备份数据库名 + */ + private String dbName; + + /** + * 备份路径 + */ + private String dbUrl; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人姓名 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDbName() { + return dbName; + } + + public void setDbName(String dbName) { + this.dbName = dbName; + } + + public String getDbUrl() { + return dbUrl; + } + + public void setDbUrl(String dbUrl) { + this.dbUrl = dbUrl; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "TblDbbackup{" + + "id=" + id + + ", dbName=" + dbName + + ", dbUrl=" + dbUrl + + ", operateId=" + operateId + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" new file mode 100644 index 00000000..8a718586 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 数据库还原 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDbrecovery implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 还原数据库名 + */ + private String dbName; + + /** + * 还原路径 + */ + private String dbUrl; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人姓名 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDbName() { + return dbName; + } + + public void setDbName(String dbName) { + this.dbName = dbName; + } + + public String getDbUrl() { + return dbUrl; + } + + public void setDbUrl(String dbUrl) { + this.dbUrl = dbUrl; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "TblDbrecovery{" + + "id=" + id + + ", dbName=" + dbName + + ", dbUrl=" + dbUrl + + ", operateId=" + operateId + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" new file mode 100644 index 00000000..66c98ba8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" @@ -0,0 +1,136 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 数据库 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDbsource implements Serializable { + + private static final long serialVersionUID=1L; + + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String sourceName; + + /** + * 中文解释 + */ + private String sourceDesc; + + /** + * 类型 + */ + private String sourceType; + + /** + * 分类 + */ + private String sourceClass; + + /** + * 是否可以清空 + */ + private String idClear; + + /** + * 更新时间 + */ + private LocalDateTime updateDate; + + /** + * 所属产品 + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getSourceName() { + return sourceName; + } + + public void setSourceName(String sourceName) { + this.sourceName = sourceName; + } + + public String getSourceDesc() { + return sourceDesc; + } + + public void setSourceDesc(String sourceDesc) { + this.sourceDesc = sourceDesc; + } + + public String getSourceType() { + return sourceType; + } + + public void setSourceType(String sourceType) { + this.sourceType = sourceType; + } + + public String getSourceClass() { + return sourceClass; + } + + public void setSourceClass(String sourceClass) { + this.sourceClass = sourceClass; + } + + public String getIdClear() { + return idClear; + } + + public void setIdClear(String idClear) { + this.idClear = idClear; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblDbsource{" + + "id=" + id + + ", sourceName=" + sourceName + + ", sourceDesc=" + sourceDesc + + ", sourceType=" + sourceType + + ", sourceClass=" + sourceClass + + ", idClear=" + idClear + + ", updateDate=" + updateDate + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" new file mode 100644 index 00000000..e2c6bc93 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" @@ -0,0 +1,251 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 部门信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDept implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 部门id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 部门编码 + */ + private String deptCode; + + /** + * 部门名称 + */ + private String deptName; + + /** + * 部门负责人 + */ + private String deptLeader; + + /** + * 部门电话 + */ + private String deptPhone; + + /** + * 部门类型 + */ + private Long deptType; + + /** + * 部门传真 + */ + private String deptFax; + + /** + * 部门上级编号 + */ + private Integer deptParent; + + /** + * 部门层级线 + */ + private String deptLine; + + /** + * 部门权限 + */ + private String deptPrivileges; + + /** + * 部门管理权限 + */ + private String deptManagePrivileges; + + /** + * 机构类别 + */ + private String organCategory; + + /** + * 岗位编制数 + */ + private Integer deptPersonNumber; + + /** + * 建档人 + */ + private String inputPerson; + + /** + * 建档时间 + */ + private LocalDateTime inputTime; + + /** + * 部门备注 + */ + private String deptRemark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDeptCode() { + return deptCode; + } + + public void setDeptCode(String deptCode) { + this.deptCode = deptCode; + } + + public String getDeptName() { + return deptName; + } + + public void setDeptName(String deptName) { + this.deptName = deptName; + } + + public String getDeptLeader() { + return deptLeader; + } + + public void setDeptLeader(String deptLeader) { + this.deptLeader = deptLeader; + } + + public String getDeptPhone() { + return deptPhone; + } + + public void setDeptPhone(String deptPhone) { + this.deptPhone = deptPhone; + } + + public Long getDeptType() { + return deptType; + } + + public void setDeptType(Long deptType) { + this.deptType = deptType; + } + + public String getDeptFax() { + return deptFax; + } + + public void setDeptFax(String deptFax) { + this.deptFax = deptFax; + } + + public Integer getDeptParent() { + return deptParent; + } + + public void setDeptParent(Integer deptParent) { + this.deptParent = deptParent; + } + + public String getDeptLine() { + return deptLine; + } + + public void setDeptLine(String deptLine) { + this.deptLine = deptLine; + } + + public String getDeptPrivileges() { + return deptPrivileges; + } + + public void setDeptPrivileges(String deptPrivileges) { + this.deptPrivileges = deptPrivileges; + } + + public String getDeptManagePrivileges() { + return deptManagePrivileges; + } + + public void setDeptManagePrivileges(String deptManagePrivileges) { + this.deptManagePrivileges = deptManagePrivileges; + } + + public String getOrganCategory() { + return organCategory; + } + + public void setOrganCategory(String organCategory) { + this.organCategory = organCategory; + } + + public Integer getDeptPersonNumber() { + return deptPersonNumber; + } + + public void setDeptPersonNumber(Integer deptPersonNumber) { + this.deptPersonNumber = deptPersonNumber; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public LocalDateTime getInputTime() { + return inputTime; + } + + public void setInputTime(LocalDateTime inputTime) { + this.inputTime = inputTime; + } + + public String getDeptRemark() { + return deptRemark; + } + + public void setDeptRemark(String deptRemark) { + this.deptRemark = deptRemark; + } + + @Override + public String toString() { + return "TblDept{" + + "id=" + id + + ", deptCode=" + deptCode + + ", deptName=" + deptName + + ", deptLeader=" + deptLeader + + ", deptPhone=" + deptPhone + + ", deptType=" + deptType + + ", deptFax=" + deptFax + + ", deptParent=" + deptParent + + ", deptLine=" + deptLine + + ", deptPrivileges=" + deptPrivileges + + ", deptManagePrivileges=" + deptManagePrivileges + + ", organCategory=" + organCategory + + ", deptPersonNumber=" + deptPersonNumber + + ", inputPerson=" + inputPerson + + ", inputTime=" + inputTime + + ", deptRemark=" + deptRemark + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" new file mode 100644 index 00000000..0e500733 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" @@ -0,0 +1,54 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 部门key + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDeptkey implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * Key编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * key名称 + */ + private String deptName; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getDeptName() { + return deptName; + } + + public void setDeptName(String deptName) { + this.deptName = deptName; + } + + @Override + public String toString() { + return "TblDeptkey{" + + "id=" + id + + ", deptName=" + deptName + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" new file mode 100644 index 00000000..0ee46f0e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" @@ -0,0 +1,109 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 桌面 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblDesktop implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编码 + */ + private String id; + + /** + * 名称 + */ + private String name; + + /** + * 更多地址 + */ + private String morePath; + + /** + * 权限 + */ + private String privileges; + + /** + * 状态 + */ + private String status; + + /** + * 所属产品 + */ + private String belongProduct; + + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getMorePath() { + return morePath; + } + + public void setMorePath(String morePath) { + this.morePath = morePath; + } + + public String getPrivileges() { + return privileges; + } + + public void setPrivileges(String privileges) { + this.privileges = privileges; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblDesktop{" + + "id=" + id + + ", name=" + name + + ", morePath=" + morePath + + ", privileges=" + privileges + + ", status=" + status + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" new file mode 100644 index 00000000..94b6efe5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" @@ -0,0 +1,265 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 邮件接受 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEmailReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 接受id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属邮件id + */ + private Long emailSendId; + + /** + * 单个接收人id + */ + private String receiveId; + + /** + * 接受人群编码 + */ + private String receivePersonCode; + + /** + * 接受人群名称 + */ + private String receivePersonName; + + /** + * 邮件标题 + */ + private String emailTitle; + + /** + * 邮件内容 + */ + private String emailContent; + + /** + * 重要级别 + */ + private String importantGrade; + + /** + * 状态 + */ + private String status; + + /** + * 删除标志 + */ + private String isDelete; + + /** + * 密送标志 + */ + private String isSecretSend; + + /** + * 邮件附件 + */ + private String emailAttach; + + /** + * 接受类型 + */ + private String receiveType; + + /** + * 发送人id + */ + private String sendPersonId; + + /** + * 发送人姓名 + */ + private String sendPersonName; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + /** + * 接受时间 + */ + private LocalDateTime receiveDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getEmailSendId() { + return emailSendId; + } + + public void setEmailSendId(Long emailSendId) { + this.emailSendId = emailSendId; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public String getReceivePersonCode() { + return receivePersonCode; + } + + public void setReceivePersonCode(String receivePersonCode) { + this.receivePersonCode = receivePersonCode; + } + + public String getReceivePersonName() { + return receivePersonName; + } + + public void setReceivePersonName(String receivePersonName) { + this.receivePersonName = receivePersonName; + } + + public String getEmailTitle() { + return emailTitle; + } + + public void setEmailTitle(String emailTitle) { + this.emailTitle = emailTitle; + } + + public String getEmailContent() { + return emailContent; + } + + public void setEmailContent(String emailContent) { + this.emailContent = emailContent; + } + + public String getImportantGrade() { + return importantGrade; + } + + public void setImportantGrade(String importantGrade) { + this.importantGrade = importantGrade; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getIsDelete() { + return isDelete; + } + + public void setIsDelete(String isDelete) { + this.isDelete = isDelete; + } + + public String getIsSecretSend() { + return isSecretSend; + } + + public void setIsSecretSend(String isSecretSend) { + this.isSecretSend = isSecretSend; + } + + public String getEmailAttach() { + return emailAttach; + } + + public void setEmailAttach(String emailAttach) { + this.emailAttach = emailAttach; + } + + public String getReceiveType() { + return receiveType; + } + + public void setReceiveType(String receiveType) { + this.receiveType = receiveType; + } + + public String getSendPersonId() { + return sendPersonId; + } + + public void setSendPersonId(String sendPersonId) { + this.sendPersonId = sendPersonId; + } + + public String getSendPersonName() { + return sendPersonName; + } + + public void setSendPersonName(String sendPersonName) { + this.sendPersonName = sendPersonName; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + @Override + public String toString() { + return "TblEmailReceive{" + + "id=" + id + + ", emailSendId=" + emailSendId + + ", receiveId=" + receiveId + + ", receivePersonCode=" + receivePersonCode + + ", receivePersonName=" + receivePersonName + + ", emailTitle=" + emailTitle + + ", emailContent=" + emailContent + + ", importantGrade=" + importantGrade + + ", status=" + status + + ", isDelete=" + isDelete + + ", isSecretSend=" + isSecretSend + + ", emailAttach=" + emailAttach + + ", receiveType=" + receiveType + + ", sendPersonId=" + sendPersonId + + ", sendPersonName=" + sendPersonName + + ", sendDate=" + sendDate + + ", receiveDate=" + receiveDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" new file mode 100644 index 00000000..58761c5f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" @@ -0,0 +1,223 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 邮件发送 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEmailSend implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 邮件id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 接受人群编码 + */ + private String receivePersonCode; + + /** + * 接受人群名称 + */ + private String receivePersonName; + + /** + * 邮件标题 + */ + private String emailTitle; + + /** + * 邮件内容 + */ + private String emailContent; + + /** + * 重要级别 + */ + private String importantGrade; + + /** + * 是否草稿 + */ + private String isDraft; + + /** + * 删除标志 + */ + private String isDelete; + + /** + * 密送标志 + */ + private String isSecretSend; + + /** + * 邮件附件 + */ + private String emailAttach; + + /** + * 发送类型 + */ + private String sendType; + + /** + * 发送人id + */ + private String sendPerson; + + /** + * 发送人姓名 + */ + private String sendName; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getReceivePersonCode() { + return receivePersonCode; + } + + public void setReceivePersonCode(String receivePersonCode) { + this.receivePersonCode = receivePersonCode; + } + + public String getReceivePersonName() { + return receivePersonName; + } + + public void setReceivePersonName(String receivePersonName) { + this.receivePersonName = receivePersonName; + } + + public String getEmailTitle() { + return emailTitle; + } + + public void setEmailTitle(String emailTitle) { + this.emailTitle = emailTitle; + } + + public String getEmailContent() { + return emailContent; + } + + public void setEmailContent(String emailContent) { + this.emailContent = emailContent; + } + + public String getImportantGrade() { + return importantGrade; + } + + public void setImportantGrade(String importantGrade) { + this.importantGrade = importantGrade; + } + + public String getIsDraft() { + return isDraft; + } + + public void setIsDraft(String isDraft) { + this.isDraft = isDraft; + } + + public String getIsDelete() { + return isDelete; + } + + public void setIsDelete(String isDelete) { + this.isDelete = isDelete; + } + + public String getIsSecretSend() { + return isSecretSend; + } + + public void setIsSecretSend(String isSecretSend) { + this.isSecretSend = isSecretSend; + } + + public String getEmailAttach() { + return emailAttach; + } + + public void setEmailAttach(String emailAttach) { + this.emailAttach = emailAttach; + } + + public String getSendType() { + return sendType; + } + + public void setSendType(String sendType) { + this.sendType = sendType; + } + + public String getSendPerson() { + return sendPerson; + } + + public void setSendPerson(String sendPerson) { + this.sendPerson = sendPerson; + } + + public String getSendName() { + return sendName; + } + + public void setSendName(String sendName) { + this.sendName = sendName; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + @Override + public String toString() { + return "TblEmailSend{" + + "id=" + id + + ", receivePersonCode=" + receivePersonCode + + ", receivePersonName=" + receivePersonName + + ", emailTitle=" + emailTitle + + ", emailContent=" + emailContent + + ", importantGrade=" + importantGrade + + ", isDraft=" + isDraft + + ", isDelete=" + isDelete + + ", isSecretSend=" + isSecretSend + + ", emailAttach=" + emailAttach + + ", sendType=" + sendType + + ", sendPerson=" + sendPerson + + ", sendName=" + sendName + + ", sendDate=" + sendDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" new file mode 100644 index 00000000..c07df708 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" @@ -0,0 +1,377 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 员工通讯录 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEmployeeContact implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 排序号 + */ + private Integer orderId; + + /** + * 所属类别名称 + */ + private String categoryName; + + /** + * 所属类别id + */ + private String categoryId; + + /** + * 姓名 + */ + private String name; + + /** + * 工号 + */ + private String workNum; + + /** + * 部门 + */ + private String dept; + + /** + * 角色 + */ + private String role; + + /** + * 职位 + */ + private String position; + + /** + * 性别 + */ + private String gender; + + /** + * 生日 + */ + private String birthday; + + /** + * 办公电话 + */ + private String officePhone; + + /** + * 传真 + */ + private String fax; + + /** + * 移动电话 + */ + private String movePhone; + + /** + * 家庭电话 + */ + private String homePhone; + + /** + * 电子邮件 + */ + private String email; + + /** + * QQ号 + */ + private String qq; + + /** + * 微信号 + */ + private String wchat; + + /** + * 内部即时通 + */ + private String innerMsn; + + /** + * 地址 + */ + private String addr; + + /** + * 邮编 + */ + private String postCode; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人id + */ + private String createPersonId; + + /** + * 创建人名称 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getOrderId() { + return orderId; + } + + public void setOrderId(Integer orderId) { + this.orderId = orderId; + } + + public String getCategoryName() { + return categoryName; + } + + public void setCategoryName(String categoryName) { + this.categoryName = categoryName; + } + + public String getCategoryId() { + return categoryId; + } + + public void setCategoryId(String categoryId) { + this.categoryId = categoryId; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getWorkNum() { + return workNum; + } + + public void setWorkNum(String workNum) { + this.workNum = workNum; + } + + public String getDept() { + return dept; + } + + public void setDept(String dept) { + this.dept = dept; + } + + public String getRole() { + return role; + } + + public void setRole(String role) { + this.role = role; + } + + public String getPosition() { + return position; + } + + public void setPosition(String position) { + this.position = position; + } + + public String getGender() { + return gender; + } + + public void setGender(String gender) { + this.gender = gender; + } + + public String getBirthday() { + return birthday; + } + + public void setBirthday(String birthday) { + this.birthday = birthday; + } + + public String getOfficePhone() { + return officePhone; + } + + public void setOfficePhone(String officePhone) { + this.officePhone = officePhone; + } + + public String getFax() { + return fax; + } + + public void setFax(String fax) { + this.fax = fax; + } + + public String getMovePhone() { + return movePhone; + } + + public void setMovePhone(String movePhone) { + this.movePhone = movePhone; + } + + public String getHomePhone() { + return homePhone; + } + + public void setHomePhone(String homePhone) { + this.homePhone = homePhone; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getQq() { + return qq; + } + + public void setQq(String qq) { + this.qq = qq; + } + + public String getWchat() { + return wchat; + } + + public void setWchat(String wchat) { + this.wchat = wchat; + } + + public String getInnerMsn() { + return innerMsn; + } + + public void setInnerMsn(String innerMsn) { + this.innerMsn = innerMsn; + } + + public String getAddr() { + return addr; + } + + public void setAddr(String addr) { + this.addr = addr; + } + + public String getPostCode() { + return postCode; + } + + public void setPostCode(String postCode) { + this.postCode = postCode; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePersonId() { + return createPersonId; + } + + public void setCreatePersonId(String createPersonId) { + this.createPersonId = createPersonId; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblEmployeeContact{" + + "id=" + id + + ", orderId=" + orderId + + ", categoryName=" + categoryName + + ", categoryId=" + categoryId + + ", name=" + name + + ", workNum=" + workNum + + ", dept=" + dept + + ", role=" + role + + ", position=" + position + + ", gender=" + gender + + ", birthday=" + birthday + + ", officePhone=" + officePhone + + ", fax=" + fax + + ", movePhone=" + movePhone + + ", homePhone=" + homePhone + + ", email=" + email + + ", qq=" + qq + + ", wchat=" + wchat + + ", innerMsn=" + innerMsn + + ", addr=" + addr + + ", postCode=" + postCode + + ", remark=" + remark + + ", createPersonId=" + createPersonId + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" new file mode 100644 index 00000000..677f2aba --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 员工通讯录类别 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEmployeeContactCategory implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 类别名称 + */ + private String categoryName; + + /** + * 排序号 + */ + private Long orderId; + + /** + * 备注 + */ + private String remark; + + /** + * 上级类别id + */ + private String parentCategoryId; + + /** + * 标记线 + */ + private String line; + + /** + * 创建人id + */ + private String createPersonId; + + /** + * 创建人名称 + */ + private String createPerson; + + /** + * 权限字符串 + */ + private String privileges; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCategoryName() { + return categoryName; + } + + public void setCategoryName(String categoryName) { + this.categoryName = categoryName; + } + + public Long getOrderId() { + return orderId; + } + + public void setOrderId(Long orderId) { + this.orderId = orderId; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getParentCategoryId() { + return parentCategoryId; + } + + public void setParentCategoryId(String parentCategoryId) { + this.parentCategoryId = parentCategoryId; + } + + public String getLine() { + return line; + } + + public void setLine(String line) { + this.line = line; + } + + public String getCreatePersonId() { + return createPersonId; + } + + public void setCreatePersonId(String createPersonId) { + this.createPersonId = createPersonId; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public String getPrivileges() { + return privileges; + } + + public void setPrivileges(String privileges) { + this.privileges = privileges; + } + + @Override + public String toString() { + return "TblEmployeeContactCategory{" + + "id=" + id + + ", categoryName=" + categoryName + + ", orderId=" + orderId + + ", remark=" + remark + + ", parentCategoryId=" + parentCategoryId + + ", line=" + line + + ", createPersonId=" + createPersonId + + ", createPerson=" + createPerson + + ", privileges=" + privileges + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" new file mode 100644 index 00000000..c875af6b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 环境配置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblEnvirSetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 序号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * logo图片名称 + */ + private String logoName; + + /** + * 产品名称 + */ + private String productName; + + /** + * 版本号 + */ + private String version; + + /** + * 当前版本标识 + */ + private String currentVersion; + + /** + * 类型 + */ + private String type; + + /** + * 是否主系统 + */ + private String isMain; + + /** + * 自定义文本一 + */ + private String customTextOne; + + /** + * 自定义文本二 + */ + private String customTextTwo; + + /** + * 自定义文本三 + */ + private String customTextThree; + + /** + * 自定义文本四 + */ + private String customTextFour; + + /** + * 设置时间 + */ + private LocalDateTime setTime; + + /** + * 产品代码 + */ + private String productId; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getLogoName() { + return logoName; + } + + public void setLogoName(String logoName) { + this.logoName = logoName; + } + + public String getProductName() { + return productName; + } + + public void setProductName(String productName) { + this.productName = productName; + } + + public String getVersion() { + return version; + } + + public void setVersion(String version) { + this.version = version; + } + + public String getCurrentVersion() { + return currentVersion; + } + + public void setCurrentVersion(String currentVersion) { + this.currentVersion = currentVersion; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getIsMain() { + return isMain; + } + + public void setIsMain(String isMain) { + this.isMain = isMain; + } + + public String getCustomTextOne() { + return customTextOne; + } + + public void setCustomTextOne(String customTextOne) { + this.customTextOne = customTextOne; + } + + public String getCustomTextTwo() { + return customTextTwo; + } + + public void setCustomTextTwo(String customTextTwo) { + this.customTextTwo = customTextTwo; + } + + public String getCustomTextThree() { + return customTextThree; + } + + public void setCustomTextThree(String customTextThree) { + this.customTextThree = customTextThree; + } + + public String getCustomTextFour() { + return customTextFour; + } + + public void setCustomTextFour(String customTextFour) { + this.customTextFour = customTextFour; + } + + public LocalDateTime getSetTime() { + return setTime; + } + + public void setSetTime(LocalDateTime setTime) { + this.setTime = setTime; + } + + public String getProductId() { + return productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + @Override + public String toString() { + return "TblEnvirSetting{" + + "id=" + id + + ", logoName=" + logoName + + ", productName=" + productName + + ", version=" + version + + ", currentVersion=" + currentVersion + + ", type=" + type + + ", isMain=" + isMain + + ", customTextOne=" + customTextOne + + ", customTextTwo=" + customTextTwo + + ", customTextThree=" + customTextThree + + ", customTextFour=" + customTextFour + + ", setTime=" + setTime + + ", productId=" + productId + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" new file mode 100644 index 00000000..e305987c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" @@ -0,0 +1,391 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 功能模块 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblFunctionModel implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 模块编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 模块名称 + */ + private String modelName; + + /** + * 模块类型 + */ + private String modelType; + + /** + * 上级模块编码 + */ + private Long modelParent; + + /** + * 状态 + */ + private String modelStatus; + + /** + * 文件路径 + */ + private String modelUrl; + + /** + * 分析参考 + */ + private String modelAnalyseRef; + + /** + * 报表分析 + */ + private Integer modelReportAnalyse; + + /** + * 图标名称 + */ + private String modelIcon; + + /** + * 模块性质 + */ + private String modelProperty; + + /** + * 模块描述 + */ + private String modelDesc; + + /** + * 是否控制操作权限 + */ + private String isControl; + + /** + * 全部 + */ + private String mFull; + + /** + * 新增 + */ + private String mAdd; + + /** + * 修改 + */ + private String mMod; + + /** + * 删除 + */ + private String mDel; + + /** + * 导出 + */ + private String mExp; + + /** + * 审批 + */ + private String mAud; + + /** + * 执行 + */ + private String mExe; + + /** + * 查询 + */ + private String mQue; + + /** + * 个人 + */ + private String dPerson; + + /** + * 部门 + */ + private String dDept; + + /** + * 公司 + */ + private String dCompany; + + /** + * 排序字段 + */ + private Double orderid; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getModelName() { + return modelName; + } + + public void setModelName(String modelName) { + this.modelName = modelName; + } + + public String getModelType() { + return modelType; + } + + public void setModelType(String modelType) { + this.modelType = modelType; + } + + public Long getModelParent() { + return modelParent; + } + + public void setModelParent(Long modelParent) { + this.modelParent = modelParent; + } + + public String getModelStatus() { + return modelStatus; + } + + public void setModelStatus(String modelStatus) { + this.modelStatus = modelStatus; + } + + public String getModelUrl() { + return modelUrl; + } + + public void setModelUrl(String modelUrl) { + this.modelUrl = modelUrl; + } + + public String getModelAnalyseRef() { + return modelAnalyseRef; + } + + public void setModelAnalyseRef(String modelAnalyseRef) { + this.modelAnalyseRef = modelAnalyseRef; + } + + public Integer getModelReportAnalyse() { + return modelReportAnalyse; + } + + public void setModelReportAnalyse(Integer modelReportAnalyse) { + this.modelReportAnalyse = modelReportAnalyse; + } + + public String getModelIcon() { + return modelIcon; + } + + public void setModelIcon(String modelIcon) { + this.modelIcon = modelIcon; + } + + public String getModelProperty() { + return modelProperty; + } + + public void setModelProperty(String modelProperty) { + this.modelProperty = modelProperty; + } + + public String getModelDesc() { + return modelDesc; + } + + public void setModelDesc(String modelDesc) { + this.modelDesc = modelDesc; + } + + public String getIsControl() { + return isControl; + } + + public void setIsControl(String isControl) { + this.isControl = isControl; + } + + public String getmFull() { + return mFull; + } + + public void setmFull(String mFull) { + this.mFull = mFull; + } + + public String getmAdd() { + return mAdd; + } + + public void setmAdd(String mAdd) { + this.mAdd = mAdd; + } + + public String getmMod() { + return mMod; + } + + public void setmMod(String mMod) { + this.mMod = mMod; + } + + public String getmDel() { + return mDel; + } + + public void setmDel(String mDel) { + this.mDel = mDel; + } + + public String getmExp() { + return mExp; + } + + public void setmExp(String mExp) { + this.mExp = mExp; + } + + public String getmAud() { + return mAud; + } + + public void setmAud(String mAud) { + this.mAud = mAud; + } + + public String getmExe() { + return mExe; + } + + public void setmExe(String mExe) { + this.mExe = mExe; + } + + public String getmQue() { + return mQue; + } + + public void setmQue(String mQue) { + this.mQue = mQue; + } + + public String getdPerson() { + return dPerson; + } + + public void setdPerson(String dPerson) { + this.dPerson = dPerson; + } + + public String getdDept() { + return dDept; + } + + public void setdDept(String dDept) { + this.dDept = dDept; + } + + public String getdCompany() { + return dCompany; + } + + public void setdCompany(String dCompany) { + this.dCompany = dCompany; + } + + public Double getOrderid() { + return orderid; + } + + public void setOrderid(Double orderid) { + this.orderid = orderid; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblFunctionModel{" + + "id=" + id + + ", modelName=" + modelName + + ", modelType=" + modelType + + ", modelParent=" + modelParent + + ", modelStatus=" + modelStatus + + ", modelUrl=" + modelUrl + + ", modelAnalyseRef=" + modelAnalyseRef + + ", modelReportAnalyse=" + modelReportAnalyse + + ", modelIcon=" + modelIcon + + ", modelProperty=" + modelProperty + + ", modelDesc=" + modelDesc + + ", isControl=" + isControl + + ", mFull=" + mFull + + ", mAdd=" + mAdd + + ", mMod=" + mMod + + ", mDel=" + mDel + + ", mExp=" + mExp + + ", mAud=" + mAud + + ", mExe=" + mExe + + ", mQue=" + mQue + + ", dPerson=" + dPerson + + ", dDept=" + dDept + + ", dCompany=" + dCompany + + ", orderid=" + orderid + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" new file mode 100644 index 00000000..23224d89 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 群组档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblGroupRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动增长id + */ + private Integer groupRecordId; + + /** + * 群组名称 + */ + private String groupName; + + /** + * 群组类型 + */ + private String groupType; + + /** + * 群组说明 + */ + private String groupDesc; + + /** + * 组内成员id + */ + private String groupMemberId; + + /** + * 组内成员名称 + */ + private String groupMemberName; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getGroupRecordId() { + return groupRecordId; + } + + public void setGroupRecordId(Integer groupRecordId) { + this.groupRecordId = groupRecordId; + } + + public String getGroupName() { + return groupName; + } + + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public String getGroupType() { + return groupType; + } + + public void setGroupType(String groupType) { + this.groupType = groupType; + } + + public String getGroupDesc() { + return groupDesc; + } + + public void setGroupDesc(String groupDesc) { + this.groupDesc = groupDesc; + } + + public String getGroupMemberId() { + return groupMemberId; + } + + public void setGroupMemberId(String groupMemberId) { + this.groupMemberId = groupMemberId; + } + + public String getGroupMemberName() { + return groupMemberName; + } + + public void setGroupMemberName(String groupMemberName) { + this.groupMemberName = groupMemberName; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblGroupRecord{" + + "groupRecordId=" + groupRecordId + + ", groupName=" + groupName + + ", groupType=" + groupType + + ", groupDesc=" + groupDesc + + ", groupMemberId=" + groupMemberId + + ", groupMemberName=" + groupMemberName + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" new file mode 100644 index 00000000..40531a0d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" @@ -0,0 +1,54 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 分组待办事项 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblGroupsTodo implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 分组id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 待办事项id + */ + private String todoId; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTodoId() { + return todoId; + } + + public void setTodoId(String todoId) { + this.todoId = todoId; + } + + @Override + public String toString() { + return "TblGroupsTodo{" + + "id=" + id + + ", todoId=" + todoId + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" new file mode 100644 index 00000000..20512431 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" @@ -0,0 +1,67 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 分组用户 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblGroupsUser implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 分组id + */ + private Integer groupId; + + /** + * 对象id + */ + private String objId; + + /** + * 绑定类型 + */ + private Integer objType; + + + public Integer getGroupId() { + return groupId; + } + + public void setGroupId(Integer groupId) { + this.groupId = groupId; + } + + public String getObjId() { + return objId; + } + + public void setObjId(String objId) { + this.objId = objId; + } + + public Integer getObjType() { + return objType; + } + + public void setObjType(Integer objType) { + this.objType = objType; + } + + @Override + public String toString() { + return "TblGroupsUser{" + + "groupId=" + groupId + + ", objId=" + objId + + ", objType=" + objType + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" new file mode 100644 index 00000000..c2c00d40 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 登录日志 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblLoginLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 登录人员编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 登录日期 + */ + private LocalDateTime loginDate; + + /** + * 登录的ip地址 + */ + private String loginIp; + + /** + * 登录状态 + */ + private String loginStatus; + + /** + * 进入模块名称 + */ + private Long openMk; + + /** + * 登录机器名 + */ + private String loginMechineName; + + /** + * 端口号 + */ + private String loginPort; + + /** + * 登录入口 + */ + private String loginDoor; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getLoginDate() { + return loginDate; + } + + public void setLoginDate(LocalDateTime loginDate) { + this.loginDate = loginDate; + } + + public String getLoginIp() { + return loginIp; + } + + public void setLoginIp(String loginIp) { + this.loginIp = loginIp; + } + + public String getLoginStatus() { + return loginStatus; + } + + public void setLoginStatus(String loginStatus) { + this.loginStatus = loginStatus; + } + + public Long getOpenMk() { + return openMk; + } + + public void setOpenMk(Long openMk) { + this.openMk = openMk; + } + + public String getLoginMechineName() { + return loginMechineName; + } + + public void setLoginMechineName(String loginMechineName) { + this.loginMechineName = loginMechineName; + } + + public String getLoginPort() { + return loginPort; + } + + public void setLoginPort(String loginPort) { + this.loginPort = loginPort; + } + + public String getLoginDoor() { + return loginDoor; + } + + public void setLoginDoor(String loginDoor) { + this.loginDoor = loginDoor; + } + + @Override + public String toString() { + return "TblLoginLog{" + + "id=" + id + + ", loginDate=" + loginDate + + ", loginIp=" + loginIp + + ", loginStatus=" + loginStatus + + ", openMk=" + openMk + + ", loginMechineName=" + loginMechineName + + ", loginPort=" + loginPort + + ", loginDoor=" + loginDoor + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" new file mode 100644 index 00000000..25db7f66 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 主菜单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMainMenu implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 主菜单编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 主菜单名称 + */ + private String mainMenuName; + + /** + * 主菜单文件路径 + */ + private String mainMenuUrl; + + /** + * 主菜单图标 + */ + private String mainMenuIcon; + + /** + * 主菜单状态 + */ + private String mainMenuStatus; + + /** + * 菜单key + */ + private String mainMenuKey; + + /** + * 排序号 + */ + private Double mainMenuOrder; + + /** + * 产品id + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMainMenuName() { + return mainMenuName; + } + + public void setMainMenuName(String mainMenuName) { + this.mainMenuName = mainMenuName; + } + + public String getMainMenuUrl() { + return mainMenuUrl; + } + + public void setMainMenuUrl(String mainMenuUrl) { + this.mainMenuUrl = mainMenuUrl; + } + + public String getMainMenuIcon() { + return mainMenuIcon; + } + + public void setMainMenuIcon(String mainMenuIcon) { + this.mainMenuIcon = mainMenuIcon; + } + + public String getMainMenuStatus() { + return mainMenuStatus; + } + + public void setMainMenuStatus(String mainMenuStatus) { + this.mainMenuStatus = mainMenuStatus; + } + + public String getMainMenuKey() { + return mainMenuKey; + } + + public void setMainMenuKey(String mainMenuKey) { + this.mainMenuKey = mainMenuKey; + } + + public Double getMainMenuOrder() { + return mainMenuOrder; + } + + public void setMainMenuOrder(Double mainMenuOrder) { + this.mainMenuOrder = mainMenuOrder; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblMainMenu{" + + "id=" + id + + ", mainMenuName=" + mainMenuName + + ", mainMenuUrl=" + mainMenuUrl + + ", mainMenuIcon=" + mainMenuIcon + + ", mainMenuStatus=" + mainMenuStatus + + ", mainMenuKey=" + mainMenuKey + + ", mainMenuOrder=" + mainMenuOrder + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" new file mode 100644 index 00000000..fa25b4c3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" @@ -0,0 +1,110 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 短信充值单 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMessageCharge implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 充值单号 + */ + private String chargeNumber; + + /** + * 充值账户 + */ + private String chargeAccount; + + /** + * 充值金额 + */ + private Double chargeMoney; + + /** + * 充值说明 + */ + private String chargeDesc; + + /** + * 充值人 + */ + private String chargePerson; + + /** + * 充值日期 + */ + private LocalDateTime chargeDate; + + + public String getChargeNumber() { + return chargeNumber; + } + + public void setChargeNumber(String chargeNumber) { + this.chargeNumber = chargeNumber; + } + + public String getChargeAccount() { + return chargeAccount; + } + + public void setChargeAccount(String chargeAccount) { + this.chargeAccount = chargeAccount; + } + + public Double getChargeMoney() { + return chargeMoney; + } + + public void setChargeMoney(Double chargeMoney) { + this.chargeMoney = chargeMoney; + } + + public String getChargeDesc() { + return chargeDesc; + } + + public void setChargeDesc(String chargeDesc) { + this.chargeDesc = chargeDesc; + } + + public String getChargePerson() { + return chargePerson; + } + + public void setChargePerson(String chargePerson) { + this.chargePerson = chargePerson; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + @Override + public String toString() { + return "TblMessageCharge{" + + "chargeNumber=" + chargeNumber + + ", chargeAccount=" + chargeAccount + + ", chargeMoney=" + chargeMoney + + ", chargeDesc=" + chargeDesc + + ", chargePerson=" + chargePerson + + ", chargeDate=" + chargeDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" new file mode 100644 index 00000000..1a49e4e4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 短信接受表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMessageReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 记录编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 手机号码 + */ + private String phone; + + /** + * 拓展号码 + */ + private String extendPhone; + + /** + * 短信内容 + */ + private String messageContent; + + /** + * 回复时间 + */ + private LocalDateTime replyDate; + + /** + * 位置序号 + */ + private String positionOrder; + + /** + * 接受时间 + */ + private LocalDateTime receiveDate; + + /** + * 读取标记 + */ + private Integer readTag; + + /** + * 读取时间 + */ + private LocalDateTime readDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPhone() { + return phone; + } + + public void setPhone(String phone) { + this.phone = phone; + } + + public String getExtendPhone() { + return extendPhone; + } + + public void setExtendPhone(String extendPhone) { + this.extendPhone = extendPhone; + } + + public String getMessageContent() { + return messageContent; + } + + public void setMessageContent(String messageContent) { + this.messageContent = messageContent; + } + + public LocalDateTime getReplyDate() { + return replyDate; + } + + public void setReplyDate(LocalDateTime replyDate) { + this.replyDate = replyDate; + } + + public String getPositionOrder() { + return positionOrder; + } + + public void setPositionOrder(String positionOrder) { + this.positionOrder = positionOrder; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public Integer getReadTag() { + return readTag; + } + + public void setReadTag(Integer readTag) { + this.readTag = readTag; + } + + public LocalDateTime getReadDate() { + return readDate; + } + + public void setReadDate(LocalDateTime readDate) { + this.readDate = readDate; + } + + @Override + public String toString() { + return "TblMessageReceive{" + + "id=" + id + + ", phone=" + phone + + ", extendPhone=" + extendPhone + + ", messageContent=" + messageContent + + ", replyDate=" + replyDate + + ", positionOrder=" + positionOrder + + ", receiveDate=" + receiveDate + + ", readTag=" + readTag + + ", readDate=" + readDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" new file mode 100644 index 00000000..151eb2b6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" @@ -0,0 +1,83 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 信息发送 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMessageSend implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 内容 + */ + private String content; + + /** + * 发送人 + */ + private String sendPerson; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getSendPerson() { + return sendPerson; + } + + public void setSendPerson(String sendPerson) { + this.sendPerson = sendPerson; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + @Override + public String toString() { + return "TblMessageSend{" + + "id=" + id + + ", content=" + content + + ", sendPerson=" + sendPerson + + ", sendDate=" + sendDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" new file mode 100644 index 00000000..e388361f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" @@ -0,0 +1,68 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 信息接受 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMsgReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 接收人 + */ + private String receivePerson; + + /** + * 状态 + */ + private String status; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + @Override + public String toString() { + return "TblMsgReceive{" + + "id=" + id + + ", receivePerson=" + receivePerson + + ", status=" + status + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" new file mode 100644 index 00000000..5444a844 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" @@ -0,0 +1,251 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 我的记事本 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMyNote implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 创建人员编码 + */ + private String createPersonId; + + /** + * 标题 + */ + private String title; + + /** + * 类型 + */ + private String type; + + /** + * 地点 + */ + private String place; + + /** + * 内容 + */ + private String content; + + /** + * 是否私人性质 + */ + private Integer isPrivate; + + /** + * 是否重复 + */ + private Integer isRepeat; + + /** + * 重复 + */ + private String repeat; + + /** + * 重复至日结束 + */ + private LocalDateTime repeatStop; + + /** + * 是否提醒 + */ + private Integer isRemain; + + /** + * 提前N天提醒 + */ + private Integer remainDay; + + /** + * 开始时间 + */ + private LocalDateTime startDate; + + /** + * 结束时间 + */ + private LocalDateTime stopDate; + + /** + * 预约人员 + */ + private String orderPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCreatePersonId() { + return createPersonId; + } + + public void setCreatePersonId(String createPersonId) { + this.createPersonId = createPersonId; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getPlace() { + return place; + } + + public void setPlace(String place) { + this.place = place; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public Integer getIsPrivate() { + return isPrivate; + } + + public void setIsPrivate(Integer isPrivate) { + this.isPrivate = isPrivate; + } + + public Integer getIsRepeat() { + return isRepeat; + } + + public void setIsRepeat(Integer isRepeat) { + this.isRepeat = isRepeat; + } + + public String getRepeat() { + return repeat; + } + + public void setRepeat(String repeat) { + this.repeat = repeat; + } + + public LocalDateTime getRepeatStop() { + return repeatStop; + } + + public void setRepeatStop(LocalDateTime repeatStop) { + this.repeatStop = repeatStop; + } + + public Integer getIsRemain() { + return isRemain; + } + + public void setIsRemain(Integer isRemain) { + this.isRemain = isRemain; + } + + public Integer getRemainDay() { + return remainDay; + } + + public void setRemainDay(Integer remainDay) { + this.remainDay = remainDay; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getOrderPerson() { + return orderPerson; + } + + public void setOrderPerson(String orderPerson) { + this.orderPerson = orderPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblMyNote{" + + "id=" + id + + ", createPersonId=" + createPersonId + + ", title=" + title + + ", type=" + type + + ", place=" + place + + ", content=" + content + + ", isPrivate=" + isPrivate + + ", isRepeat=" + isRepeat + + ", repeat=" + repeat + + ", repeatStop=" + repeatStop + + ", isRemain=" + isRemain + + ", remainDay=" + remainDay + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", orderPerson=" + orderPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" new file mode 100644 index 00000000..16849628 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 我的意见 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMyadvice implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 标题 + */ + private String title; + + /** + * 内容 + */ + private String content; + + /** + * 意见箱 + */ + private Integer adviceBox; + + /** + * 状态 + */ + private String status; + + /** + * 附件名称 + */ + private String attachName; + + /** + * 发表人id + */ + private String publisherId; + + /** + * 发表人名称 + */ + private String publisherName; + + /** + * 发表时间 + */ + private LocalDateTime publisherDate; + + /** + * 回复内容 + */ + private String replyContent; + + /** + * 回复人id + */ + private String replyId; + + /** + * 回复人名称 + */ + private String replyName; + + /** + * 回复时间 + */ + private LocalDateTime replyDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public Integer getAdviceBox() { + return adviceBox; + } + + public void setAdviceBox(Integer adviceBox) { + this.adviceBox = adviceBox; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getAttachName() { + return attachName; + } + + public void setAttachName(String attachName) { + this.attachName = attachName; + } + + public String getPublisherId() { + return publisherId; + } + + public void setPublisherId(String publisherId) { + this.publisherId = publisherId; + } + + public String getPublisherName() { + return publisherName; + } + + public void setPublisherName(String publisherName) { + this.publisherName = publisherName; + } + + public LocalDateTime getPublisherDate() { + return publisherDate; + } + + public void setPublisherDate(LocalDateTime publisherDate) { + this.publisherDate = publisherDate; + } + + public String getReplyContent() { + return replyContent; + } + + public void setReplyContent(String replyContent) { + this.replyContent = replyContent; + } + + public String getReplyId() { + return replyId; + } + + public void setReplyId(String replyId) { + this.replyId = replyId; + } + + public String getReplyName() { + return replyName; + } + + public void setReplyName(String replyName) { + this.replyName = replyName; + } + + public LocalDateTime getReplyDate() { + return replyDate; + } + + public void setReplyDate(LocalDateTime replyDate) { + this.replyDate = replyDate; + } + + @Override + public String toString() { + return "TblMyadvice{" + + "id=" + id + + ", title=" + title + + ", content=" + content + + ", adviceBox=" + adviceBox + + ", status=" + status + + ", attachName=" + attachName + + ", publisherId=" + publisherId + + ", publisherName=" + publisherName + + ", publisherDate=" + publisherDate + + ", replyContent=" + replyContent + + ", replyId=" + replyId + + ", replyName=" + replyName + + ", replyDate=" + replyDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" new file mode 100644 index 00000000..b1696b20 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" @@ -0,0 +1,96 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 我的驾驶舱 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMydash implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属驾驶舱id + */ + private Integer dashId; + + /** + * 排序号 + */ + private Long orderId; + + /** + * 用户名 + */ + private String username; + + /** + * 显示条数 + */ + private String showNum; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getDashId() { + return dashId; + } + + public void setDashId(Integer dashId) { + this.dashId = dashId; + } + + public Long getOrderId() { + return orderId; + } + + public void setOrderId(Long orderId) { + this.orderId = orderId; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getShowNum() { + return showNum; + } + + public void setShowNum(String showNum) { + this.showNum = showNum; + } + + @Override + public String toString() { + return "TblMydash{" + + "id=" + id + + ", dashId=" + dashId + + ", orderId=" + orderId + + ", username=" + username + + ", showNum=" + showNum + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" new file mode 100644 index 00000000..dc446f8b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" @@ -0,0 +1,96 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 我的桌面 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMydesk implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属模块 + */ + private String belongModel; + + /** + * 排序号 + */ + private Long orderId; + + /** + * 用户名 + */ + private String username; + + /** + * 显示条数 + */ + private String showNum; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getBelongModel() { + return belongModel; + } + + public void setBelongModel(String belongModel) { + this.belongModel = belongModel; + } + + public Long getOrderId() { + return orderId; + } + + public void setOrderId(Long orderId) { + this.orderId = orderId; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getShowNum() { + return showNum; + } + + public void setShowNum(String showNum) { + this.showNum = showNum; + } + + @Override + public String toString() { + return "TblMydesk{" + + "id=" + id + + ", belongModel=" + belongModel + + ", orderId=" + orderId + + ", username=" + username + + ", showNum=" + showNum + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" new file mode 100644 index 00000000..a260a4eb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" @@ -0,0 +1,237 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 我的日程 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMyplan implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 主题 + */ + private String planTheme; + + /** + * 地点 + */ + private String planAddr; + + /** + * 开始时间 + */ + private LocalDateTime startDate; + + /** + * 结束时间 + */ + private LocalDateTime stopDate; + + /** + * 分类 + */ + private String planType; + + /** + * 状态 + */ + private String planStatus; + + /** + * 优先级 + */ + private String planPrior; + + /** + * 备用字段 + */ + private String fieldBak; + + /** + * 日程描述 + */ + private String planDesc; + + /** + * 附件名称 + */ + private String attachName; + + /** + * 附件路径 + */ + private String attachUrl; + + /** + * 所有者 + */ + private String owner; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 日程附件 + */ + private String planAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPlanTheme() { + return planTheme; + } + + public void setPlanTheme(String planTheme) { + this.planTheme = planTheme; + } + + public String getPlanAddr() { + return planAddr; + } + + public void setPlanAddr(String planAddr) { + this.planAddr = planAddr; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getPlanType() { + return planType; + } + + public void setPlanType(String planType) { + this.planType = planType; + } + + public String getPlanStatus() { + return planStatus; + } + + public void setPlanStatus(String planStatus) { + this.planStatus = planStatus; + } + + public String getPlanPrior() { + return planPrior; + } + + public void setPlanPrior(String planPrior) { + this.planPrior = planPrior; + } + + public String getFieldBak() { + return fieldBak; + } + + public void setFieldBak(String fieldBak) { + this.fieldBak = fieldBak; + } + + public String getPlanDesc() { + return planDesc; + } + + public void setPlanDesc(String planDesc) { + this.planDesc = planDesc; + } + + public String getAttachName() { + return attachName; + } + + public void setAttachName(String attachName) { + this.attachName = attachName; + } + + public String getAttachUrl() { + return attachUrl; + } + + public void setAttachUrl(String attachUrl) { + this.attachUrl = attachUrl; + } + + public String getOwner() { + return owner; + } + + public void setOwner(String owner) { + this.owner = owner; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getPlanAttach() { + return planAttach; + } + + public void setPlanAttach(String planAttach) { + this.planAttach = planAttach; + } + + @Override + public String toString() { + return "TblMyplan{" + + "id=" + id + + ", planTheme=" + planTheme + + ", planAddr=" + planAddr + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", planType=" + planType + + ", planStatus=" + planStatus + + ", planPrior=" + planPrior + + ", fieldBak=" + fieldBak + + ", planDesc=" + planDesc + + ", attachName=" + attachName + + ", attachUrl=" + attachUrl + + ", owner=" + owner + + ", createDate=" + createDate + + ", planAttach=" + planAttach + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" new file mode 100644 index 00000000..458b823f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" @@ -0,0 +1,222 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 个人设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblMyset implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 用户编码 + */ + private String username; + + /** + * 是否需要提醒 + */ + private String idRemain; + + /** + * 提醒间隔时间 + */ + private String remainInterval; + + /** + * 弹出提醒窗口 + */ + private String remainWindowOpen; + + /** + * 消息提醒 + */ + private String messageRemain; + + /** + * 默认主页面 + */ + private String defaultMain; + + /** + * 邮箱全称 + */ + private String emailAll; + + /** + * smtp地址 + */ + private String smtpAddr; + + /** + * 登录用户 + */ + private String loginUser; + + /** + * 登录密码 + */ + private String loginPwd; + + /** + * 邮件端口 + */ + private String mailPort; + + /** + * 发送人名称 + */ + private String sendPerson; + + /** + * 分页行数 + */ + private Integer pageCount; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getIdRemain() { + return idRemain; + } + + public void setIdRemain(String idRemain) { + this.idRemain = idRemain; + } + + public String getRemainInterval() { + return remainInterval; + } + + public void setRemainInterval(String remainInterval) { + this.remainInterval = remainInterval; + } + + public String getRemainWindowOpen() { + return remainWindowOpen; + } + + public void setRemainWindowOpen(String remainWindowOpen) { + this.remainWindowOpen = remainWindowOpen; + } + + public String getMessageRemain() { + return messageRemain; + } + + public void setMessageRemain(String messageRemain) { + this.messageRemain = messageRemain; + } + + public String getDefaultMain() { + return defaultMain; + } + + public void setDefaultMain(String defaultMain) { + this.defaultMain = defaultMain; + } + + public String getEmailAll() { + return emailAll; + } + + public void setEmailAll(String emailAll) { + this.emailAll = emailAll; + } + + public String getSmtpAddr() { + return smtpAddr; + } + + public void setSmtpAddr(String smtpAddr) { + this.smtpAddr = smtpAddr; + } + + public String getLoginUser() { + return loginUser; + } + + public void setLoginUser(String loginUser) { + this.loginUser = loginUser; + } + + public String getLoginPwd() { + return loginPwd; + } + + public void setLoginPwd(String loginPwd) { + this.loginPwd = loginPwd; + } + + public String getMailPort() { + return mailPort; + } + + public void setMailPort(String mailPort) { + this.mailPort = mailPort; + } + + public String getSendPerson() { + return sendPerson; + } + + public void setSendPerson(String sendPerson) { + this.sendPerson = sendPerson; + } + + public Integer getPageCount() { + return pageCount; + } + + public void setPageCount(Integer pageCount) { + this.pageCount = pageCount; + } + + @Override + public String toString() { + return "TblMyset{" + + "id=" + id + + ", username=" + username + + ", idRemain=" + idRemain + + ", remainInterval=" + remainInterval + + ", remainWindowOpen=" + remainWindowOpen + + ", messageRemain=" + messageRemain + + ", defaultMain=" + defaultMain + + ", emailAll=" + emailAll + + ", smtpAddr=" + smtpAddr + + ", loginUser=" + loginUser + + ", loginPwd=" + loginPwd + + ", mailPort=" + mailPort + + ", sendPerson=" + sendPerson + + ", pageCount=" + pageCount + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" new file mode 100644 index 00000000..a95c03cc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 网络硬盘_文件夹 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblNetdiskDir implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 文件夹名称 + */ + private String name; + + /** + * 上级文件夹 + */ + private Integer parentDir; + + /** + * 是否共享 + */ + private String isShare; + + /** + * 创建用户编码 + */ + private String userId; + + /** + * 创建日期 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Integer getParentDir() { + return parentDir; + } + + public void setParentDir(Integer parentDir) { + this.parentDir = parentDir; + } + + public String getIsShare() { + return isShare; + } + + public void setIsShare(String isShare) { + this.isShare = isShare; + } + + public String getUserId() { + return userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblNetdiskDir{" + + "id=" + id + + ", name=" + name + + ", parentDir=" + parentDir + + ", isShare=" + isShare + + ", userId=" + userId + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" new file mode 100644 index 00000000..97932db2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 网络硬盘路径 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblNetdiskUrl implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 文件夹id + */ + private Integer dirId; + + /** + * 文件原名称 + */ + private String fileName; + + /** + * 新名称 + */ + private String newName; + + /** + * 文件类型 + */ + private String fileType; + + /** + * 文档大小 + */ + private Integer fileSize; + + /** + * 上传时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getDirId() { + return dirId; + } + + public void setDirId(Integer dirId) { + this.dirId = dirId; + } + + public String getFileName() { + return fileName; + } + + public void setFileName(String fileName) { + this.fileName = fileName; + } + + public String getNewName() { + return newName; + } + + public void setNewName(String newName) { + this.newName = newName; + } + + public String getFileType() { + return fileType; + } + + public void setFileType(String fileType) { + this.fileType = fileType; + } + + public Integer getFileSize() { + return fileSize; + } + + public void setFileSize(Integer fileSize) { + this.fileSize = fileSize; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblNetdiskUrl{" + + "id=" + id + + ", dirId=" + dirId + + ", fileName=" + fileName + + ", newName=" + newName + + ", fileType=" + fileType + + ", fileSize=" + fileSize + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" new file mode 100644 index 00000000..e96f7a75 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 职位档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblPositionRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 职位名称 + */ + private String positionName; + + /** + * 职位描述 + */ + private String positionDesc; + + /** + * 岗位职责 + */ + private String positionDuty; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPositionName() { + return positionName; + } + + public void setPositionName(String positionName) { + this.positionName = positionName; + } + + public String getPositionDesc() { + return positionDesc; + } + + public void setPositionDesc(String positionDesc) { + this.positionDesc = positionDesc; + } + + public String getPositionDuty() { + return positionDuty; + } + + public void setPositionDuty(String positionDuty) { + this.positionDuty = positionDuty; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblPositionRecord{" + + "id=" + id + + ", positionName=" + positionName + + ", positionDesc=" + positionDesc + + ", positionDuty=" + positionDuty + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" new file mode 100644 index 00000000..820ad3d1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 打印纸张宽度设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblPrintPaper implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String paperName; + + /** + * 值 + */ + private String paperValue; + + /** + * 状态 + */ + private Integer paperStatus; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPaperName() { + return paperName; + } + + public void setPaperName(String paperName) { + this.paperName = paperName; + } + + public String getPaperValue() { + return paperValue; + } + + public void setPaperValue(String paperValue) { + this.paperValue = paperValue; + } + + public Integer getPaperStatus() { + return paperStatus; + } + + public void setPaperStatus(Integer paperStatus) { + this.paperStatus = paperStatus; + } + + @Override + public String toString() { + return "TblPrintPaper{" + + "id=" + id + + ", paperName=" + paperName + + ", paperValue=" + paperValue + + ", paperStatus=" + paperStatus + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" new file mode 100644 index 00000000..c08cfdbc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 打印参数 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblPrintParam implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 打印参数编号 + */ + @TableId(value = "print_id", type = IdType.AUTO) + private String printId; + + /** + * 打印参数名称 + */ + private String printName; + + /** + * 打印参数值 + */ + private String printValue; + + /** + * 打印参数描述 + */ + private String printDesc; + + + public String getPrintId() { + return printId; + } + + public void setPrintId(String printId) { + this.printId = printId; + } + + public String getPrintName() { + return printName; + } + + public void setPrintName(String printName) { + this.printName = printName; + } + + public String getPrintValue() { + return printValue; + } + + public void setPrintValue(String printValue) { + this.printValue = printValue; + } + + public String getPrintDesc() { + return printDesc; + } + + public void setPrintDesc(String printDesc) { + this.printDesc = printDesc; + } + + @Override + public String toString() { + return "TblPrintParam{" + + "printId=" + printId + + ", printName=" + printName + + ", printValue=" + printValue + + ", printDesc=" + printDesc + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" new file mode 100644 index 00000000..8c9c0f65 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 快捷方式 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblQuick implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 快捷方式名称 + */ + private String quickName; + + /** + * 链接参数 + */ + private String urlParam; + + /** + * 程序路径 + */ + private String codePath; + + /** + * 图标名称 + */ + private String iconName; + + /** + * 机器名 + */ + private String mechineName; + + /** + * 公共类型 + */ + private String publicType; + + /** + * 类别 + */ + private String type; + + /** + * 创建人 + */ + private String inputRecordPerson; + + /** + * 创建时间 + */ + private LocalDateTime inputRecordDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getQuickName() { + return quickName; + } + + public void setQuickName(String quickName) { + this.quickName = quickName; + } + + public String getUrlParam() { + return urlParam; + } + + public void setUrlParam(String urlParam) { + this.urlParam = urlParam; + } + + public String getCodePath() { + return codePath; + } + + public void setCodePath(String codePath) { + this.codePath = codePath; + } + + public String getIconName() { + return iconName; + } + + public void setIconName(String iconName) { + this.iconName = iconName; + } + + public String getMechineName() { + return mechineName; + } + + public void setMechineName(String mechineName) { + this.mechineName = mechineName; + } + + public String getPublicType() { + return publicType; + } + + public void setPublicType(String publicType) { + this.publicType = publicType; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getInputRecordPerson() { + return inputRecordPerson; + } + + public void setInputRecordPerson(String inputRecordPerson) { + this.inputRecordPerson = inputRecordPerson; + } + + public LocalDateTime getInputRecordDate() { + return inputRecordDate; + } + + public void setInputRecordDate(LocalDateTime inputRecordDate) { + this.inputRecordDate = inputRecordDate; + } + + @Override + public String toString() { + return "TblQuick{" + + "id=" + id + + ", quickName=" + quickName + + ", urlParam=" + urlParam + + ", codePath=" + codePath + + ", iconName=" + iconName + + ", mechineName=" + mechineName + + ", publicType=" + publicType + + ", type=" + type + + ", inputRecordPerson=" + inputRecordPerson + + ", inputRecordDate=" + inputRecordDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" new file mode 100644 index 00000000..85154b9a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 角色档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblRole implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 角色编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 角色名称 + */ + private String roleName; + + /** + * 角色类型 + */ + private String roleType; + + /** + * 操作权限 + */ + private String rolePrivileges; + + /** + * 角色备注 + */ + private String roleRemark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRoleName() { + return roleName; + } + + public void setRoleName(String roleName) { + this.roleName = roleName; + } + + public String getRoleType() { + return roleType; + } + + public void setRoleType(String roleType) { + this.roleType = roleType; + } + + public String getRolePrivileges() { + return rolePrivileges; + } + + public void setRolePrivileges(String rolePrivileges) { + this.rolePrivileges = rolePrivileges; + } + + public String getRoleRemark() { + return roleRemark; + } + + public void setRoleRemark(String roleRemark) { + this.roleRemark = roleRemark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblRole{" + + "id=" + id + + ", roleName=" + roleName + + ", roleType=" + roleType + + ", rolePrivileges=" + rolePrivileges + + ", roleRemark=" + roleRemark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" new file mode 100644 index 00000000..149454d1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" @@ -0,0 +1,53 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 角色菜单权限 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblRoleMenuPrivi implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 角色id + */ + private Integer roleId; + + /** + * 模块id + */ + private Integer modelId; + + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + public Integer getModelId() { + return modelId; + } + + public void setModelId(Integer modelId) { + this.modelId = modelId; + } + + @Override + public String toString() { + return "TblRoleMenuPrivi{" + + "roleId=" + roleId + + ", modelId=" + modelId + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" new file mode 100644 index 00000000..b3d38343 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" @@ -0,0 +1,321 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 规章制度 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblRule implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动增长id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 标题 + */ + private String title; + + /** + * 内容 + */ + private String content; + + /** + * 适用范围 + */ + private String useRange; + + /** + * 分类 + */ + private Long category; + + /** + * 文号 + */ + private String articleNumber; + + /** + * 制度等级 + */ + private String level; + + /** + * 保密等级 + */ + private String secretLevel; + + /** + * 主题词 + */ + private String titleWord; + + /** + * 发文单位 + */ + private String publishCompany; + + /** + * 附件名称 + */ + private String attachName; + + /** + * 附件路径 + */ + private String attachPath; + + /** + * 状态 + */ + private String status; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 审批时间 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 允许查看的用户编码 + */ + private String allowUserCode; + + /** + * 允许查看的用户名称 + */ + private String allowUserName; + + /** + * 规章制度附件 + */ + private String ruleAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getUseRange() { + return useRange; + } + + public void setUseRange(String useRange) { + this.useRange = useRange; + } + + public Long getCategory() { + return category; + } + + public void setCategory(Long category) { + this.category = category; + } + + public String getArticleNumber() { + return articleNumber; + } + + public void setArticleNumber(String articleNumber) { + this.articleNumber = articleNumber; + } + + public String getLevel() { + return level; + } + + public void setLevel(String level) { + this.level = level; + } + + public String getSecretLevel() { + return secretLevel; + } + + public void setSecretLevel(String secretLevel) { + this.secretLevel = secretLevel; + } + + public String getTitleWord() { + return titleWord; + } + + public void setTitleWord(String titleWord) { + this.titleWord = titleWord; + } + + public String getPublishCompany() { + return publishCompany; + } + + public void setPublishCompany(String publishCompany) { + this.publishCompany = publishCompany; + } + + public String getAttachName() { + return attachName; + } + + public void setAttachName(String attachName) { + this.attachName = attachName; + } + + public String getAttachPath() { + return attachPath; + } + + public void setAttachPath(String attachPath) { + this.attachPath = attachPath; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getAllowUserCode() { + return allowUserCode; + } + + public void setAllowUserCode(String allowUserCode) { + this.allowUserCode = allowUserCode; + } + + public String getAllowUserName() { + return allowUserName; + } + + public void setAllowUserName(String allowUserName) { + this.allowUserName = allowUserName; + } + + public String getRuleAttach() { + return ruleAttach; + } + + public void setRuleAttach(String ruleAttach) { + this.ruleAttach = ruleAttach; + } + + @Override + public String toString() { + return "TblRule{" + + "id=" + id + + ", title=" + title + + ", content=" + content + + ", useRange=" + useRange + + ", category=" + category + + ", articleNumber=" + articleNumber + + ", level=" + level + + ", secretLevel=" + secretLevel + + ", titleWord=" + titleWord + + ", publishCompany=" + publishCompany + + ", attachName=" + attachName + + ", attachPath=" + attachPath + + ", status=" + status + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", checkPerson=" + checkPerson + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", allowUserCode=" + allowUserCode + + ", allowUserName=" + allowUserName + + ", ruleAttach=" + ruleAttach + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" new file mode 100644 index 00000000..3f42d89e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 发送日志表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblSendLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 记录编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 发送者名称 + */ + private String sendName; + + /** + * 请求时间 + */ + private LocalDateTime requestDate; + + /** + * 定时标志 + */ + private Integer sendTag; + + /** + * 定时时间 + */ + private LocalDateTime timingDate; + + /** + * 短信类型 + */ + private Integer messageType; + + /** + * 拓展号码 + */ + private String extendPhone; + + /** + * 接受手机号码 + */ + private String receivePhone; + + /** + * 短信内容 + */ + private String messageContent; + + /** + * 是否发送 + */ + private Integer isSend; + + /** + * 接收人标识 + */ + private String receiveIdentify; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getSendName() { + return sendName; + } + + public void setSendName(String sendName) { + this.sendName = sendName; + } + + public LocalDateTime getRequestDate() { + return requestDate; + } + + public void setRequestDate(LocalDateTime requestDate) { + this.requestDate = requestDate; + } + + public Integer getSendTag() { + return sendTag; + } + + public void setSendTag(Integer sendTag) { + this.sendTag = sendTag; + } + + public LocalDateTime getTimingDate() { + return timingDate; + } + + public void setTimingDate(LocalDateTime timingDate) { + this.timingDate = timingDate; + } + + public Integer getMessageType() { + return messageType; + } + + public void setMessageType(Integer messageType) { + this.messageType = messageType; + } + + public String getExtendPhone() { + return extendPhone; + } + + public void setExtendPhone(String extendPhone) { + this.extendPhone = extendPhone; + } + + public String getReceivePhone() { + return receivePhone; + } + + public void setReceivePhone(String receivePhone) { + this.receivePhone = receivePhone; + } + + public String getMessageContent() { + return messageContent; + } + + public void setMessageContent(String messageContent) { + this.messageContent = messageContent; + } + + public Integer getIsSend() { + return isSend; + } + + public void setIsSend(Integer isSend) { + this.isSend = isSend; + } + + public String getReceiveIdentify() { + return receiveIdentify; + } + + public void setReceiveIdentify(String receiveIdentify) { + this.receiveIdentify = receiveIdentify; + } + + @Override + public String toString() { + return "TblSendLog{" + + "id=" + id + + ", sendName=" + sendName + + ", requestDate=" + requestDate + + ", sendTag=" + sendTag + + ", timingDate=" + timingDate + + ", messageType=" + messageType + + ", extendPhone=" + extendPhone + + ", receivePhone=" + receivePhone + + ", messageContent=" + messageContent + + ", isSend=" + isSend + + ", receiveIdentify=" + receiveIdentify + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" new file mode 100644 index 00000000..d7df3ba7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 快捷方式图标 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblShortcutIcon implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String iconName; + + /** + * 图标路径 + */ + private String iconPath; + + /** + * 状态 + */ + private String status; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getIconName() { + return iconName; + } + + public void setIconName(String iconName) { + this.iconName = iconName; + } + + public String getIconPath() { + return iconPath; + } + + public void setIconPath(String iconPath) { + this.iconPath = iconPath; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + @Override + public String toString() { + return "TblShortcutIcon{" + + "id=" + id + + ", iconName=" + iconName + + ", iconPath=" + iconPath + + ", status=" + status + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" new file mode 100644 index 00000000..1164245c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" @@ -0,0 +1,68 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 到期日期 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblStopDate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String name; + + /** + * 天数 + */ + private String days; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getDays() { + return days; + } + + public void setDays(String days) { + this.days = days; + } + + @Override + public String toString() { + return "TblStopDate{" + + "id=" + id + + ", name=" + name + + ", days=" + days + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" new file mode 100644 index 00000000..fe86f78e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" @@ -0,0 +1,95 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 系统图标 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblSysDiagrams implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 图标名称 + */ + private String diagramName; + + /** + * 归属人 + */ + private Integer belongPerson; + + /** + * 图标编号 + */ + private Integer diagramId; + + /** + * 图标版本 + */ + private Integer diagramVersion; + + /** + * 图标定义 + */ + private String diagramDefinition; + + + public String getDiagramName() { + return diagramName; + } + + public void setDiagramName(String diagramName) { + this.diagramName = diagramName; + } + + public Integer getBelongPerson() { + return belongPerson; + } + + public void setBelongPerson(Integer belongPerson) { + this.belongPerson = belongPerson; + } + + public Integer getDiagramId() { + return diagramId; + } + + public void setDiagramId(Integer diagramId) { + this.diagramId = diagramId; + } + + public Integer getDiagramVersion() { + return diagramVersion; + } + + public void setDiagramVersion(Integer diagramVersion) { + this.diagramVersion = diagramVersion; + } + + public String getDiagramDefinition() { + return diagramDefinition; + } + + public void setDiagramDefinition(String diagramDefinition) { + this.diagramDefinition = diagramDefinition; + } + + @Override + public String toString() { + return "TblSysDiagrams{" + + "diagramName=" + diagramName + + ", belongPerson=" + belongPerson + + ", diagramId=" + diagramId + + ", diagramVersion=" + diagramVersion + + ", diagramDefinition=" + diagramDefinition + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" new file mode 100644 index 00000000..85674420 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 系统日志 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblSystemLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 日志内容 + */ + private String logContent; + + /** + * 模块编码 + */ + private String modelId; + + /** + * ip地址 + */ + private String ipAddr; + + /** + * 部门权限 + */ + private String deptPrivileges; + + /** + * 操作人编码 + */ + private String operateId; + + /** + * 操作人名称 + */ + private String operateName; + + /** + * 部门编码 + */ + private String deptId; + + /** + * 部门名称 + */ + private String deptName; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getLogContent() { + return logContent; + } + + public void setLogContent(String logContent) { + this.logContent = logContent; + } + + public String getModelId() { + return modelId; + } + + public void setModelId(String modelId) { + this.modelId = modelId; + } + + public String getIpAddr() { + return ipAddr; + } + + public void setIpAddr(String ipAddr) { + this.ipAddr = ipAddr; + } + + public String getDeptPrivileges() { + return deptPrivileges; + } + + public void setDeptPrivileges(String deptPrivileges) { + this.deptPrivileges = deptPrivileges; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperateName() { + return operateName; + } + + public void setOperateName(String operateName) { + this.operateName = operateName; + } + + public String getDeptId() { + return deptId; + } + + public void setDeptId(String deptId) { + this.deptId = deptId; + } + + public String getDeptName() { + return deptName; + } + + public void setDeptName(String deptName) { + this.deptName = deptName; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "TblSystemLog{" + + "id=" + id + + ", logContent=" + logContent + + ", modelId=" + modelId + + ", ipAddr=" + ipAddr + + ", deptPrivileges=" + deptPrivileges + + ", operateId=" + operateId + + ", operateName=" + operateName + + ", deptId=" + deptId + + ", deptName=" + deptName + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" new file mode 100644 index 00000000..0cdc45d0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 待办事项 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblTodo implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 名称 + */ + private String name; + + /** + * 权限 + */ + private String privileges; + + /** + * 状态 + */ + private String status; + + /** + * 链接地址 + */ + private String url; + + /** + * 显示行数 + */ + private Integer showNumber; + + /** + * 天数 + */ + private Integer days; + + /** + * 所属产品 + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getPrivileges() { + return privileges; + } + + public void setPrivileges(String privileges) { + this.privileges = privileges; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public Integer getShowNumber() { + return showNumber; + } + + public void setShowNumber(Integer showNumber) { + this.showNumber = showNumber; + } + + public Integer getDays() { + return days; + } + + public void setDays(Integer days) { + this.days = days; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblTodo{" + + "id=" + id + + ", name=" + name + + ", privileges=" + privileges + + ", status=" + status + + ", url=" + url + + ", showNumber=" + showNumber + + ", days=" + days + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" new file mode 100644 index 00000000..589ee04a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 类型库 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblType implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 类型编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 类型名称 + */ + private String typeName; + + /** + * 状态 + */ + private String typeStatus; + + /** + * 所属产品 + */ + private String belongProduct; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTypeName() { + return typeName; + } + + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + public String getTypeStatus() { + return typeStatus; + } + + public void setTypeStatus(String typeStatus) { + this.typeStatus = typeStatus; + } + + public String getBelongProduct() { + return belongProduct; + } + + public void setBelongProduct(String belongProduct) { + this.belongProduct = belongProduct; + } + + @Override + public String toString() { + return "TblType{" + + "id=" + id + + ", typeName=" + typeName + + ", typeStatus=" + typeStatus + + ", belongProduct=" + belongProduct + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" new file mode 100644 index 00000000..0c5b3d4b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" @@ -0,0 +1,53 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 用户部门表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserDept implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户编号 + */ + private Integer userId; + + /** + * 部门编号 + */ + private Integer deptId; + + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public Integer getDeptId() { + return deptId; + } + + public void setDeptId(Integer deptId) { + this.deptId = deptId; + } + + @Override + public String toString() { + return "TblUserDept{" + + "userId=" + userId + + ", deptId=" + deptId + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" new file mode 100644 index 00000000..b3ab8b8f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 用户分组 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserGroup implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 群组名称 + */ + private String groupName; + + /** + * 群组类型 + */ + private String groupType; + + /** + * 说明 + */ + private String groupDesc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getGroupName() { + return groupName; + } + + public void setGroupName(String groupName) { + this.groupName = groupName; + } + + public String getGroupType() { + return groupType; + } + + public void setGroupType(String groupType) { + this.groupType = groupType; + } + + public String getGroupDesc() { + return groupDesc; + } + + public void setGroupDesc(String groupDesc) { + this.groupDesc = groupDesc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "TblUserGroup{" + + "id=" + id + + ", groupName=" + groupName + + ", groupType=" + groupType + + ", groupDesc=" + groupDesc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" new file mode 100644 index 00000000..60eb7902 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" @@ -0,0 +1,401 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 用户档案 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 用户姓名 + */ + private String userName; + + /** + * 用户密码 + */ + private String userPassword; + + /** + * 用户类型 + */ + private String userType; + + /** + * 岗位角色 + */ + private TblRole tblRole; + + /** + * 用户性别 + */ + private String userGender; + + /** + * 所属部门 + */ + private TblDept tblDept; + + /** + * 职位 + */ + private Integer userJob; + + /** + * 用户状态 + */ + private String userStatus; + + /** + * 办公电话 + */ + private String officePhone; + + /** + * 内线电话 + */ + private String innerPhone; + + /** + * 移动电话 + */ + private String movePhone; + + /** + * 电子邮箱 + */ + private String email; + + /** + * 允许发送手机短信 + */ + private String isSendMsg; + + /** + * 有效开始日期 + */ + private LocalDateTime startDate; + + /** + * 有效结束日期 + */ + private LocalDateTime stopDate; + + /** + * 出生日期 + */ + private LocalDateTime birthday; + + /** + * 登陆ip规则 + */ + private String ipRule; + + /** + * 入职日期 + */ + private LocalDateTime userHiredate; + + /** + * 允许发送微信 + */ + private String isSendWchat; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private TblCompany tblCompany; + + /** + * 是否部门管理者 + */ + private String isDeptAdmin; + + /** + * 最后登陆时间 + */ + private LocalDateTime lastLoginDate; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getUserPassword() { + return userPassword; + } + + public void setUserPassword(String userPassword) { + this.userPassword = userPassword; + } + + public String getUserType() { + return userType; + } + + public void setUserType(String userType) { + this.userType = userType; + } + + public String getUserGender() { + return userGender; + } + + public void setUserGender(String userGender) { + this.userGender = userGender; + } + + public Integer getUserJob() { + return userJob; + } + + public void setUserJob(Integer userJob) { + this.userJob = userJob; + } + + public String getUserStatus() { + return userStatus; + } + + public void setUserStatus(String userStatus) { + this.userStatus = userStatus; + } + + public String getOfficePhone() { + return officePhone; + } + + public void setOfficePhone(String officePhone) { + this.officePhone = officePhone; + } + + public String getInnerPhone() { + return innerPhone; + } + + public void setInnerPhone(String innerPhone) { + this.innerPhone = innerPhone; + } + + public String getMovePhone() { + return movePhone; + } + + public void setMovePhone(String movePhone) { + this.movePhone = movePhone; + } + + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getIsSendMsg() { + return isSendMsg; + } + + public void setIsSendMsg(String isSendMsg) { + this.isSendMsg = isSendMsg; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public LocalDateTime getBirthday() { + return birthday; + } + + public void setBirthday(LocalDateTime birthday) { + this.birthday = birthday; + } + + public String getIpRule() { + return ipRule; + } + + public void setIpRule(String ipRule) { + this.ipRule = ipRule; + } + + public LocalDateTime getUserHiredate() { + return userHiredate; + } + + public void setUserHiredate(LocalDateTime userHiredate) { + this.userHiredate = userHiredate; + } + + public String getIsSendWchat() { + return isSendWchat; + } + + public void setIsSendWchat(String isSendWchat) { + this.isSendWchat = isSendWchat; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public TblRole getTblRole() { + return tblRole; + } + + public void setTblRole(TblRole tblRole) { + this.tblRole = tblRole; + } + + public TblDept getTblDept() { + return tblDept; + } + + public void setTblDept(TblDept tblDept) { + this.tblDept = tblDept; + } + + public TblCompany getTblCompany() { + return tblCompany; + } + + public void setTblCompany(TblCompany tblCompany) { + this.tblCompany = tblCompany; + } + + public String getIsDeptAdmin() { + return isDeptAdmin; + } + + public void setIsDeptAdmin(String isDeptAdmin) { + this.isDeptAdmin = isDeptAdmin; + } + + public LocalDateTime getLastLoginDate() { + return lastLoginDate; + } + + public void setLastLoginDate(LocalDateTime lastLoginDate) { + this.lastLoginDate = lastLoginDate; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + private String token; + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token; + } + + @Override + public String toString() { + return "TblUserRecord{" + + "id=" + id + + ", userName='" + userName + '\'' + + ", userPassword='" + userPassword + '\'' + + ", userType='" + userType + '\'' + + ", tblRole=" + tblRole + + ", userGender='" + userGender + '\'' + + ", tblDept=" + tblDept + + ", userJob=" + userJob + + ", userStatus='" + userStatus + '\'' + + ", officePhone='" + officePhone + '\'' + + ", innerPhone='" + innerPhone + '\'' + + ", movePhone='" + movePhone + '\'' + + ", email='" + email + '\'' + + ", isSendMsg='" + isSendMsg + '\'' + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", birthday=" + birthday + + ", ipRule='" + ipRule + '\'' + + ", userHiredate=" + userHiredate + + ", isSendWchat='" + isSendWchat + '\'' + + ", remark='" + remark + '\'' + + ", tblCompany=" + tblCompany + + ", isDeptAdmin='" + isDeptAdmin + '\'' + + ", lastLoginDate=" + lastLoginDate + + ", createPerson='" + createPerson + '\'' + + ", createDate=" + createDate + + '}'; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" new file mode 100644 index 00000000..d20516b2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" @@ -0,0 +1,53 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 用户角色表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserRole implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户编号 + */ + private String userId; + + /** + * 角色编号 + */ + private Integer roleId; + + + public String getUserId() { + return userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + @Override + public String toString() { + return "TblUserRole{" + + "userId=" + userId + + ", roleId=" + roleId + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" new file mode 100644 index 00000000..2728b2e4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" @@ -0,0 +1,53 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 用户子公司表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblUserSubCompany implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 用户编号 + */ + private Integer userId; + + /** + * 子公司编号 + */ + private Integer companyId; + + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public Integer getCompanyId() { + return companyId; + } + + public void setCompanyId(Integer companyId) { + this.companyId = companyId; + } + + @Override + public String toString() { + return "TblUserSubCompany{" + + "userId=" + userId + + ", companyId=" + companyId + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" new file mode 100644 index 00000000..4b6632c0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 视频点播 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVod implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 视频编码 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 视频名称 + */ + private String videoName; + + /** + * 来源 + */ + private String videoSource; + + /** + * 视频类型 + */ + private Long videlType; + + /** + * 节目名称 + */ + private String programName; + + /** + * 节目路径 + */ + private String programUrl; + + /** + * 简介 + */ + private String simpleIntro; + + /** + * 是否在首页显示 + */ + private String isFirst; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getVideoName() { + return videoName; + } + + public void setVideoName(String videoName) { + this.videoName = videoName; + } + + public String getVideoSource() { + return videoSource; + } + + public void setVideoSource(String videoSource) { + this.videoSource = videoSource; + } + + public Long getVidelType() { + return videlType; + } + + public void setVidelType(Long videlType) { + this.videlType = videlType; + } + + public String getProgramName() { + return programName; + } + + public void setProgramName(String programName) { + this.programName = programName; + } + + public String getProgramUrl() { + return programUrl; + } + + public void setProgramUrl(String programUrl) { + this.programUrl = programUrl; + } + + public String getSimpleIntro() { + return simpleIntro; + } + + public void setSimpleIntro(String simpleIntro) { + this.simpleIntro = simpleIntro; + } + + public String getIsFirst() { + return isFirst; + } + + public void setIsFirst(String isFirst) { + this.isFirst = isFirst; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "TblVod{" + + "id=" + id + + ", videoName=" + videoName + + ", videoSource=" + videoSource + + ", videlType=" + videlType + + ", programName=" + programName + + ", programUrl=" + programUrl + + ", simpleIntro=" + simpleIntro + + ", isFirst=" + isFirst + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" new file mode 100644 index 00000000..f483e2b9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" @@ -0,0 +1,97 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 投票数据表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVoteData implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 投票编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 投票项目编号 + */ + private Integer voteProjectId; + + /** + * 投票用户编码 + */ + private String voteUserId; + + /** + * 投票用户名称 + */ + private String voteUserName; + + /** + * 投票时间 + */ + private LocalDateTime voteDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getVoteProjectId() { + return voteProjectId; + } + + public void setVoteProjectId(Integer voteProjectId) { + this.voteProjectId = voteProjectId; + } + + public String getVoteUserId() { + return voteUserId; + } + + public void setVoteUserId(String voteUserId) { + this.voteUserId = voteUserId; + } + + public String getVoteUserName() { + return voteUserName; + } + + public void setVoteUserName(String voteUserName) { + this.voteUserName = voteUserName; + } + + public LocalDateTime getVoteDate() { + return voteDate; + } + + public void setVoteDate(LocalDateTime voteDate) { + this.voteDate = voteDate; + } + + @Override + public String toString() { + return "TblVoteData{" + + "id=" + id + + ", voteProjectId=" + voteProjectId + + ", voteUserId=" + voteUserId + + ", voteUserName=" + voteUserName + + ", voteDate=" + voteDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" new file mode 100644 index 00000000..d9e2f382 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" @@ -0,0 +1,82 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 投票数据明细表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVoteDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 投票编号 + */ + private Integer voteId; + + /** + * 答案编号 + */ + private Integer answerId; + + /** + * 答案 + */ + private String result; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getVoteId() { + return voteId; + } + + public void setVoteId(Integer voteId) { + this.voteId = voteId; + } + + public Integer getAnswerId() { + return answerId; + } + + public void setAnswerId(Integer answerId) { + this.answerId = answerId; + } + + public String getResult() { + return result; + } + + public void setResult(String result) { + this.result = result; + } + + @Override + public String toString() { + return "TblVoteDetail{" + + "id=" + id + + ", voteId=" + voteId + + ", answerId=" + answerId + + ", result=" + result + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" new file mode 100644 index 00000000..8217a55d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 投票项目表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVoteProject1 implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 项目编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 项目名称 + */ + private String projectName; + + /** + * 项目类型 + */ + private String projectType; + + /** + * 项目标志 + */ + private String projectTag; + + /** + * 项目说明 + */ + private String projectDesc; + + /** + * 建档人 + */ + private String inputRecordPerson; + + /** + * 建档时间 + */ + private LocalDateTime inputRecordDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProjectName() { + return projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getProjectType() { + return projectType; + } + + public void setProjectType(String projectType) { + this.projectType = projectType; + } + + public String getProjectTag() { + return projectTag; + } + + public void setProjectTag(String projectTag) { + this.projectTag = projectTag; + } + + public String getProjectDesc() { + return projectDesc; + } + + public void setProjectDesc(String projectDesc) { + this.projectDesc = projectDesc; + } + + public String getInputRecordPerson() { + return inputRecordPerson; + } + + public void setInputRecordPerson(String inputRecordPerson) { + this.inputRecordPerson = inputRecordPerson; + } + + public LocalDateTime getInputRecordDate() { + return inputRecordDate; + } + + public void setInputRecordDate(LocalDateTime inputRecordDate) { + this.inputRecordDate = inputRecordDate; + } + + @Override + public String toString() { + return "TblVoteProject1{" + + "id=" + id + + ", projectName=" + projectName + + ", projectType=" + projectType + + ", projectTag=" + projectTag + + ", projectDesc=" + projectDesc + + ", inputRecordPerson=" + inputRecordPerson + + ", inputRecordDate=" + inputRecordDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" new file mode 100644 index 00000000..575b2534 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" @@ -0,0 +1,97 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 投票题目表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblVoteSubject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 题目编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属项目编号 + */ + private Integer projectId; + + /** + * 题目名称 + */ + private String subjectName; + + /** + * 建档人 + */ + private String inputRecordPerson; + + /** + * 建档时间 + */ + private LocalDateTime inputRecordDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getProjectId() { + return projectId; + } + + public void setProjectId(Integer projectId) { + this.projectId = projectId; + } + + public String getSubjectName() { + return subjectName; + } + + public void setSubjectName(String subjectName) { + this.subjectName = subjectName; + } + + public String getInputRecordPerson() { + return inputRecordPerson; + } + + public void setInputRecordPerson(String inputRecordPerson) { + this.inputRecordPerson = inputRecordPerson; + } + + public LocalDateTime getInputRecordDate() { + return inputRecordDate; + } + + public void setInputRecordDate(LocalDateTime inputRecordDate) { + this.inputRecordDate = inputRecordDate; + } + + @Override + public String toString() { + return "TblVoteSubject{" + + "id=" + id + + ", projectId=" + projectId + + ", subjectName=" + subjectName + + ", inputRecordPerson=" + inputRecordPerson + + ", inputRecordDate=" + inputRecordDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" new file mode 100644 index 00000000..f2224f62 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" @@ -0,0 +1,83 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 工作日期 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class TblWorkDate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 日期 + */ + private LocalDateTime dt; + + /** + * 星期 + */ + private Integer weekday; + + /** + * 是否上班 + */ + private Integer isWork; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getDt() { + return dt; + } + + public void setDt(LocalDateTime dt) { + this.dt = dt; + } + + public Integer getWeekday() { + return weekday; + } + + public void setWeekday(Integer weekday) { + this.weekday = weekday; + } + + public Integer getIsWork() { + return isWork; + } + + public void setIsWork(Integer isWork) { + this.isWork = isWork; + } + + @Override + public String toString() { + return "TblWorkDate{" + + "id=" + id + + ", dt=" + dt + + ", weekday=" + weekday + + ", isWork=" + isWork + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" new file mode 100644 index 00000000..aa323c34 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 催缴短信提醒日志 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyAskMsgRemindLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间id + */ + private Integer cellId; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 接受号码 + */ + private String receivePhone; + + /** + * 缴费限期 + */ + private LocalDateTime payLimitDay; + + /** + * 提醒天数 + */ + private Integer remindDays; + + /** + * 房产名称 + */ + private String cellName; + + /** + * 发送人id + */ + private String sendPersonId; + + /** + * 发送人名称 + */ + private String sendPersonName; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getReceivePhone() { + return receivePhone; + } + + public void setReceivePhone(String receivePhone) { + this.receivePhone = receivePhone; + } + + public LocalDateTime getPayLimitDay() { + return payLimitDay; + } + + public void setPayLimitDay(LocalDateTime payLimitDay) { + this.payLimitDay = payLimitDay; + } + + public Integer getRemindDays() { + return remindDays; + } + + public void setRemindDays(Integer remindDays) { + this.remindDays = remindDays; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getSendPersonId() { + return sendPersonId; + } + + public void setSendPersonId(String sendPersonId) { + this.sendPersonId = sendPersonId; + } + + public String getSendPersonName() { + return sendPersonName; + } + + public void setSendPersonName(String sendPersonName) { + this.sendPersonName = sendPersonName; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + @Override + public String toString() { + return "WyAskMsgRemindLog{" + + "id=" + id + + ", cellId=" + cellId + + ", moneyId=" + moneyId + + ", receivePhone=" + receivePhone + + ", payLimitDay=" + payLimitDay + + ", remindDays=" + remindDays + + ", cellName=" + cellName + + ", sendPersonId=" + sendPersonId + + ", sendPersonName=" + sendPersonName + + ", sendDate=" + sendDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" new file mode 100644 index 00000000..105fc9f3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 车辆管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCarManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 车牌号 + */ + private String carLicnece; + + /** + * 停车牌号 + */ + private String stopCarLicence; + + /** + * 车主姓名 + */ + private String carOwnerName; + + /** + * 车位 + */ + private String carport; + + /** + * 入场时间 + */ + private LocalDateTime inDate; + + /** + * 出场时间 + */ + private LocalDateTime outDate; + + /** + * 值班人 + */ + private String agent; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCarLicnece() { + return carLicnece; + } + + public void setCarLicnece(String carLicnece) { + this.carLicnece = carLicnece; + } + + public String getStopCarLicence() { + return stopCarLicence; + } + + public void setStopCarLicence(String stopCarLicence) { + this.stopCarLicence = stopCarLicence; + } + + public String getCarOwnerName() { + return carOwnerName; + } + + public void setCarOwnerName(String carOwnerName) { + this.carOwnerName = carOwnerName; + } + + public String getCarport() { + return carport; + } + + public void setCarport(String carport) { + this.carport = carport; + } + + public LocalDateTime getInDate() { + return inDate; + } + + public void setInDate(LocalDateTime inDate) { + this.inDate = inDate; + } + + public LocalDateTime getOutDate() { + return outDate; + } + + public void setOutDate(LocalDateTime outDate) { + this.outDate = outDate; + } + + public String getAgent() { + return agent; + } + + public void setAgent(String agent) { + this.agent = agent; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCarManage{" + + "id=" + id + + ", carLicnece=" + carLicnece + + ", stopCarLicence=" + stopCarLicence + + ", carOwnerName=" + carOwnerName + + ", carport=" + carport + + ", inDate=" + inDate + + ", outDate=" + outDate + + ", agent=" + agent + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" new file mode 100644 index 00000000..7cf11524 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 车位管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCarSpaceManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 车位编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 车位类型 + */ + private Long carSpaceType; + + /** + * 车牌号码 + */ + private String carLicenceId; + + /** + * 预售价格 + */ + private Double preSalePrice; + + /** + * 预租价格 + */ + private Double preRentPrice; + + /** + * 停车证号 + */ + private String stopCarLicence; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 管理类别 + */ + private String manageType; + + /** + * 车位位置 + */ + private String carSapcePosition; + + /** + * 车位面积 + */ + private Double carSapceArea; + + /** + * 产权人id + */ + private Integer ownerId; + + /** + * 产权人名称 + */ + private String ownerName; + + /** + * 实售价格 + */ + private Double realSalePrice; + + /** + * 车位类别 + */ + private String carSpaceCategory; + + /** + * 当前状态 + */ + private String status; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 销售人 + */ + private String salePerson; + + /** + * 销售时间 + */ + private LocalDateTime saleDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getCarSpaceType() { + return carSpaceType; + } + + public void setCarSpaceType(Long carSpaceType) { + this.carSpaceType = carSpaceType; + } + + public String getCarLicenceId() { + return carLicenceId; + } + + public void setCarLicenceId(String carLicenceId) { + this.carLicenceId = carLicenceId; + } + + public Double getPreSalePrice() { + return preSalePrice; + } + + public void setPreSalePrice(Double preSalePrice) { + this.preSalePrice = preSalePrice; + } + + public Double getPreRentPrice() { + return preRentPrice; + } + + public void setPreRentPrice(Double preRentPrice) { + this.preRentPrice = preRentPrice; + } + + public String getStopCarLicence() { + return stopCarLicence; + } + + public void setStopCarLicence(String stopCarLicence) { + this.stopCarLicence = stopCarLicence; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public String getManageType() { + return manageType; + } + + public void setManageType(String manageType) { + this.manageType = manageType; + } + + public String getCarSapcePosition() { + return carSapcePosition; + } + + public void setCarSapcePosition(String carSapcePosition) { + this.carSapcePosition = carSapcePosition; + } + + public Double getCarSapceArea() { + return carSapceArea; + } + + public void setCarSapceArea(Double carSapceArea) { + this.carSapceArea = carSapceArea; + } + + public Integer getOwnerId() { + return ownerId; + } + + public void setOwnerId(Integer ownerId) { + this.ownerId = ownerId; + } + + public String getOwnerName() { + return ownerName; + } + + public void setOwnerName(String ownerName) { + this.ownerName = ownerName; + } + + public Double getRealSalePrice() { + return realSalePrice; + } + + public void setRealSalePrice(Double realSalePrice) { + this.realSalePrice = realSalePrice; + } + + public String getCarSpaceCategory() { + return carSpaceCategory; + } + + public void setCarSpaceCategory(String carSpaceCategory) { + this.carSpaceCategory = carSpaceCategory; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getSalePerson() { + return salePerson; + } + + public void setSalePerson(String salePerson) { + this.salePerson = salePerson; + } + + public LocalDateTime getSaleDate() { + return saleDate; + } + + public void setSaleDate(LocalDateTime saleDate) { + this.saleDate = saleDate; + } + + @Override + public String toString() { + return "WyCarSpaceManage{" + + "id=" + id + + ", carSpaceType=" + carSpaceType + + ", carLicenceId=" + carLicenceId + + ", preSalePrice=" + preSalePrice + + ", preRentPrice=" + preRentPrice + + ", stopCarLicence=" + stopCarLicence + + ", estateId=" + estateId + + ", manageType=" + manageType + + ", carSapcePosition=" + carSapcePosition + + ", carSapceArea=" + carSapceArea + + ", ownerId=" + ownerId + + ", ownerName=" + ownerName + + ", realSalePrice=" + realSalePrice + + ", carSpaceCategory=" + carSpaceCategory + + ", status=" + status + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", salePerson=" + salePerson + + ", saleDate=" + saleDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" new file mode 100644 index 00000000..214b45ea --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" @@ -0,0 +1,363 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 车位租赁 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCarSpaceRent implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 合同编号 + */ + private String constractId; + + /** + * 所属车位编号 + */ + private String carSpaceId; + + /** + * 租期开始日 + */ + private LocalDateTime rentStartDate; + + /** + * 租期结束日 + */ + private LocalDateTime rentStopDate; + + /** + * 承租月数 + */ + private Double rentMonth; + + /** + * 使用人id + */ + private Integer userId; + + /** + * 使用人名称 + */ + private String userName; + + /** + * 车牌号码 + */ + private String carLicenceId; + + /** + * 停车证号 + */ + private String stopCarLicence; + + /** + * 月租金 + */ + private Double rentPerMonth; + + /** + * 月服务费 + */ + private Double serviceMoneyPerMonth; + + /** + * 签订日期 + */ + private LocalDateTime signDate; + + /** + * 生效日期 + */ + private LocalDateTime startDate; + + /** + * 终止日期 + */ + private LocalDateTime stopDate; + + /** + * 状态 + */ + private String status; + + /** + * 备注 + */ + private String remark; + + /** + * 中介费 + */ + private Double agentMoney; + + /** + * 是否收取租金 + */ + private String isRentMoney; + + /** + * 合同附件 + */ + private String contractAttach; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getConstractId() { + return constractId; + } + + public void setConstractId(String constractId) { + this.constractId = constractId; + } + + public String getCarSpaceId() { + return carSpaceId; + } + + public void setCarSpaceId(String carSpaceId) { + this.carSpaceId = carSpaceId; + } + + public LocalDateTime getRentStartDate() { + return rentStartDate; + } + + public void setRentStartDate(LocalDateTime rentStartDate) { + this.rentStartDate = rentStartDate; + } + + public LocalDateTime getRentStopDate() { + return rentStopDate; + } + + public void setRentStopDate(LocalDateTime rentStopDate) { + this.rentStopDate = rentStopDate; + } + + public Double getRentMonth() { + return rentMonth; + } + + public void setRentMonth(Double rentMonth) { + this.rentMonth = rentMonth; + } + + public Integer getUserId() { + return userId; + } + + public void setUserId(Integer userId) { + this.userId = userId; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getCarLicenceId() { + return carLicenceId; + } + + public void setCarLicenceId(String carLicenceId) { + this.carLicenceId = carLicenceId; + } + + public String getStopCarLicence() { + return stopCarLicence; + } + + public void setStopCarLicence(String stopCarLicence) { + this.stopCarLicence = stopCarLicence; + } + + public Double getRentPerMonth() { + return rentPerMonth; + } + + public void setRentPerMonth(Double rentPerMonth) { + this.rentPerMonth = rentPerMonth; + } + + public Double getServiceMoneyPerMonth() { + return serviceMoneyPerMonth; + } + + public void setServiceMoneyPerMonth(Double serviceMoneyPerMonth) { + this.serviceMoneyPerMonth = serviceMoneyPerMonth; + } + + public LocalDateTime getSignDate() { + return signDate; + } + + public void setSignDate(LocalDateTime signDate) { + this.signDate = signDate; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public Double getAgentMoney() { + return agentMoney; + } + + public void setAgentMoney(Double agentMoney) { + this.agentMoney = agentMoney; + } + + public String getIsRentMoney() { + return isRentMoney; + } + + public void setIsRentMoney(String isRentMoney) { + this.isRentMoney = isRentMoney; + } + + public String getContractAttach() { + return contractAttach; + } + + public void setContractAttach(String contractAttach) { + this.contractAttach = contractAttach; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyCarSpaceRent{" + + "id=" + id + + ", constractId=" + constractId + + ", carSpaceId=" + carSpaceId + + ", rentStartDate=" + rentStartDate + + ", rentStopDate=" + rentStopDate + + ", rentMonth=" + rentMonth + + ", userId=" + userId + + ", userName=" + userName + + ", carLicenceId=" + carLicenceId + + ", stopCarLicence=" + stopCarLicence + + ", rentPerMonth=" + rentPerMonth + + ", serviceMoneyPerMonth=" + serviceMoneyPerMonth + + ", signDate=" + signDate + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", status=" + status + + ", remark=" + remark + + ", agentMoney=" + agentMoney + + ", isRentMoney=" + isRentMoney + + ", contractAttach=" + contractAttach + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" new file mode 100644 index 00000000..1cfc6ba6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" @@ -0,0 +1,461 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 车位租赁缴费明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCarSpaceRentDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属租赁id + */ + private Long rentId; + + /** + * 缴费类型 + */ + private String payType; + + /** + * 缴费开始日 + */ + private LocalDateTime payStartDate; + + /** + * 缴费结束日 + */ + private LocalDateTime payStopDate; + + /** + * 应收金额 + */ + private Double shouldReceive; + + /** + * 优惠金额 + */ + private Double discountMoney; + + /** + * 滞纳金 + */ + private Double delayMoney; + + /** + * 实收金额 + */ + private Double realReceiveMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 收款人id + */ + private String receiveId; + + /** + * 收款人名称 + */ + private String receivePersonName; + + /** + * 收款时间 + */ + private LocalDateTime receiveDate; + + /** + * 发票号码 + */ + private String invoiceNumber; + + /** + * 收款状态 + */ + private String receiveStatus; + + /** + * 作废人id + */ + private String invalidPersonId; + + /** + * 作废人名称 + */ + private String invalidPersonName; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 单据审核状态 + */ + private String receiptCheckStatus; + + /** + * 单据审核人 + */ + private String receiptCheckPerson; + + /** + * 单据审核时间 + */ + private LocalDateTime receiptCheckTime; + + /** + * 单据审核意见 + */ + private String receiptCheckAdvice; + + /** + * 现金审核状态 + */ + private String moneyCheckStatus; + + /** + * 现金审核人 + */ + private String moneyCheckPerson; + + /** + * 现金审核时间 + */ + private LocalDateTime moneyCheckTime; + + /** + * 现金审核意见 + */ + private String moneyCheckAdvice; + + /** + * 作废审核状态 + */ + private String invalidCheckStatus; + + /** + * 作废审核人 + */ + private String invalidCheckPerson; + + /** + * 作废审核时间 + */ + private LocalDateTime invalidCheckTime; + + /** + * 作废审核意见 + */ + private String invalidCheckAdvice; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getRentId() { + return rentId; + } + + public void setRentId(Long rentId) { + this.rentId = rentId; + } + + public String getPayType() { + return payType; + } + + public void setPayType(String payType) { + this.payType = payType; + } + + public LocalDateTime getPayStartDate() { + return payStartDate; + } + + public void setPayStartDate(LocalDateTime payStartDate) { + this.payStartDate = payStartDate; + } + + public LocalDateTime getPayStopDate() { + return payStopDate; + } + + public void setPayStopDate(LocalDateTime payStopDate) { + this.payStopDate = payStopDate; + } + + public Double getShouldReceive() { + return shouldReceive; + } + + public void setShouldReceive(Double shouldReceive) { + this.shouldReceive = shouldReceive; + } + + public Double getDiscountMoney() { + return discountMoney; + } + + public void setDiscountMoney(Double discountMoney) { + this.discountMoney = discountMoney; + } + + public Double getDelayMoney() { + return delayMoney; + } + + public void setDelayMoney(Double delayMoney) { + this.delayMoney = delayMoney; + } + + public Double getRealReceiveMoney() { + return realReceiveMoney; + } + + public void setRealReceiveMoney(Double realReceiveMoney) { + this.realReceiveMoney = realReceiveMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public String getReceivePersonName() { + return receivePersonName; + } + + public void setReceivePersonName(String receivePersonName) { + this.receivePersonName = receivePersonName; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getInvoiceNumber() { + return invoiceNumber; + } + + public void setInvoiceNumber(String invoiceNumber) { + this.invoiceNumber = invoiceNumber; + } + + public String getReceiveStatus() { + return receiveStatus; + } + + public void setReceiveStatus(String receiveStatus) { + this.receiveStatus = receiveStatus; + } + + public String getInvalidPersonId() { + return invalidPersonId; + } + + public void setInvalidPersonId(String invalidPersonId) { + this.invalidPersonId = invalidPersonId; + } + + public String getInvalidPersonName() { + return invalidPersonName; + } + + public void setInvalidPersonName(String invalidPersonName) { + this.invalidPersonName = invalidPersonName; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getReceiptCheckStatus() { + return receiptCheckStatus; + } + + public void setReceiptCheckStatus(String receiptCheckStatus) { + this.receiptCheckStatus = receiptCheckStatus; + } + + public String getReceiptCheckPerson() { + return receiptCheckPerson; + } + + public void setReceiptCheckPerson(String receiptCheckPerson) { + this.receiptCheckPerson = receiptCheckPerson; + } + + public LocalDateTime getReceiptCheckTime() { + return receiptCheckTime; + } + + public void setReceiptCheckTime(LocalDateTime receiptCheckTime) { + this.receiptCheckTime = receiptCheckTime; + } + + public String getReceiptCheckAdvice() { + return receiptCheckAdvice; + } + + public void setReceiptCheckAdvice(String receiptCheckAdvice) { + this.receiptCheckAdvice = receiptCheckAdvice; + } + + public String getMoneyCheckStatus() { + return moneyCheckStatus; + } + + public void setMoneyCheckStatus(String moneyCheckStatus) { + this.moneyCheckStatus = moneyCheckStatus; + } + + public String getMoneyCheckPerson() { + return moneyCheckPerson; + } + + public void setMoneyCheckPerson(String moneyCheckPerson) { + this.moneyCheckPerson = moneyCheckPerson; + } + + public LocalDateTime getMoneyCheckTime() { + return moneyCheckTime; + } + + public void setMoneyCheckTime(LocalDateTime moneyCheckTime) { + this.moneyCheckTime = moneyCheckTime; + } + + public String getMoneyCheckAdvice() { + return moneyCheckAdvice; + } + + public void setMoneyCheckAdvice(String moneyCheckAdvice) { + this.moneyCheckAdvice = moneyCheckAdvice; + } + + public String getInvalidCheckStatus() { + return invalidCheckStatus; + } + + public void setInvalidCheckStatus(String invalidCheckStatus) { + this.invalidCheckStatus = invalidCheckStatus; + } + + public String getInvalidCheckPerson() { + return invalidCheckPerson; + } + + public void setInvalidCheckPerson(String invalidCheckPerson) { + this.invalidCheckPerson = invalidCheckPerson; + } + + public LocalDateTime getInvalidCheckTime() { + return invalidCheckTime; + } + + public void setInvalidCheckTime(LocalDateTime invalidCheckTime) { + this.invalidCheckTime = invalidCheckTime; + } + + public String getInvalidCheckAdvice() { + return invalidCheckAdvice; + } + + public void setInvalidCheckAdvice(String invalidCheckAdvice) { + this.invalidCheckAdvice = invalidCheckAdvice; + } + + @Override + public String toString() { + return "WyCarSpaceRentDetail{" + + "id=" + id + + ", rentId=" + rentId + + ", payType=" + payType + + ", payStartDate=" + payStartDate + + ", payStopDate=" + payStopDate + + ", shouldReceive=" + shouldReceive + + ", discountMoney=" + discountMoney + + ", delayMoney=" + delayMoney + + ", realReceiveMoney=" + realReceiveMoney + + ", desc=" + desc + + ", receiveId=" + receiveId + + ", receivePersonName=" + receivePersonName + + ", receiveDate=" + receiveDate + + ", invoiceNumber=" + invoiceNumber + + ", receiveStatus=" + receiveStatus + + ", invalidPersonId=" + invalidPersonId + + ", invalidPersonName=" + invalidPersonName + + ", invalidReason=" + invalidReason + + ", invalidDate=" + invalidDate + + ", receiptCheckStatus=" + receiptCheckStatus + + ", receiptCheckPerson=" + receiptCheckPerson + + ", receiptCheckTime=" + receiptCheckTime + + ", receiptCheckAdvice=" + receiptCheckAdvice + + ", moneyCheckStatus=" + moneyCheckStatus + + ", moneyCheckPerson=" + moneyCheckPerson + + ", moneyCheckTime=" + moneyCheckTime + + ", moneyCheckAdvice=" + moneyCheckAdvice + + ", invalidCheckStatus=" + invalidCheckStatus + + ", invalidCheckPerson=" + invalidCheckPerson + + ", invalidCheckTime=" + invalidCheckTime + + ", invalidCheckAdvice=" + invalidCheckAdvice + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" new file mode 100644 index 00000000..1c8cc5a9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 清洁检查 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCleanCheck implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 检查日期 + */ + private LocalDateTime checkDate; + + /** + * 检查地段 + */ + private String checkPlace; + + /** + * 检查情况 + */ + private String checkCondition; + + /** + * 检查人 + */ + private String checkPerson; + + /** + * 清洁人 + */ + private String cleanPerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckPlace() { + return checkPlace; + } + + public void setCheckPlace(String checkPlace) { + this.checkPlace = checkPlace; + } + + public String getCheckCondition() { + return checkCondition; + } + + public void setCheckCondition(String checkCondition) { + this.checkCondition = checkCondition; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public String getCleanPerson() { + return cleanPerson; + } + + public void setCleanPerson(String cleanPerson) { + this.cleanPerson = cleanPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCleanCheck{" + + "id=" + id + + ", checkDate=" + checkDate + + ", checkPlace=" + checkPlace + + ", checkCondition=" + checkCondition + + ", checkPerson=" + checkPerson + + ", cleanPerson=" + cleanPerson + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" new file mode 100644 index 00000000..d92431f5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" @@ -0,0 +1,138 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 清洁安排 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCleanPlan implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 项目编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 项目名称 + */ + private String projectName; + + /** + * 清洁地段 + */ + private String cleanPlace; + + /** + * 清洁内容 + */ + private String cleanContent; + + /** + * 负责人 + */ + private String leader; + + /** + * 清洁时间 + */ + private String cleanDate; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProjectName() { + return projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getCleanPlace() { + return cleanPlace; + } + + public void setCleanPlace(String cleanPlace) { + this.cleanPlace = cleanPlace; + } + + public String getCleanContent() { + return cleanContent; + } + + public void setCleanContent(String cleanContent) { + this.cleanContent = cleanContent; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getCleanDate() { + return cleanDate; + } + + public void setCleanDate(String cleanDate) { + this.cleanDate = cleanDate; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCleanPlan{" + + "id=" + id + + ", projectName=" + projectName + + ", cleanPlace=" + cleanPlace + + ", cleanContent=" + cleanContent + + ", leader=" + leader + + ", cleanDate=" + cleanDate + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" new file mode 100644 index 00000000..02a7bdd9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" @@ -0,0 +1,110 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 清洁记录 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCleanRecord implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 项目编号 + */ + private String projectId; + + /** + * 清洁情况 + */ + private String cleanCondition; + + /** + * 清洁时间 + */ + private String cleanDate; + + /** + * 清洁人 + */ + private String cleanPerson; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProjectId() { + return projectId; + } + + public void setProjectId(String projectId) { + this.projectId = projectId; + } + + public String getCleanCondition() { + return cleanCondition; + } + + public void setCleanCondition(String cleanCondition) { + this.cleanCondition = cleanCondition; + } + + public String getCleanDate() { + return cleanDate; + } + + public void setCleanDate(String cleanDate) { + this.cleanDate = cleanDate; + } + + public String getCleanPerson() { + return cleanPerson; + } + + public void setCleanPerson(String cleanPerson) { + this.cleanPerson = cleanPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "WyCleanRecord{" + + "id=" + id + + ", projectId=" + projectId + + ", cleanCondition=" + cleanCondition + + ", cleanDate=" + cleanDate + + ", cleanPerson=" + cleanPerson + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" new file mode 100644 index 00000000..cb5aba1b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业委会成员 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCommitteeMembers implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 成员代码 + */ + private String memberCode; + + /** + * 成员姓名 + */ + private String memberName; + + /** + * 职务 + */ + private String memberDuty; + + /** + * 出生日期 + */ + private LocalDateTime birthday; + + /** + * 性别 + */ + private String gender; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 工作单位 + */ + private String workPlace; + + /** + * 个人简介 + */ + private String selfIntroduce; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getMemberCode() { + return memberCode; + } + + public void setMemberCode(String memberCode) { + this.memberCode = memberCode; + } + + public String getMemberName() { + return memberName; + } + + public void setMemberName(String memberName) { + this.memberName = memberName; + } + + public String getMemberDuty() { + return memberDuty; + } + + public void setMemberDuty(String memberDuty) { + this.memberDuty = memberDuty; + } + + public LocalDateTime getBirthday() { + return birthday; + } + + public void setBirthday(LocalDateTime birthday) { + this.birthday = birthday; + } + + public String getGender() { + return gender; + } + + public void setGender(String gender) { + this.gender = gender; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getWorkPlace() { + return workPlace; + } + + public void setWorkPlace(String workPlace) { + this.workPlace = workPlace; + } + + public String getSelfIntroduce() { + return selfIntroduce; + } + + public void setSelfIntroduce(String selfIntroduce) { + this.selfIntroduce = selfIntroduce; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCommitteeMembers{" + + "id=" + id + + ", memberCode=" + memberCode + + ", memberName=" + memberName + + ", memberDuty=" + memberDuty + + ", birthday=" + birthday + + ", gender=" + gender + + ", phoneNumber=" + phoneNumber + + ", workPlace=" + workPlace + + ", selfIntroduce=" + selfIntroduce + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" new file mode 100644 index 00000000..94645af6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业委会会议 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCommitteeMetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 会议日期 + */ + private LocalDateTime meetingDate; + + /** + * 会议主题 + */ + private String meetingTitle; + + /** + * 会议地点 + */ + private String meetingAddr; + + /** + * 会议内容 + */ + private String meetingContent; + + /** + * 主持人 + */ + private String hoster; + + /** + * 记录员 + */ + private String recorder; + + /** + * 参见人员 + */ + private String joiner; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getMeetingDate() { + return meetingDate; + } + + public void setMeetingDate(LocalDateTime meetingDate) { + this.meetingDate = meetingDate; + } + + public String getMeetingTitle() { + return meetingTitle; + } + + public void setMeetingTitle(String meetingTitle) { + this.meetingTitle = meetingTitle; + } + + public String getMeetingAddr() { + return meetingAddr; + } + + public void setMeetingAddr(String meetingAddr) { + this.meetingAddr = meetingAddr; + } + + public String getMeetingContent() { + return meetingContent; + } + + public void setMeetingContent(String meetingContent) { + this.meetingContent = meetingContent; + } + + public String getHoster() { + return hoster; + } + + public void setHoster(String hoster) { + this.hoster = hoster; + } + + public String getRecorder() { + return recorder; + } + + public void setRecorder(String recorder) { + this.recorder = recorder; + } + + public String getJoiner() { + return joiner; + } + + public void setJoiner(String joiner) { + this.joiner = joiner; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCommitteeMetting{" + + "id=" + id + + ", meetingDate=" + meetingDate + + ", meetingTitle=" + meetingTitle + + ", meetingAddr=" + meetingAddr + + ", meetingContent=" + meetingContent + + ", hoster=" + hoster + + ", recorder=" + recorder + + ", joiner=" + joiner + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" new file mode 100644 index 00000000..14fa37a0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" @@ -0,0 +1,125 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 社区活动 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyCommunityEvent implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 活动日期 + */ + private LocalDateTime eventDate; + + /** + * 活动内容 + */ + private String eventContent; + + /** + * 主持者 + */ + private String hoster; + + /** + * 参加人员 + */ + private String joinPerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getEventDate() { + return eventDate; + } + + public void setEventDate(LocalDateTime eventDate) { + this.eventDate = eventDate; + } + + public String getEventContent() { + return eventContent; + } + + public void setEventContent(String eventContent) { + this.eventContent = eventContent; + } + + public String getHoster() { + return hoster; + } + + public void setHoster(String hoster) { + this.hoster = hoster; + } + + public String getJoinPerson() { + return joinPerson; + } + + public void setJoinPerson(String joinPerson) { + this.joinPerson = joinPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyCommunityEvent{" + + "id=" + id + + ", eventDate=" + eventDate + + ", eventContent=" + eventContent + + ", hoster=" + hoster + + ", joinPerson=" + joinPerson + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" new file mode 100644 index 00000000..743e7122 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 执勤管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyDutyManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 执勤日期 + */ + private LocalDateTime dutyDate; + + /** + * 执勤人 + */ + private String dutyPerson; + + /** + * 执勤类型 + */ + private String dutyType; + + /** + * 执勤地点 + */ + private String dutyPlace; + + /** + * 执勤记录 + */ + private String dutyRecord; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getDutyDate() { + return dutyDate; + } + + public void setDutyDate(LocalDateTime dutyDate) { + this.dutyDate = dutyDate; + } + + public String getDutyPerson() { + return dutyPerson; + } + + public void setDutyPerson(String dutyPerson) { + this.dutyPerson = dutyPerson; + } + + public String getDutyType() { + return dutyType; + } + + public void setDutyType(String dutyType) { + this.dutyType = dutyType; + } + + public String getDutyPlace() { + return dutyPlace; + } + + public void setDutyPlace(String dutyPlace) { + this.dutyPlace = dutyPlace; + } + + public String getDutyRecord() { + return dutyRecord; + } + + public void setDutyRecord(String dutyRecord) { + this.dutyRecord = dutyRecord; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyDutyManage{" + + "id=" + id + + ", dutyDate=" + dutyDate + + ", dutyPerson=" + dutyPerson + + ", dutyType=" + dutyType + + ", dutyPlace=" + dutyPlace + + ", dutyRecord=" + dutyRecord + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" new file mode 100644 index 00000000..19cfc815 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" @@ -0,0 +1,195 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 信件收取 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEmailReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 收件日期 + */ + private LocalDateTime receiveDate; + + /** + * 领件日期 + */ + private LocalDateTime getDate; + + /** + * 邮件类别 + */ + private String emailType; + + /** + * 收件单位 + */ + private String receiveUnit; + + /** + * 数量 + */ + private Integer number; + + /** + * 领件人 + */ + private String getPerson; + + /** + * 证件类型 + */ + private String cardType; + + /** + * 证件 + */ + private String card; + + /** + * 经手人 + */ + private String agent; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public LocalDateTime getGetDate() { + return getDate; + } + + public void setGetDate(LocalDateTime getDate) { + this.getDate = getDate; + } + + public String getEmailType() { + return emailType; + } + + public void setEmailType(String emailType) { + this.emailType = emailType; + } + + public String getReceiveUnit() { + return receiveUnit; + } + + public void setReceiveUnit(String receiveUnit) { + this.receiveUnit = receiveUnit; + } + + public Integer getNumber() { + return number; + } + + public void setNumber(Integer number) { + this.number = number; + } + + public String getGetPerson() { + return getPerson; + } + + public void setGetPerson(String getPerson) { + this.getPerson = getPerson; + } + + public String getCardType() { + return cardType; + } + + public void setCardType(String cardType) { + this.cardType = cardType; + } + + public String getCard() { + return card; + } + + public void setCard(String card) { + this.card = card; + } + + public String getAgent() { + return agent; + } + + public void setAgent(String agent) { + this.agent = agent; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyEmailReceive{" + + "id=" + id + + ", receiveDate=" + receiveDate + + ", getDate=" + getDate + + ", emailType=" + emailType + + ", receiveUnit=" + receiveUnit + + ", number=" + number + + ", getPerson=" + getPerson + + ", cardType=" + cardType + + ", card=" + card + + ", agent=" + agent + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" new file mode 100644 index 00000000..18c49646 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费收入明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateIncomeDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账日期 + */ + private LocalDateTime chargeDate; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 收入项目 + */ + private Integer incomeProject; + + /** + * 收入金额 + */ + private Double incomeMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Integer getIncomeProject() { + return incomeProject; + } + + public void setIncomeProject(Integer incomeProject) { + this.incomeProject = incomeProject; + } + + public Double getIncomeMoney() { + return incomeMoney; + } + + public void setIncomeMoney(Double incomeMoney) { + this.incomeMoney = incomeMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyEstateIncomeDetail{" + + "id=" + id + + ", chargeDate=" + chargeDate + + ", estateId=" + estateId + + ", incomeProject=" + incomeProject + + ", incomeMoney=" + incomeMoney + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" new file mode 100644 index 00000000..0515f701 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费收入项目 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateIncomeProject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 收入项目id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 收入项目名称 + */ + private String incomeProject; + + /** + * 上级收入项目id + */ + private Integer parentIncomeId; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getIncomeProject() { + return incomeProject; + } + + public void setIncomeProject(String incomeProject) { + this.incomeProject = incomeProject; + } + + public Integer getParentIncomeId() { + return parentIncomeId; + } + + public void setParentIncomeId(Integer parentIncomeId) { + this.parentIncomeId = parentIncomeId; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyEstateIncomeProject{" + + "id=" + id + + ", incomeProject=" + incomeProject + + ", parentIncomeId=" + parentIncomeId + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" new file mode 100644 index 00000000..838774a2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘费用 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateMoney implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账年份 + */ + private LocalDateTime chargeYear; + + /** + * 费用金额 + */ + private Double money; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeYear() { + return chargeYear; + } + + public void setChargeYear(LocalDateTime chargeYear) { + this.chargeYear = chargeYear; + } + + public Double getMoney() { + return money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyEstateMoney{" + + "id=" + id + + ", chargeYear=" + chargeYear + + ", money=" + money + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" new file mode 100644 index 00000000..56b7b9c9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" @@ -0,0 +1,265 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费支出明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateOutDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账日期 + */ + private LocalDateTime chargeDate; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 支出主项目 + */ + private String outputMainProject; + + /** + * 支出子项目 + */ + private Integer outputSubProject; + + /** + * 支出金额 + */ + private Double outputMoney; + + /** + * 年累计支出金额 + */ + private Double outputMoneyYear; + + /** + * 主项累计支出金额 + */ + private Double outputMoneyMain; + + /** + * 状态 + */ + private String status; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 下一步接收人id + */ + private String nextReceivePersonId; + + /** + * 下一步接收人姓名 + */ + private String nextReceivePersonName; + + /** + * 送审时间 + */ + private LocalDateTime sendCheckDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public String getOutputMainProject() { + return outputMainProject; + } + + public void setOutputMainProject(String outputMainProject) { + this.outputMainProject = outputMainProject; + } + + public Integer getOutputSubProject() { + return outputSubProject; + } + + public void setOutputSubProject(Integer outputSubProject) { + this.outputSubProject = outputSubProject; + } + + public Double getOutputMoney() { + return outputMoney; + } + + public void setOutputMoney(Double outputMoney) { + this.outputMoney = outputMoney; + } + + public Double getOutputMoneyYear() { + return outputMoneyYear; + } + + public void setOutputMoneyYear(Double outputMoneyYear) { + this.outputMoneyYear = outputMoneyYear; + } + + public Double getOutputMoneyMain() { + return outputMoneyMain; + } + + public void setOutputMoneyMain(Double outputMoneyMain) { + this.outputMoneyMain = outputMoneyMain; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getNextReceivePersonId() { + return nextReceivePersonId; + } + + public void setNextReceivePersonId(String nextReceivePersonId) { + this.nextReceivePersonId = nextReceivePersonId; + } + + public String getNextReceivePersonName() { + return nextReceivePersonName; + } + + public void setNextReceivePersonName(String nextReceivePersonName) { + this.nextReceivePersonName = nextReceivePersonName; + } + + public LocalDateTime getSendCheckDate() { + return sendCheckDate; + } + + public void setSendCheckDate(LocalDateTime sendCheckDate) { + this.sendCheckDate = sendCheckDate; + } + + @Override + public String toString() { + return "WyEstateOutDetail{" + + "id=" + id + + ", chargeDate=" + chargeDate + + ", estateId=" + estateId + + ", outputMainProject=" + outputMainProject + + ", outputSubProject=" + outputSubProject + + ", outputMoney=" + outputMoney + + ", outputMoneyYear=" + outputMoneyYear + + ", outputMoneyMain=" + outputMoneyMain + + ", status=" + status + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", nextReceivePersonId=" + nextReceivePersonId + + ", nextReceivePersonName=" + nextReceivePersonName + + ", sendCheckDate=" + sendCheckDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" new file mode 100644 index 00000000..aba21711 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费支出明细_审批子表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateOutDetailSub implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Long id; + + /** + * 所属主单id + */ + private Long belongOutProjectId; + + /** + * 接受时间 + */ + private LocalDateTime receiveDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 审批人id + */ + private String checkPersonId; + + /** + * 审批人名称 + */ + private String checkPersonName; + + /** + * 审批时间 + */ + private LocalDateTime checkDate; + + /** + * 审批状态 + */ + private String checkStatus; + + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getBelongOutProjectId() { + return belongOutProjectId; + } + + public void setBelongOutProjectId(Long belongOutProjectId) { + this.belongOutProjectId = belongOutProjectId; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getCheckPersonId() { + return checkPersonId; + } + + public void setCheckPersonId(String checkPersonId) { + this.checkPersonId = checkPersonId; + } + + public String getCheckPersonName() { + return checkPersonName; + } + + public void setCheckPersonName(String checkPersonName) { + this.checkPersonName = checkPersonName; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckStatus() { + return checkStatus; + } + + public void setCheckStatus(String checkStatus) { + this.checkStatus = checkStatus; + } + + @Override + public String toString() { + return "WyEstateOutDetailSub{" + + "id=" + id + + ", belongOutProjectId=" + belongOutProjectId + + ", receiveDate=" + receiveDate + + ", checkAdvice=" + checkAdvice + + ", checkPersonId=" + checkPersonId + + ", checkPersonName=" + checkPersonName + + ", checkDate=" + checkDate + + ", checkStatus=" + checkStatus + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" new file mode 100644 index 00000000..48f3ef70 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼盘经费支出项目 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyEstateOutProject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 项目id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 项目名称 + */ + private String projectName; + + /** + * 上级支出项目id + */ + private Integer parentOutProjectId; + + /** + * 所属主项目 + */ + private String belongMainProjecct; + + /** + * 说明 + */ + private String desc; + + /** + * 建档人 + */ + private String createPerson; + + /** + * 建档时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getProjectName() { + return projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public Integer getParentOutProjectId() { + return parentOutProjectId; + } + + public void setParentOutProjectId(Integer parentOutProjectId) { + this.parentOutProjectId = parentOutProjectId; + } + + public String getBelongMainProjecct() { + return belongMainProjecct; + } + + public void setBelongMainProjecct(String belongMainProjecct) { + this.belongMainProjecct = belongMainProjecct; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyEstateOutProject{" + + "id=" + id + + ", projectName=" + projectName + + ", parentOutProjectId=" + parentOutProjectId + + ", belongMainProjecct=" + belongMainProjecct + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" new file mode 100644 index 00000000..a2acbb7e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 消防事故 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyFireAccident implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 事故日期 + */ + private LocalDateTime accidentDate; + + /** + * 事故地点 + */ + private String accidentPlace; + + /** + * 发生原因 + */ + private String occurReason; + + /** + * 相关人员 + */ + private String relatedPerson; + + /** + * 处理结果 + */ + private String handleResult; + + /** + * 损失程度 + */ + private String loss; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getAccidentDate() { + return accidentDate; + } + + public void setAccidentDate(LocalDateTime accidentDate) { + this.accidentDate = accidentDate; + } + + public String getAccidentPlace() { + return accidentPlace; + } + + public void setAccidentPlace(String accidentPlace) { + this.accidentPlace = accidentPlace; + } + + public String getOccurReason() { + return occurReason; + } + + public void setOccurReason(String occurReason) { + this.occurReason = occurReason; + } + + public String getRelatedPerson() { + return relatedPerson; + } + + public void setRelatedPerson(String relatedPerson) { + this.relatedPerson = relatedPerson; + } + + public String getHandleResult() { + return handleResult; + } + + public void setHandleResult(String handleResult) { + this.handleResult = handleResult; + } + + public String getLoss() { + return loss; + } + + public void setLoss(String loss) { + this.loss = loss; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyFireAccident{" + + "id=" + id + + ", accidentDate=" + accidentDate + + ", accidentPlace=" + accidentPlace + + ", occurReason=" + occurReason + + ", relatedPerson=" + relatedPerson + + ", handleResult=" + handleResult + + ", loss=" + loss + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" new file mode 100644 index 00000000..20631bb2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 消防巡查 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyFireCheck implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 巡视日期 + */ + private LocalDateTime checkDate; + + /** + * 巡视地点 + */ + private String checkPlace; + + /** + * 巡视人 + */ + private String checkPerson; + + /** + * 巡视情况 + */ + private String checkCondition; + + /** + * 处理意见 + */ + private String handleAdvice; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckPlace() { + return checkPlace; + } + + public void setCheckPlace(String checkPlace) { + this.checkPlace = checkPlace; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public String getCheckCondition() { + return checkCondition; + } + + public void setCheckCondition(String checkCondition) { + this.checkCondition = checkCondition; + } + + public String getHandleAdvice() { + return handleAdvice; + } + + public void setHandleAdvice(String handleAdvice) { + this.handleAdvice = handleAdvice; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyFireCheck{" + + "id=" + id + + ", checkDate=" + checkDate + + ", checkPlace=" + checkPlace + + ", checkPerson=" + checkPerson + + ", checkCondition=" + checkCondition + + ", handleAdvice=" + handleAdvice + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" new file mode 100644 index 00000000..268122ca --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 消防演练 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyFireExercise implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 单位 + */ + private String unit; + + /** + * 开始日期 + */ + private LocalDateTime startDate; + + /** + * 结束日期 + */ + private LocalDateTime stopDate; + + /** + * 演练目的 + */ + private String exercisePurpose; + + /** + * 参与人数 + */ + private Integer joinPersons; + + /** + * 协助单位 + */ + private String assistantUnit; + + /** + * 演练内容 + */ + private String exerciseContent; + + /** + * 演练效果 + */ + private String exerciseResult; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getUnit() { + return unit; + } + + public void setUnit(String unit) { + this.unit = unit; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getExercisePurpose() { + return exercisePurpose; + } + + public void setExercisePurpose(String exercisePurpose) { + this.exercisePurpose = exercisePurpose; + } + + public Integer getJoinPersons() { + return joinPersons; + } + + public void setJoinPersons(Integer joinPersons) { + this.joinPersons = joinPersons; + } + + public String getAssistantUnit() { + return assistantUnit; + } + + public void setAssistantUnit(String assistantUnit) { + this.assistantUnit = assistantUnit; + } + + public String getExerciseContent() { + return exerciseContent; + } + + public void setExerciseContent(String exerciseContent) { + this.exerciseContent = exerciseContent; + } + + public String getExerciseResult() { + return exerciseResult; + } + + public void setExerciseResult(String exerciseResult) { + this.exerciseResult = exerciseResult; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyFireExercise{" + + "id=" + id + + ", unit=" + unit + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", exercisePurpose=" + exercisePurpose + + ", joinPersons=" + joinPersons + + ", assistantUnit=" + assistantUnit + + ", exerciseContent=" + exerciseContent + + ", exerciseResult=" + exerciseResult + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" new file mode 100644 index 00000000..b968dc6e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 消防设施 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyFireFacility implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 设施名称 + */ + private String facilityName; + + /** + * 规格型号 + */ + private String specifications; + + /** + * 单位 + */ + private String unit; + + /** + * 数量 + */ + private Integer number; + + /** + * 放置地点 + */ + private String place; + + /** + * 负责人 + */ + private String leader; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getFacilityName() { + return facilityName; + } + + public void setFacilityName(String facilityName) { + this.facilityName = facilityName; + } + + public String getSpecifications() { + return specifications; + } + + public void setSpecifications(String specifications) { + this.specifications = specifications; + } + + public String getUnit() { + return unit; + } + + public void setUnit(String unit) { + this.unit = unit; + } + + public Integer getNumber() { + return number; + } + + public void setNumber(Integer number) { + this.number = number; + } + + public String getPlace() { + return place; + } + + public void setPlace(String place) { + this.place = place; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyFireFacility{" + + "id=" + id + + ", facilityName=" + facilityName + + ", specifications=" + specifications + + ", unit=" + unit + + ", number=" + number + + ", place=" + place + + ", leader=" + leader + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" new file mode 100644 index 00000000..214d9bcd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" @@ -0,0 +1,195 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 物品出入 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyGoodsInout implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 出入时间 + */ + private LocalDateTime inoutDate; + + /** + * 携带人 + */ + private String carryPerson; + + /** + * 身份证号 + */ + private String idCard; + + /** + * 出入类型 + */ + private String inputType; + + /** + * 居住地址 + */ + private String liveAddr; + + /** + * 出入单元 + */ + private String inoutUnit; + + /** + * 户主姓名 + */ + private String customerName; + + /** + * 出入物品 + */ + private String inoutGoods; + + /** + * 值班人 + */ + private String agent; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getInoutDate() { + return inoutDate; + } + + public void setInoutDate(LocalDateTime inoutDate) { + this.inoutDate = inoutDate; + } + + public String getCarryPerson() { + return carryPerson; + } + + public void setCarryPerson(String carryPerson) { + this.carryPerson = carryPerson; + } + + public String getIdCard() { + return idCard; + } + + public void setIdCard(String idCard) { + this.idCard = idCard; + } + + public String getInputType() { + return inputType; + } + + public void setInputType(String inputType) { + this.inputType = inputType; + } + + public String getLiveAddr() { + return liveAddr; + } + + public void setLiveAddr(String liveAddr) { + this.liveAddr = liveAddr; + } + + public String getInoutUnit() { + return inoutUnit; + } + + public void setInoutUnit(String inoutUnit) { + this.inoutUnit = inoutUnit; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getInoutGoods() { + return inoutGoods; + } + + public void setInoutGoods(String inoutGoods) { + this.inoutGoods = inoutGoods; + } + + public String getAgent() { + return agent; + } + + public void setAgent(String agent) { + this.agent = agent; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyGoodsInout{" + + "id=" + id + + ", inoutDate=" + inoutDate + + ", carryPerson=" + carryPerson + + ", idCard=" + idCard + + ", inputType=" + inputType + + ", liveAddr=" + liveAddr + + ", inoutUnit=" + inoutUnit + + ", customerName=" + customerName + + ", inoutGoods=" + inoutGoods + + ", agent=" + agent + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" new file mode 100644 index 00000000..59fe6c78 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 绿化检查 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyGreenCheck implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 绿化编码 + */ + private String greenCode; + + /** + * 检查时间 + */ + private LocalDateTime checkDate; + + /** + * 检查情况 + */ + private String checkCondition; + + /** + * 处理情况 + */ + private String handleCondition; + + /** + * 检查人 + */ + private String checkPerson; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getGreenCode() { + return greenCode; + } + + public void setGreenCode(String greenCode) { + this.greenCode = greenCode; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckCondition() { + return checkCondition; + } + + public void setCheckCondition(String checkCondition) { + this.checkCondition = checkCondition; + } + + public String getHandleCondition() { + return handleCondition; + } + + public void setHandleCondition(String handleCondition) { + this.handleCondition = handleCondition; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyGreenCheck{" + + "id=" + id + + ", greenCode=" + greenCode + + ", checkDate=" + checkDate + + ", checkCondition=" + checkCondition + + ", handleCondition=" + handleCondition + + ", checkPerson=" + checkPerson + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" new file mode 100644 index 00000000..5ccc4819 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" @@ -0,0 +1,152 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 绿化设置 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyGreenSetting implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 设置编码 + */ + private String settingCode; + + /** + * 设置名称 + */ + private String settingName; + + /** + * 面积 + */ + private Double area; + + /** + * 绿化时间 + */ + private LocalDateTime greenDate; + + /** + * 地点 + */ + private String greenPlace; + + /** + * 责任人 + */ + private String leader; + + /** + * 主要植被 + */ + private String mainVegetation; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public String getSettingCode() { + return settingCode; + } + + public void setSettingCode(String settingCode) { + this.settingCode = settingCode; + } + + public String getSettingName() { + return settingName; + } + + public void setSettingName(String settingName) { + this.settingName = settingName; + } + + public Double getArea() { + return area; + } + + public void setArea(Double area) { + this.area = area; + } + + public LocalDateTime getGreenDate() { + return greenDate; + } + + public void setGreenDate(LocalDateTime greenDate) { + this.greenDate = greenDate; + } + + public String getGreenPlace() { + return greenPlace; + } + + public void setGreenPlace(String greenPlace) { + this.greenPlace = greenPlace; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getMainVegetation() { + return mainVegetation; + } + + public void setMainVegetation(String mainVegetation) { + this.mainVegetation = mainVegetation; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyGreenSetting{" + + "settingCode=" + settingCode + + ", settingName=" + settingName + + ", area=" + area + + ", greenDate=" + greenDate + + ", greenPlace=" + greenPlace + + ", leader=" + leader + + ", mainVegetation=" + mainVegetation + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" new file mode 100644 index 00000000..ec64a91b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 收入明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyIncomeDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账日期 + */ + private LocalDateTime chargeDate; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 收入项目 + */ + private Integer incomeProject; + + /** + * 收入金额 + */ + private Double incomeMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Integer getIncomeProject() { + return incomeProject; + } + + public void setIncomeProject(Integer incomeProject) { + this.incomeProject = incomeProject; + } + + public Double getIncomeMoney() { + return incomeMoney; + } + + public void setIncomeMoney(Double incomeMoney) { + this.incomeMoney = incomeMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyIncomeDetail{" + + "id=" + id + + ", chargeDate=" + chargeDate + + ", estateId=" + estateId + + ", incomeProject=" + incomeProject + + ", incomeMoney=" + incomeMoney + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" new file mode 100644 index 00000000..728cc49c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 收入项目 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyIncomeProject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 收入项目id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 收入项目名称 + */ + private String incomeProjectName; + + /** + * 上级收入项目id + */ + private Integer parentIncomeId; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getIncomeProjectName() { + return incomeProjectName; + } + + public void setIncomeProjectName(String incomeProjectName) { + this.incomeProjectName = incomeProjectName; + } + + public Integer getParentIncomeId() { + return parentIncomeId; + } + + public void setParentIncomeId(Integer parentIncomeId) { + this.parentIncomeId = parentIncomeId; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyIncomeProject{" + + "id=" + id + + ", incomeProjectName=" + incomeProjectName + + ", parentIncomeId=" + parentIncomeId + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" new file mode 100644 index 00000000..07ba03a2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" @@ -0,0 +1,377 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import java.time.LocalDateTime; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 票据管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyNoteManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 票据编号 + */ + @TableId(value = "note_id", type = IdType.AUTO) + private String noteId; + + /** + * 票据前缀 + */ + private String notePrefix; + + /** + * 票据流水号 + */ + private String noteSerialNumber; + + /** + * 票据状态 + */ + private String noteStatus; + + /** + * 票据说明 + */ + private String noteDesc; + + /** + * 使用人id + */ + private String userId; + + /** + * 使用人姓名 + */ + private String userName; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 分配人id + */ + private String assignPersonId; + + /** + * 分配人名称 + */ + private String assignPersonName; + + /** + * 分配时间 + */ + private LocalDateTime assignDate; + + /** + * 打印人id + */ + private String printPersonId; + + /** + * 打印人名称 + */ + private String printPersonName; + + /** + * 打印时间 + */ + private LocalDateTime printDate; + + /** + * 单据类型 + */ + private String noteType; + + /** + * 收款单号 + */ + private String receiveMoneyId; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 作废人id + */ + private String invalidPersonId; + + /** + * 作废人名称 + */ + private String invalidPersonName; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 作废确认人 + */ + private String invalidConfirmPerson; + + /** + * 作废确认时间 + */ + private LocalDateTime invalidConfirmDate; + + + public String getNoteId() { + return noteId; + } + + public void setNoteId(String noteId) { + this.noteId = noteId; + } + + public String getNotePrefix() { + return notePrefix; + } + + public void setNotePrefix(String notePrefix) { + this.notePrefix = notePrefix; + } + + public String getNoteSerialNumber() { + return noteSerialNumber; + } + + public void setNoteSerialNumber(String noteSerialNumber) { + this.noteSerialNumber = noteSerialNumber; + } + + public String getNoteStatus() { + return noteStatus; + } + + public void setNoteStatus(String noteStatus) { + this.noteStatus = noteStatus; + } + + public String getNoteDesc() { + return noteDesc; + } + + public void setNoteDesc(String noteDesc) { + this.noteDesc = noteDesc; + } + + public String getUserId() { + return userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getAssignPersonId() { + return assignPersonId; + } + + public void setAssignPersonId(String assignPersonId) { + this.assignPersonId = assignPersonId; + } + + public String getAssignPersonName() { + return assignPersonName; + } + + public void setAssignPersonName(String assignPersonName) { + this.assignPersonName = assignPersonName; + } + + public LocalDateTime getAssignDate() { + return assignDate; + } + + public void setAssignDate(LocalDateTime assignDate) { + this.assignDate = assignDate; + } + + public String getPrintPersonId() { + return printPersonId; + } + + public void setPrintPersonId(String printPersonId) { + this.printPersonId = printPersonId; + } + + public String getPrintPersonName() { + return printPersonName; + } + + public void setPrintPersonName(String printPersonName) { + this.printPersonName = printPersonName; + } + + public LocalDateTime getPrintDate() { + return printDate; + } + + public void setPrintDate(LocalDateTime printDate) { + this.printDate = printDate; + } + + public String getNoteType() { + return noteType; + } + + public void setNoteType(String noteType) { + this.noteType = noteType; + } + + public String getReceiveMoneyId() { + return receiveMoneyId; + } + + public void setReceiveMoneyId(String receiveMoneyId) { + this.receiveMoneyId = receiveMoneyId; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public String getInvalidPersonId() { + return invalidPersonId; + } + + public void setInvalidPersonId(String invalidPersonId) { + this.invalidPersonId = invalidPersonId; + } + + public String getInvalidPersonName() { + return invalidPersonName; + } + + public void setInvalidPersonName(String invalidPersonName) { + this.invalidPersonName = invalidPersonName; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getInvalidConfirmPerson() { + return invalidConfirmPerson; + } + + public void setInvalidConfirmPerson(String invalidConfirmPerson) { + this.invalidConfirmPerson = invalidConfirmPerson; + } + + public LocalDateTime getInvalidConfirmDate() { + return invalidConfirmDate; + } + + public void setInvalidConfirmDate(LocalDateTime invalidConfirmDate) { + this.invalidConfirmDate = invalidConfirmDate; + } + + @Override + public String toString() { + return "WyNoteManage{" + + "noteId=" + noteId + + ", notePrefix=" + notePrefix + + ", noteSerialNumber=" + noteSerialNumber + + ", noteStatus=" + noteStatus + + ", noteDesc=" + noteDesc + + ", userId=" + userId + + ", userName=" + userName + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", assignPersonId=" + assignPersonId + + ", assignPersonName=" + assignPersonName + + ", assignDate=" + assignDate + + ", printPersonId=" + printPersonId + + ", printPersonName=" + printPersonName + + ", printDate=" + printDate + + ", noteType=" + noteType + + ", receiveMoneyId=" + receiveMoneyId + + ", invalidReason=" + invalidReason + + ", invalidPersonId=" + invalidPersonId + + ", invalidPersonName=" + invalidPersonName + + ", invalidDate=" + invalidDate + + ", invalidConfirmPerson=" + invalidConfirmPerson + + ", invalidConfirmDate=" + invalidConfirmDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" new file mode 100644 index 00000000..4d95ad3e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 支出明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyOutDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 记账日期 + */ + private LocalDateTime chargeDate; + + /** + * 所属楼盘id + */ + private Integer estateId; + + /** + * 支出项目 + */ + private Integer outProject; + + /** + * 支出金额 + */ + private Double outMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getChargeDate() { + return chargeDate; + } + + public void setChargeDate(LocalDateTime chargeDate) { + this.chargeDate = chargeDate; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public Integer getOutProject() { + return outProject; + } + + public void setOutProject(Integer outProject) { + this.outProject = outProject; + } + + public Double getOutMoney() { + return outMoney; + } + + public void setOutMoney(Double outMoney) { + this.outMoney = outMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyOutDetail{" + + "id=" + id + + ", chargeDate=" + chargeDate + + ", estateId=" + estateId + + ", outProject=" + outProject + + ", outMoney=" + outMoney + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" new file mode 100644 index 00000000..51205e58 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 支出项目 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyOutProject implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 支出项目id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 支出项目名称 + */ + private String outProjectName; + + /** + * 上级支出项目id + */ + private Integer parentOutProjectId; + + /** + * 说明 + */ + private String desc; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOutProjectName() { + return outProjectName; + } + + public void setOutProjectName(String outProjectName) { + this.outProjectName = outProjectName; + } + + public Integer getParentOutProjectId() { + return parentOutProjectId; + } + + public void setParentOutProjectId(Integer parentOutProjectId) { + this.parentOutProjectId = parentOutProjectId; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyOutProject{" + + "id=" + id + + ", outProjectName=" + outProjectName + + ", parentOutProjectId=" + parentOutProjectId + + ", desc=" + desc + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" new file mode 100644 index 00000000..85d84f0d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 图纸管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyPictureManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 图纸名称 + */ + private String pictureName; + + /** + * 图纸类型 + */ + private Long pictureType; + + /** + * 说明 + */ + private String desc; + + /** + * 图纸附件 + */ + private String pictureAttach; + + /** + * 所属公司 + */ + private String company; + + /** + * 上传人 + */ + private String uploadPerson; + + /** + * 上传时间 + */ + private LocalDateTime uploadDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getPictureName() { + return pictureName; + } + + public void setPictureName(String pictureName) { + this.pictureName = pictureName; + } + + public Long getPictureType() { + return pictureType; + } + + public void setPictureType(Long pictureType) { + this.pictureType = pictureType; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getPictureAttach() { + return pictureAttach; + } + + public void setPictureAttach(String pictureAttach) { + this.pictureAttach = pictureAttach; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getUploadPerson() { + return uploadPerson; + } + + public void setUploadPerson(String uploadPerson) { + this.uploadPerson = uploadPerson; + } + + public LocalDateTime getUploadDate() { + return uploadDate; + } + + public void setUploadDate(LocalDateTime uploadDate) { + this.uploadDate = uploadDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyPictureManage{" + + "id=" + id + + ", pictureName=" + pictureName + + ", pictureType=" + pictureType + + ", desc=" + desc + + ", pictureAttach=" + pictureAttach + + ", company=" + company + + ", uploadPerson=" + uploadPerson + + ", uploadDate=" + uploadDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" new file mode 100644 index 00000000..1b4ec4eb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" @@ -0,0 +1,153 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 物业接管工程明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyPropertyTakeoverDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 接管细节id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属接管id + */ + private Integer takeoverId; + + /** + * 工程项目名称 + */ + private String projectName; + + /** + * 验收方 + */ + private String checked; + + /** + * 验收日期 + */ + private LocalDateTime checkedDate; + + /** + * 验收结果 + */ + private String checkedResult; + + /** + * 整改完成日期 + */ + private LocalDateTime finishDate; + + /** + * 整改完成情况 + */ + private String finishCondition; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getTakeoverId() { + return takeoverId; + } + + public void setTakeoverId(Integer takeoverId) { + this.takeoverId = takeoverId; + } + + public String getProjectName() { + return projectName; + } + + public void setProjectName(String projectName) { + this.projectName = projectName; + } + + public String getChecked() { + return checked; + } + + public void setChecked(String checked) { + this.checked = checked; + } + + public LocalDateTime getCheckedDate() { + return checkedDate; + } + + public void setCheckedDate(LocalDateTime checkedDate) { + this.checkedDate = checkedDate; + } + + public String getCheckedResult() { + return checkedResult; + } + + public void setCheckedResult(String checkedResult) { + this.checkedResult = checkedResult; + } + + public LocalDateTime getFinishDate() { + return finishDate; + } + + public void setFinishDate(LocalDateTime finishDate) { + this.finishDate = finishDate; + } + + public String getFinishCondition() { + return finishCondition; + } + + public void setFinishCondition(String finishCondition) { + this.finishCondition = finishCondition; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "WyPropertyTakeoverDetail{" + + "id=" + id + + ", takeoverId=" + takeoverId + + ", projectName=" + projectName + + ", checked=" + checked + + ", checkedDate=" + checkedDate + + ", checkedResult=" + checkedResult + + ", finishDate=" + finishDate + + ", finishCondition=" + finishCondition + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" new file mode 100644 index 00000000..9314a2ab --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" @@ -0,0 +1,111 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 物业接管概要 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyPropertyTakeoverSchema implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 接管单号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 接管标题 + */ + private String takeoverTitle; + + /** + * 所属楼盘 + */ + private Integer estateId; + + /** + * 接管备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建日期 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTakeoverTitle() { + return takeoverTitle; + } + + public void setTakeoverTitle(String takeoverTitle) { + this.takeoverTitle = takeoverTitle; + } + + public Integer getEstateId() { + return estateId; + } + + public void setEstateId(Integer estateId) { + this.estateId = estateId; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "WyPropertyTakeoverSchema{" + + "id=" + id + + ", takeoverTitle=" + takeoverTitle + + ", estateId=" + estateId + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" new file mode 100644 index 00000000..5be1f110 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 续费短信提醒日志 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyRenewMsgRemindLog implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Long id; + + /** + * 房间号 + */ + private Integer cellId; + + /** + * 费项id + */ + private Integer moneyId; + + /** + * 接受号码 + */ + private String receivePhone; + + /** + * 费用止期 + */ + private LocalDateTime moneyStopDate; + + /** + * 提醒天数 + */ + private Integer remindDays; + + /** + * 房产名称 + */ + private String cellName; + + /** + * 发送人id + */ + private String sendPersonId; + + /** + * 发送人姓名 + */ + private String sendPersonName; + + /** + * 发送时间 + */ + private LocalDateTime sendDate; + + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public Integer getMoneyId() { + return moneyId; + } + + public void setMoneyId(Integer moneyId) { + this.moneyId = moneyId; + } + + public String getReceivePhone() { + return receivePhone; + } + + public void setReceivePhone(String receivePhone) { + this.receivePhone = receivePhone; + } + + public LocalDateTime getMoneyStopDate() { + return moneyStopDate; + } + + public void setMoneyStopDate(LocalDateTime moneyStopDate) { + this.moneyStopDate = moneyStopDate; + } + + public Integer getRemindDays() { + return remindDays; + } + + public void setRemindDays(Integer remindDays) { + this.remindDays = remindDays; + } + + public String getCellName() { + return cellName; + } + + public void setCellName(String cellName) { + this.cellName = cellName; + } + + public String getSendPersonId() { + return sendPersonId; + } + + public void setSendPersonId(String sendPersonId) { + this.sendPersonId = sendPersonId; + } + + public String getSendPersonName() { + return sendPersonName; + } + + public void setSendPersonName(String sendPersonName) { + this.sendPersonName = sendPersonName; + } + + public LocalDateTime getSendDate() { + return sendDate; + } + + public void setSendDate(LocalDateTime sendDate) { + this.sendDate = sendDate; + } + + @Override + public String toString() { + return "WyRenewMsgRemindLog{" + + "id=" + id + + ", cellId=" + cellId + + ", moneyId=" + moneyId + + ", receivePhone=" + receivePhone + + ", moneyStopDate=" + moneyStopDate + + ", remindDays=" + remindDays + + ", cellName=" + cellName + + ", sendPersonId=" + sendPersonId + + ", sendPersonName=" + sendPersonName + + ", sendDate=" + sendDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" new file mode 100644 index 00000000..537f8f96 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 保安安排 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WySecurityArrange implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 开始日期 + */ + private LocalDateTime startDate; + + /** + * 结束日期 + */ + private LocalDateTime stopDate; + + /** + * 班次 + */ + private String classes; + + /** + * 时段 + */ + private String timeFrame; + + /** + * 地段 + */ + private String district; + + /** + * 值班人员 + */ + private String waterkeeper; + + /** + * 岗位 + */ + private String job; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getClasses() { + return classes; + } + + public void setClasses(String classes) { + this.classes = classes; + } + + public String getTimeFrame() { + return timeFrame; + } + + public void setTimeFrame(String timeFrame) { + this.timeFrame = timeFrame; + } + + public String getDistrict() { + return district; + } + + public void setDistrict(String district) { + this.district = district; + } + + public String getWaterkeeper() { + return waterkeeper; + } + + public void setWaterkeeper(String waterkeeper) { + this.waterkeeper = waterkeeper; + } + + public String getJob() { + return job; + } + + public void setJob(String job) { + this.job = job; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WySecurityArrange{" + + "id=" + id + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", classes=" + classes + + ", timeFrame=" + timeFrame + + ", district=" + district + + ", waterkeeper=" + waterkeeper + + ", job=" + job + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" new file mode 100644 index 00000000..fcc65100 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" @@ -0,0 +1,195 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 客服收银组 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyServiceCashierGroup implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 客服组名称 + */ + private String name; + + /** + * 包含楼宇编码 + */ + private String includeBuildingCode; + + /** + * 包含楼宇名称 + */ + private String includeBuildingName; + + /** + * 包含客服编码 + */ + private String includeServiceCode; + + /** + * 包含客服名称 + */ + private String includeServiceName; + + /** + * 组说明 + */ + private String desc; + + /** + * 所属公司 + */ + private String company; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getIncludeBuildingCode() { + return includeBuildingCode; + } + + public void setIncludeBuildingCode(String includeBuildingCode) { + this.includeBuildingCode = includeBuildingCode; + } + + public String getIncludeBuildingName() { + return includeBuildingName; + } + + public void setIncludeBuildingName(String includeBuildingName) { + this.includeBuildingName = includeBuildingName; + } + + public String getIncludeServiceCode() { + return includeServiceCode; + } + + public void setIncludeServiceCode(String includeServiceCode) { + this.includeServiceCode = includeServiceCode; + } + + public String getIncludeServiceName() { + return includeServiceName; + } + + public void setIncludeServiceName(String includeServiceName) { + this.includeServiceName = includeServiceName; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + @Override + public String toString() { + return "WyServiceCashierGroup{" + + "id=" + id + + ", name=" + name + + ", includeBuildingCode=" + includeBuildingCode + + ", includeBuildingName=" + includeBuildingName + + ", includeServiceCode=" + includeServiceCode + + ", includeServiceName=" + includeServiceName + + ", desc=" + desc + + ", company=" + company + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" new file mode 100644 index 00000000..d35d6215 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 物业接管资料明细 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyTakeoverDataDetail implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 接管资料id + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属接管id + */ + private Integer takeoverId; + + /** + * 资料名称 + */ + private String dataName; + + /** + * 资料份数 + */ + private Integer dataCopies; + + /** + * 资料页数 + */ + private Integer dataPages; + + /** + * 资料分类 + */ + private Long dataType; + + /** + * 档案号 + */ + private String fileNumber; + + /** + * 交出人 + */ + private String handoverPerson; + + /** + * 接收人 + */ + private String receivePerson; + + /** + * 接受日期 + */ + private LocalDateTime receiveDate; + + /** + * 备注 + */ + private String remark; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getTakeoverId() { + return takeoverId; + } + + public void setTakeoverId(Integer takeoverId) { + this.takeoverId = takeoverId; + } + + public String getDataName() { + return dataName; + } + + public void setDataName(String dataName) { + this.dataName = dataName; + } + + public Integer getDataCopies() { + return dataCopies; + } + + public void setDataCopies(Integer dataCopies) { + this.dataCopies = dataCopies; + } + + public Integer getDataPages() { + return dataPages; + } + + public void setDataPages(Integer dataPages) { + this.dataPages = dataPages; + } + + public Long getDataType() { + return dataType; + } + + public void setDataType(Long dataType) { + this.dataType = dataType; + } + + public String getFileNumber() { + return fileNumber; + } + + public void setFileNumber(String fileNumber) { + this.fileNumber = fileNumber; + } + + public String getHandoverPerson() { + return handoverPerson; + } + + public void setHandoverPerson(String handoverPerson) { + this.handoverPerson = handoverPerson; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public String toString() { + return "WyTakeoverDataDetail{" + + "id=" + id + + ", takeoverId=" + takeoverId + + ", dataName=" + dataName + + ", dataCopies=" + dataCopies + + ", dataPages=" + dataPages + + ", dataType=" + dataType + + ", fileNumber=" + fileNumber + + ", handoverPerson=" + handoverPerson + + ", receivePerson=" + receivePerson + + ", receiveDate=" + receiveDate + + ", remark=" + remark + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" new file mode 100644 index 00000000..c17a838e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" @@ -0,0 +1,166 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.io.Serializable; + +/** + *

+ * 植被信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyVegetationInformation implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 植被编号 + */ + @TableId(value = "vegetation_id", type = IdType.AUTO) + private String vegetationId; + + /** + * 植被名称 + */ + private String vegetationName; + + /** + * 种类 + */ + private String vegetationType; + + /** + * 树龄 + */ + private Integer vegetationAge; + + /** + * 数量 + */ + private Integer vegetationNumber; + + /** + * 单位 + */ + private String vegetationUnit; + + /** + * 习性 + */ + private String vegetationHabit; + + /** + * 特点 + */ + private String vegetationFeature; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public String getVegetationId() { + return vegetationId; + } + + public void setVegetationId(String vegetationId) { + this.vegetationId = vegetationId; + } + + public String getVegetationName() { + return vegetationName; + } + + public void setVegetationName(String vegetationName) { + this.vegetationName = vegetationName; + } + + public String getVegetationType() { + return vegetationType; + } + + public void setVegetationType(String vegetationType) { + this.vegetationType = vegetationType; + } + + public Integer getVegetationAge() { + return vegetationAge; + } + + public void setVegetationAge(Integer vegetationAge) { + this.vegetationAge = vegetationAge; + } + + public Integer getVegetationNumber() { + return vegetationNumber; + } + + public void setVegetationNumber(Integer vegetationNumber) { + this.vegetationNumber = vegetationNumber; + } + + public String getVegetationUnit() { + return vegetationUnit; + } + + public void setVegetationUnit(String vegetationUnit) { + this.vegetationUnit = vegetationUnit; + } + + public String getVegetationHabit() { + return vegetationHabit; + } + + public void setVegetationHabit(String vegetationHabit) { + this.vegetationHabit = vegetationHabit; + } + + public String getVegetationFeature() { + return vegetationFeature; + } + + public void setVegetationFeature(String vegetationFeature) { + this.vegetationFeature = vegetationFeature; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyVegetationInformation{" + + "vegetationId=" + vegetationId + + ", vegetationName=" + vegetationName + + ", vegetationType=" + vegetationType + + ", vegetationAge=" + vegetationAge + + ", vegetationNumber=" + vegetationNumber + + ", vegetationUnit=" + vegetationUnit + + ", vegetationHabit=" + vegetationHabit + + ", vegetationFeature=" + vegetationFeature + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" new file mode 100644 index 00000000..14ddcd88 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" @@ -0,0 +1,195 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 来访管理 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class WyVisitManage implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 来访时间 + */ + private LocalDateTime visitDate; + + /** + * 离开时间 + */ + private LocalDateTime leaveDate; + + /** + * 来访人 + */ + private String visitPerson; + + /** + * 身份证号 + */ + private String idCard; + + /** + * 来访人住址 + */ + private String visitAddr; + + /** + * 来访事由 + */ + private String visitReason; + + /** + * 被访人 + */ + private String visitedPerson; + + /** + * 所住地址 + */ + private String visitedReason; + + /** + * 值班人 + */ + private String agent; + + /** + * 备注 + */ + private String remark; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public LocalDateTime getVisitDate() { + return visitDate; + } + + public void setVisitDate(LocalDateTime visitDate) { + this.visitDate = visitDate; + } + + public LocalDateTime getLeaveDate() { + return leaveDate; + } + + public void setLeaveDate(LocalDateTime leaveDate) { + this.leaveDate = leaveDate; + } + + public String getVisitPerson() { + return visitPerson; + } + + public void setVisitPerson(String visitPerson) { + this.visitPerson = visitPerson; + } + + public String getIdCard() { + return idCard; + } + + public void setIdCard(String idCard) { + this.idCard = idCard; + } + + public String getVisitAddr() { + return visitAddr; + } + + public void setVisitAddr(String visitAddr) { + this.visitAddr = visitAddr; + } + + public String getVisitReason() { + return visitReason; + } + + public void setVisitReason(String visitReason) { + this.visitReason = visitReason; + } + + public String getVisitedPerson() { + return visitedPerson; + } + + public void setVisitedPerson(String visitedPerson) { + this.visitedPerson = visitedPerson; + } + + public String getVisitedReason() { + return visitedReason; + } + + public void setVisitedReason(String visitedReason) { + this.visitedReason = visitedReason; + } + + public String getAgent() { + return agent; + } + + public void setAgent(String agent) { + this.agent = agent; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "WyVisitManage{" + + "id=" + id + + ", visitDate=" + visitDate + + ", leaveDate=" + leaveDate + + ", visitPerson=" + visitPerson + + ", idCard=" + idCard + + ", visitAddr=" + visitAddr + + ", visitReason=" + visitReason + + ", visitedPerson=" + visitedPerson + + ", visitedReason=" + visitedReason + + ", agent=" + agent + + ", remark=" + remark + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" new file mode 100644 index 00000000..b737e8d5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" @@ -0,0 +1,433 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主装修 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhConstomerDecorate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private String cellId; + + /** + * 申请人 + */ + private String proposer; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 申请日期 + */ + private LocalDateTime proposerDate; + + /** + * 装修内容 + */ + private String decorateContent; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 装修保证金 + */ + private Double decorateEnsureMoney; + + /** + * 审批日期 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 负责人电话 + */ + private String leaderPhone; + + /** + * 施工单位 + */ + private String executeCompany; + + /** + * 施工开始日期 + */ + private LocalDateTime executeStartDate; + + /** + * 负责人 + */ + private String leader; + + /** + * 验收人 + */ + private String checkedPerson; + + /** + * 施工截止日期 + */ + private LocalDateTime executeStopDate; + + /** + * 验收意见 + */ + private String checkedAdvice; + + /** + * 验收日期 + */ + private LocalDateTime checkedDate; + + /** + * 备注 + */ + private String remark; + + /** + * 状态 + */ + private String status; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 标识 + */ + private String identify; + + /** + * 确认人 + */ + private String confirmPerson; + + /** + * 确认时间 + */ + private LocalDateTime confirmDate; + + /** + * 装修附件 + */ + private String decorateAttach; + + /** + * 违约金 + */ + private Double againstMoney; + + /** + * 作废人 + */ + private String invalidPerson; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCellId() { + return cellId; + } + + public void setCellId(String cellId) { + this.cellId = cellId; + } + + public String getProposer() { + return proposer; + } + + public void setProposer(String proposer) { + this.proposer = proposer; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public LocalDateTime getProposerDate() { + return proposerDate; + } + + public void setProposerDate(LocalDateTime proposerDate) { + this.proposerDate = proposerDate; + } + + public String getDecorateContent() { + return decorateContent; + } + + public void setDecorateContent(String decorateContent) { + this.decorateContent = decorateContent; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public Double getDecorateEnsureMoney() { + return decorateEnsureMoney; + } + + public void setDecorateEnsureMoney(Double decorateEnsureMoney) { + this.decorateEnsureMoney = decorateEnsureMoney; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getLeaderPhone() { + return leaderPhone; + } + + public void setLeaderPhone(String leaderPhone) { + this.leaderPhone = leaderPhone; + } + + public String getExecuteCompany() { + return executeCompany; + } + + public void setExecuteCompany(String executeCompany) { + this.executeCompany = executeCompany; + } + + public LocalDateTime getExecuteStartDate() { + return executeStartDate; + } + + public void setExecuteStartDate(LocalDateTime executeStartDate) { + this.executeStartDate = executeStartDate; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getCheckedPerson() { + return checkedPerson; + } + + public void setCheckedPerson(String checkedPerson) { + this.checkedPerson = checkedPerson; + } + + public LocalDateTime getExecuteStopDate() { + return executeStopDate; + } + + public void setExecuteStopDate(LocalDateTime executeStopDate) { + this.executeStopDate = executeStopDate; + } + + public String getCheckedAdvice() { + return checkedAdvice; + } + + public void setCheckedAdvice(String checkedAdvice) { + this.checkedAdvice = checkedAdvice; + } + + public LocalDateTime getCheckedDate() { + return checkedDate; + } + + public void setCheckedDate(LocalDateTime checkedDate) { + this.checkedDate = checkedDate; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getIdentify() { + return identify; + } + + public void setIdentify(String identify) { + this.identify = identify; + } + + public String getConfirmPerson() { + return confirmPerson; + } + + public void setConfirmPerson(String confirmPerson) { + this.confirmPerson = confirmPerson; + } + + public LocalDateTime getConfirmDate() { + return confirmDate; + } + + public void setConfirmDate(LocalDateTime confirmDate) { + this.confirmDate = confirmDate; + } + + public String getDecorateAttach() { + return decorateAttach; + } + + public void setDecorateAttach(String decorateAttach) { + this.decorateAttach = decorateAttach; + } + + public Double getAgainstMoney() { + return againstMoney; + } + + public void setAgainstMoney(Double againstMoney) { + this.againstMoney = againstMoney; + } + + public String getInvalidPerson() { + return invalidPerson; + } + + public void setInvalidPerson(String invalidPerson) { + this.invalidPerson = invalidPerson; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + @Override + public String toString() { + return "ZhConstomerDecorate{" + + "id=" + id + + ", cellId=" + cellId + + ", proposer=" + proposer + + ", phoneNumber=" + phoneNumber + + ", proposerDate=" + proposerDate + + ", decorateContent=" + decorateContent + + ", checkPerson=" + checkPerson + + ", decorateEnsureMoney=" + decorateEnsureMoney + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", leaderPhone=" + leaderPhone + + ", executeCompany=" + executeCompany + + ", executeStartDate=" + executeStartDate + + ", leader=" + leader + + ", checkedPerson=" + checkedPerson + + ", executeStopDate=" + executeStopDate + + ", checkedAdvice=" + checkedAdvice + + ", checkedDate=" + checkedDate + + ", remark=" + remark + + ", status=" + status + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", identify=" + identify + + ", confirmPerson=" + confirmPerson + + ", confirmDate=" + confirmDate + + ", decorateAttach=" + decorateAttach + + ", againstMoney=" + againstMoney + + ", invalidPerson=" + invalidPerson + + ", invalidDate=" + invalidDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" new file mode 100644 index 00000000..41d71f84 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主投诉 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhConsumerComplain implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private String cellId; + + /** + * 投诉人 + */ + private String complainPerson; + + /** + * 投诉电话 + */ + private String complainPhone; + + /** + * 投诉日期 + */ + private LocalDateTime complainDate; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 接待人 + */ + private String receptionPerson; + + /** + * 投诉类别 + */ + private String complainType; + + /** + * 状态 + */ + private String status; + + /** + * 开始受理人 + */ + private String startAcceptPerson; + + /** + * 开始受理时间 + */ + private LocalDateTime startAcceptDate; + + /** + * 受理结果 + */ + private String acceptResult; + + /** + * 受理完成人 + */ + private String acceptFinishPerson; + + /** + * 受理完成时间 + */ + private LocalDateTime acceptFinishDate; + + /** + * 数据来源 + */ + private String datasource; + + /** + * 参考附件 + */ + private String referAttach; + + /** + * 回访人 + */ + private String returnVisitPerson; + + /** + * 回访时间 + */ + private LocalDateTime returnVisitDate; + + /** + * 是否满意 + */ + private String isSatisfy; + + /** + * 业主评价 + */ + private String customerEvaluate; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCellId() { + return cellId; + } + + public void setCellId(String cellId) { + this.cellId = cellId; + } + + public String getComplainPerson() { + return complainPerson; + } + + public void setComplainPerson(String complainPerson) { + this.complainPerson = complainPerson; + } + + public String getComplainPhone() { + return complainPhone; + } + + public void setComplainPhone(String complainPhone) { + this.complainPhone = complainPhone; + } + + public LocalDateTime getComplainDate() { + return complainDate; + } + + public void setComplainDate(LocalDateTime complainDate) { + this.complainDate = complainDate; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getReceptionPerson() { + return receptionPerson; + } + + public void setReceptionPerson(String receptionPerson) { + this.receptionPerson = receptionPerson; + } + + public String getComplainType() { + return complainType; + } + + public void setComplainType(String complainType) { + this.complainType = complainType; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getStartAcceptPerson() { + return startAcceptPerson; + } + + public void setStartAcceptPerson(String startAcceptPerson) { + this.startAcceptPerson = startAcceptPerson; + } + + public LocalDateTime getStartAcceptDate() { + return startAcceptDate; + } + + public void setStartAcceptDate(LocalDateTime startAcceptDate) { + this.startAcceptDate = startAcceptDate; + } + + public String getAcceptResult() { + return acceptResult; + } + + public void setAcceptResult(String acceptResult) { + this.acceptResult = acceptResult; + } + + public String getAcceptFinishPerson() { + return acceptFinishPerson; + } + + public void setAcceptFinishPerson(String acceptFinishPerson) { + this.acceptFinishPerson = acceptFinishPerson; + } + + public LocalDateTime getAcceptFinishDate() { + return acceptFinishDate; + } + + public void setAcceptFinishDate(LocalDateTime acceptFinishDate) { + this.acceptFinishDate = acceptFinishDate; + } + + public String getDatasource() { + return datasource; + } + + public void setDatasource(String datasource) { + this.datasource = datasource; + } + + public String getReferAttach() { + return referAttach; + } + + public void setReferAttach(String referAttach) { + this.referAttach = referAttach; + } + + public String getReturnVisitPerson() { + return returnVisitPerson; + } + + public void setReturnVisitPerson(String returnVisitPerson) { + this.returnVisitPerson = returnVisitPerson; + } + + public LocalDateTime getReturnVisitDate() { + return returnVisitDate; + } + + public void setReturnVisitDate(LocalDateTime returnVisitDate) { + this.returnVisitDate = returnVisitDate; + } + + public String getIsSatisfy() { + return isSatisfy; + } + + public void setIsSatisfy(String isSatisfy) { + this.isSatisfy = isSatisfy; + } + + public String getCustomerEvaluate() { + return customerEvaluate; + } + + public void setCustomerEvaluate(String customerEvaluate) { + this.customerEvaluate = customerEvaluate; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + @Override + public String toString() { + return "ZhConsumerComplain{" + + "id=" + id + + ", cellId=" + cellId + + ", complainPerson=" + complainPerson + + ", complainPhone=" + complainPhone + + ", complainDate=" + complainDate + + ", phoneNumber=" + phoneNumber + + ", receptionPerson=" + receptionPerson + + ", complainType=" + complainType + + ", status=" + status + + ", startAcceptPerson=" + startAcceptPerson + + ", startAcceptDate=" + startAcceptDate + + ", acceptResult=" + acceptResult + + ", acceptFinishPerson=" + acceptFinishPerson + + ", acceptFinishDate=" + acceptFinishDate + + ", datasource=" + datasource + + ", referAttach=" + referAttach + + ", returnVisitPerson=" + returnVisitPerson + + ", returnVisitDate=" + returnVisitDate + + ", isSatisfy=" + isSatisfy + + ", customerEvaluate=" + customerEvaluate + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" new file mode 100644 index 00000000..335ee659 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主服务_办理结果 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCsHandleResult implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属服务单id + */ + private Integer serviceId; + + /** + * 办理人id + */ + private String transactorId; + + /** + * 办理人名称 + */ + private String transactorName; + + /** + * 是否负责人 + */ + private String isLeader; + + /** + * 相关单位 + */ + private String relationCompany; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 开始办理时间 + */ + private LocalDateTime handleStartDate; + + /** + * 完成办理时间 + */ + private LocalDateTime handleStopDate; + + /** + * 办理结果 + */ + private String handleResult; + + /** + * 办理完成附件 + */ + private String handleFinishAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getServiceId() { + return serviceId; + } + + public void setServiceId(Integer serviceId) { + this.serviceId = serviceId; + } + + public String getTransactorId() { + return transactorId; + } + + public void setTransactorId(String transactorId) { + this.transactorId = transactorId; + } + + public String getTransactorName() { + return transactorName; + } + + public void setTransactorName(String transactorName) { + this.transactorName = transactorName; + } + + public String getIsLeader() { + return isLeader; + } + + public void setIsLeader(String isLeader) { + this.isLeader = isLeader; + } + + public String getRelationCompany() { + return relationCompany; + } + + public void setRelationCompany(String relationCompany) { + this.relationCompany = relationCompany; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public LocalDateTime getHandleStartDate() { + return handleStartDate; + } + + public void setHandleStartDate(LocalDateTime handleStartDate) { + this.handleStartDate = handleStartDate; + } + + public LocalDateTime getHandleStopDate() { + return handleStopDate; + } + + public void setHandleStopDate(LocalDateTime handleStopDate) { + this.handleStopDate = handleStopDate; + } + + public String getHandleResult() { + return handleResult; + } + + public void setHandleResult(String handleResult) { + this.handleResult = handleResult; + } + + public String getHandleFinishAttach() { + return handleFinishAttach; + } + + public void setHandleFinishAttach(String handleFinishAttach) { + this.handleFinishAttach = handleFinishAttach; + } + + @Override + public String toString() { + return "ZhCsHandleResult{" + + "id=" + id + + ", serviceId=" + serviceId + + ", transactorId=" + transactorId + + ", transactorName=" + transactorName + + ", isLeader=" + isLeader + + ", relationCompany=" + relationCompany + + ", phoneNumber=" + phoneNumber + + ", handleStartDate=" + handleStartDate + + ", handleStopDate=" + handleStopDate + + ", handleResult=" + handleResult + + ", handleFinishAttach=" + handleFinishAttach + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" new file mode 100644 index 00000000..1e2facea --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主服务_办理进度 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCsHandleSpeed implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 服务单id + */ + private Integer serviceId; + + /** + * 办理人 + */ + private String transactorName; + + /** + * 办理时间 + */ + private LocalDateTime transactorDate; + + /** + * 办理内容 + */ + private String transactorContent; + + /** + * 记录人id + */ + private String recorderId; + + /** + * 记录人名称 + */ + private String recorderName; + + /** + * 记录时间 + */ + private LocalDateTime recorderDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getServiceId() { + return serviceId; + } + + public void setServiceId(Integer serviceId) { + this.serviceId = serviceId; + } + + public String getTransactorName() { + return transactorName; + } + + public void setTransactorName(String transactorName) { + this.transactorName = transactorName; + } + + public LocalDateTime getTransactorDate() { + return transactorDate; + } + + public void setTransactorDate(LocalDateTime transactorDate) { + this.transactorDate = transactorDate; + } + + public String getTransactorContent() { + return transactorContent; + } + + public void setTransactorContent(String transactorContent) { + this.transactorContent = transactorContent; + } + + public String getRecorderId() { + return recorderId; + } + + public void setRecorderId(String recorderId) { + this.recorderId = recorderId; + } + + public String getRecorderName() { + return recorderName; + } + + public void setRecorderName(String recorderName) { + this.recorderName = recorderName; + } + + public LocalDateTime getRecorderDate() { + return recorderDate; + } + + public void setRecorderDate(LocalDateTime recorderDate) { + this.recorderDate = recorderDate; + } + + @Override + public String toString() { + return "ZhCsHandleSpeed{" + + "id=" + id + + ", serviceId=" + serviceId + + ", transactorName=" + transactorName + + ", transactorDate=" + transactorDate + + ", transactorContent=" + transactorContent + + ", recorderId=" + recorderId + + ", recorderName=" + recorderName + + ", recorderDate=" + recorderDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" new file mode 100644 index 00000000..ae9f7824 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" @@ -0,0 +1,489 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主信息表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomer implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 业主编码 + */ + private String customerCode; + + /** + * 业主密码 + */ + private String customerPwd; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 业主生日 + */ + private String customerBirthday; + + /** + * 业主性别 + */ + private String customerGender; + + /** + * 开户行 + */ + private String openBank; + + /** + * 国籍 + */ + private String nationality; + + /** + * 银行账号 + */ + private String bankAccount; + + /** + * 学历 + */ + private String education; + + /** + * 证件号码 + */ + private String certificateNumber; + + /** + * 证件类型 + */ + private String certificateType; + + /** + * 工作单位 + */ + private String workPlace; + + /** + * 职务 + */ + private String customerDuty; + + /** + * 所在派出所 + */ + private String police; + + /** + * 民族 + */ + private String nation; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 籍贯 + */ + private String nativePlace; + + /** + * 联系地址 + */ + private String address; + + /** + * 邮编 + */ + private String postCode; + + /** + * 紧急联系人姓名 + */ + private String urgencyUserName; + + /** + * 紧急联系人电话 + */ + private String urgencyUserPhone; + + /** + * 紧急联系人地址 + */ + private String urgencyUserAddress; + + /** + * 业主状态 + */ + private String customerStatus; + + /** + * 业主类型 + */ + private String customerType; + + /** + * 照片 + */ + private String picture; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 所属公司 + */ + private String company; + + /** + * 是否银行代扣 + */ + private String isBankWithhold; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCustomerCode() { + return customerCode; + } + + public void setCustomerCode(String customerCode) { + this.customerCode = customerCode; + } + + public String getCustomerPwd() { + return customerPwd; + } + + public void setCustomerPwd(String customerPwd) { + this.customerPwd = customerPwd; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public String getCustomerBirthday() { + return customerBirthday; + } + + public void setCustomerBirthday(String customerBirthday) { + this.customerBirthday = customerBirthday; + } + + public String getCustomerGender() { + return customerGender; + } + + public void setCustomerGender(String customerGender) { + this.customerGender = customerGender; + } + + public String getOpenBank() { + return openBank; + } + + public void setOpenBank(String openBank) { + this.openBank = openBank; + } + + public String getNationality() { + return nationality; + } + + public void setNationality(String nationality) { + this.nationality = nationality; + } + + public String getBankAccount() { + return bankAccount; + } + + public void setBankAccount(String bankAccount) { + this.bankAccount = bankAccount; + } + + public String getEducation() { + return education; + } + + public void setEducation(String education) { + this.education = education; + } + + public String getCertificateNumber() { + return certificateNumber; + } + + public void setCertificateNumber(String certificateNumber) { + this.certificateNumber = certificateNumber; + } + + public String getCertificateType() { + return certificateType; + } + + public void setCertificateType(String certificateType) { + this.certificateType = certificateType; + } + + public String getWorkPlace() { + return workPlace; + } + + public void setWorkPlace(String workPlace) { + this.workPlace = workPlace; + } + + public String getCustomerDuty() { + return customerDuty; + } + + public void setCustomerDuty(String customerDuty) { + this.customerDuty = customerDuty; + } + + public String getPolice() { + return police; + } + + public void setPolice(String police) { + this.police = police; + } + + public String getNation() { + return nation; + } + + public void setNation(String nation) { + this.nation = nation; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getNativePlace() { + return nativePlace; + } + + public void setNativePlace(String nativePlace) { + this.nativePlace = nativePlace; + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address; + } + + public String getPostCode() { + return postCode; + } + + public void setPostCode(String postCode) { + this.postCode = postCode; + } + + public String getUrgencyUserName() { + return urgencyUserName; + } + + public void setUrgencyUserName(String urgencyUserName) { + this.urgencyUserName = urgencyUserName; + } + + public String getUrgencyUserPhone() { + return urgencyUserPhone; + } + + public void setUrgencyUserPhone(String urgencyUserPhone) { + this.urgencyUserPhone = urgencyUserPhone; + } + + public String getUrgencyUserAddress() { + return urgencyUserAddress; + } + + public void setUrgencyUserAddress(String urgencyUserAddress) { + this.urgencyUserAddress = urgencyUserAddress; + } + + public String getCustomerStatus() { + return customerStatus; + } + + public void setCustomerStatus(String customerStatus) { + this.customerStatus = customerStatus; + } + + public String getCustomerType() { + return customerType; + } + + public void setCustomerType(String customerType) { + this.customerType = customerType; + } + + public String getPicture() { + return picture; + } + + public void setPicture(String picture) { + this.picture = picture; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getIsBankWithhold() { + return isBankWithhold; + } + + public void setIsBankWithhold(String isBankWithhold) { + this.isBankWithhold = isBankWithhold; + } + + @Override + public String toString() { + return "ZhCustomer{" + + "id=" + id + + ", customerCode=" + customerCode + + ", customerPwd=" + customerPwd + + ", customerName=" + customerName + + ", customerBirthday=" + customerBirthday + + ", customerGender=" + customerGender + + ", openBank=" + openBank + + ", nationality=" + nationality + + ", bankAccount=" + bankAccount + + ", education=" + education + + ", certificateNumber=" + certificateNumber + + ", certificateType=" + certificateType + + ", workPlace=" + workPlace + + ", customerDuty=" + customerDuty + + ", police=" + police + + ", nation=" + nation + + ", phoneNumber=" + phoneNumber + + ", nativePlace=" + nativePlace + + ", address=" + address + + ", postCode=" + postCode + + ", urgencyUserName=" + urgencyUserName + + ", urgencyUserPhone=" + urgencyUserPhone + + ", urgencyUserAddress=" + urgencyUserAddress + + ", customerStatus=" + customerStatus + + ", customerType=" + customerType + + ", picture=" + picture + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", company=" + company + + ", isBankWithhold=" + isBankWithhold + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" new file mode 100644 index 00000000..a668aa55 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" @@ -0,0 +1,405 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主请修 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerAskFix implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编码 + */ + private String cellId; + + /** + * 申请人 + */ + private String proposer; + + /** + * 申请时间 + */ + private LocalDateTime proposerDate; + + /** + * 请修内容 + */ + private String askFixContent; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 修理费用 + */ + private Double fixMoney; + + /** + * 审批日期 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 负责人电话 + */ + private String leaderPhone; + + /** + * 施工单位 + */ + private String executeCompany; + + /** + * 施工开始日期 + */ + private LocalDateTime executeStartDate; + + /** + * 负责人 + */ + private String leader; + + /** + * 验收人 + */ + private String checkedPerson; + + /** + * 施工结束日期 + */ + private LocalDateTime executeStopDate; + + /** + * 验收日期 + */ + private LocalDateTime checkedDate; + + /** + * 验收意见 + */ + private String checkedAdvice; + + /** + * 备注 + */ + private String remark; + + /** + * 状态 + */ + private String status; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 标识 + */ + private String identify; + + /** + * 确认人 + */ + private String confirmPerson; + + /** + * 确认时间 + */ + private LocalDateTime confirmDate; + + /** + * 验收附件 + */ + private String checkedAttach; + + /** + * 参考附件 + */ + private String referAttach; + + /** + * 联系电话 + */ + private String phoneNumber; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCellId() { + return cellId; + } + + public void setCellId(String cellId) { + this.cellId = cellId; + } + + public String getProposer() { + return proposer; + } + + public void setProposer(String proposer) { + this.proposer = proposer; + } + + public LocalDateTime getProposerDate() { + return proposerDate; + } + + public void setProposerDate(LocalDateTime proposerDate) { + this.proposerDate = proposerDate; + } + + public String getAskFixContent() { + return askFixContent; + } + + public void setAskFixContent(String askFixContent) { + this.askFixContent = askFixContent; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public Double getFixMoney() { + return fixMoney; + } + + public void setFixMoney(Double fixMoney) { + this.fixMoney = fixMoney; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public String getLeaderPhone() { + return leaderPhone; + } + + public void setLeaderPhone(String leaderPhone) { + this.leaderPhone = leaderPhone; + } + + public String getExecuteCompany() { + return executeCompany; + } + + public void setExecuteCompany(String executeCompany) { + this.executeCompany = executeCompany; + } + + public LocalDateTime getExecuteStartDate() { + return executeStartDate; + } + + public void setExecuteStartDate(LocalDateTime executeStartDate) { + this.executeStartDate = executeStartDate; + } + + public String getLeader() { + return leader; + } + + public void setLeader(String leader) { + this.leader = leader; + } + + public String getCheckedPerson() { + return checkedPerson; + } + + public void setCheckedPerson(String checkedPerson) { + this.checkedPerson = checkedPerson; + } + + public LocalDateTime getExecuteStopDate() { + return executeStopDate; + } + + public void setExecuteStopDate(LocalDateTime executeStopDate) { + this.executeStopDate = executeStopDate; + } + + public LocalDateTime getCheckedDate() { + return checkedDate; + } + + public void setCheckedDate(LocalDateTime checkedDate) { + this.checkedDate = checkedDate; + } + + public String getCheckedAdvice() { + return checkedAdvice; + } + + public void setCheckedAdvice(String checkedAdvice) { + this.checkedAdvice = checkedAdvice; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getIdentify() { + return identify; + } + + public void setIdentify(String identify) { + this.identify = identify; + } + + public String getConfirmPerson() { + return confirmPerson; + } + + public void setConfirmPerson(String confirmPerson) { + this.confirmPerson = confirmPerson; + } + + public LocalDateTime getConfirmDate() { + return confirmDate; + } + + public void setConfirmDate(LocalDateTime confirmDate) { + this.confirmDate = confirmDate; + } + + public String getCheckedAttach() { + return checkedAttach; + } + + public void setCheckedAttach(String checkedAttach) { + this.checkedAttach = checkedAttach; + } + + public String getReferAttach() { + return referAttach; + } + + public void setReferAttach(String referAttach) { + this.referAttach = referAttach; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + @Override + public String toString() { + return "ZhCustomerAskFix{" + + "id=" + id + + ", cellId=" + cellId + + ", proposer=" + proposer + + ", proposerDate=" + proposerDate + + ", askFixContent=" + askFixContent + + ", checkPerson=" + checkPerson + + ", fixMoney=" + fixMoney + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", leaderPhone=" + leaderPhone + + ", executeCompany=" + executeCompany + + ", executeStartDate=" + executeStartDate + + ", leader=" + leader + + ", checkedPerson=" + checkedPerson + + ", executeStopDate=" + executeStopDate + + ", checkedDate=" + checkedDate + + ", checkedAdvice=" + checkedAdvice + + ", remark=" + remark + + ", status=" + status + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", identify=" + identify + + ", confirmPerson=" + confirmPerson + + ", confirmDate=" + confirmDate + + ", checkedAttach=" + checkedAttach + + ", referAttach=" + referAttach + + ", phoneNumber=" + phoneNumber + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" new file mode 100644 index 00000000..536ad65c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" @@ -0,0 +1,251 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主验房 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerCheck implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private String cellId; + + /** + * 验收日期 + */ + private LocalDateTime checkDate; + + /** + * 确认日期 + */ + private LocalDateTime confirmDate; + + /** + * 验收项目编号 + */ + private Long checkItemId; + + /** + * 验收项目名称 + */ + private String checkItemName; + + /** + * 是否合格 + */ + private String isPass; + + /** + * 业主意见 + */ + private String consumerAdvice; + + /** + * 房管员意见 + */ + private String houseKeeperAdvice; + + /** + * 验收人员 + */ + private String checkPerson; + + /** + * 备注 + */ + private String remark; + + /** + * 录入人 + */ + private String inputPerson; + + /** + * 录入时间 + */ + private LocalDateTime inputDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 验房类型 + */ + private String checkHouseType; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getCellId() { + return cellId; + } + + public void setCellId(String cellId) { + this.cellId = cellId; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public LocalDateTime getConfirmDate() { + return confirmDate; + } + + public void setConfirmDate(LocalDateTime confirmDate) { + this.confirmDate = confirmDate; + } + + public Long getCheckItemId() { + return checkItemId; + } + + public void setCheckItemId(Long checkItemId) { + this.checkItemId = checkItemId; + } + + public String getCheckItemName() { + return checkItemName; + } + + public void setCheckItemName(String checkItemName) { + this.checkItemName = checkItemName; + } + + public String getIsPass() { + return isPass; + } + + public void setIsPass(String isPass) { + this.isPass = isPass; + } + + public String getConsumerAdvice() { + return consumerAdvice; + } + + public void setConsumerAdvice(String consumerAdvice) { + this.consumerAdvice = consumerAdvice; + } + + public String getHouseKeeperAdvice() { + return houseKeeperAdvice; + } + + public void setHouseKeeperAdvice(String houseKeeperAdvice) { + this.houseKeeperAdvice = houseKeeperAdvice; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getInputPerson() { + return inputPerson; + } + + public void setInputPerson(String inputPerson) { + this.inputPerson = inputPerson; + } + + public LocalDateTime getInputDate() { + return inputDate; + } + + public void setInputDate(LocalDateTime inputDate) { + this.inputDate = inputDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCheckHouseType() { + return checkHouseType; + } + + public void setCheckHouseType(String checkHouseType) { + this.checkHouseType = checkHouseType; + } + + @Override + public String toString() { + return "ZhCustomerCheck{" + + "id=" + id + + ", cellId=" + cellId + + ", checkDate=" + checkDate + + ", confirmDate=" + confirmDate + + ", checkItemId=" + checkItemId + + ", checkItemName=" + checkItemName + + ", isPass=" + isPass + + ", consumerAdvice=" + consumerAdvice + + ", houseKeeperAdvice=" + houseKeeperAdvice + + ", checkPerson=" + checkPerson + + ", remark=" + remark + + ", inputPerson=" + inputPerson + + ", inputDate=" + inputDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", checkHouseType=" + checkHouseType + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" new file mode 100644 index 00000000..f81e09c1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主房产对照表 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerEstate implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 业主id + */ + private Integer customerId; + + /** + * 业主姓名 + */ + private String customerName; + + /** + * 房间id + */ + private Integer cellId; + + /** + * 使用状态 + */ + private String useStatus; + + /** + * 入住日期 + */ + private LocalDateTime liveDate; + + /** + * 装修时间 + */ + private LocalDateTime decorateDate; + + /** + * 认购证号 + */ + private String subscriptionCardNumber; + + /** + * 房产证号 + */ + private String houseCode; + + /** + * 是否缴纳维修金 + */ + private String isPayDecorateMoney; + + /** + * 预缴维修金 + */ + private Double prePayDecorateMoney; + + /** + * 备注 + */ + private String remark; + + /** + * 排序号 + */ + private Integer orderid; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCustomerId() { + return customerId; + } + + public void setCustomerId(Integer customerId) { + this.customerId = customerId; + } + + public String getCustomerName() { + return customerName; + } + + public void setCustomerName(String customerName) { + this.customerName = customerName; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getUseStatus() { + return useStatus; + } + + public void setUseStatus(String useStatus) { + this.useStatus = useStatus; + } + + public LocalDateTime getLiveDate() { + return liveDate; + } + + public void setLiveDate(LocalDateTime liveDate) { + this.liveDate = liveDate; + } + + public LocalDateTime getDecorateDate() { + return decorateDate; + } + + public void setDecorateDate(LocalDateTime decorateDate) { + this.decorateDate = decorateDate; + } + + public String getSubscriptionCardNumber() { + return subscriptionCardNumber; + } + + public void setSubscriptionCardNumber(String subscriptionCardNumber) { + this.subscriptionCardNumber = subscriptionCardNumber; + } + + public String getHouseCode() { + return houseCode; + } + + public void setHouseCode(String houseCode) { + this.houseCode = houseCode; + } + + public String getIsPayDecorateMoney() { + return isPayDecorateMoney; + } + + public void setIsPayDecorateMoney(String isPayDecorateMoney) { + this.isPayDecorateMoney = isPayDecorateMoney; + } + + public Double getPrePayDecorateMoney() { + return prePayDecorateMoney; + } + + public void setPrePayDecorateMoney(Double prePayDecorateMoney) { + this.prePayDecorateMoney = prePayDecorateMoney; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public Integer getOrderid() { + return orderid; + } + + public void setOrderid(Integer orderid) { + this.orderid = orderid; + } + + @Override + public String toString() { + return "ZhCustomerEstate{" + + "id=" + id + + ", customerId=" + customerId + + ", customerName=" + customerName + + ", cellId=" + cellId + + ", useStatus=" + useStatus + + ", liveDate=" + liveDate + + ", decorateDate=" + decorateDate + + ", subscriptionCardNumber=" + subscriptionCardNumber + + ", houseCode=" + houseCode + + ", isPayDecorateMoney=" + isPayDecorateMoney + + ", prePayDecorateMoney=" + prePayDecorateMoney + + ", remark=" + remark + + ", orderid=" + orderid + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" new file mode 100644 index 00000000..c012b4d8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" @@ -0,0 +1,209 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主成员 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerMembers implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属业主编码 + */ + private Integer belongCustomerId; + + /** + * 姓名 + */ + private String name; + + /** + * 出生日期 + */ + private LocalDateTime birdate; + + /** + * 性别 + */ + private String gender; + + /** + * 与业主关系 + */ + private String ration; + + /** + * 证件类型 + */ + private String certificateType; + + /** + * 证件号码 + */ + private String certificateNumber; + + /** + * 学历 + */ + private String education; + + /** + * 备注 + */ + private String remark; + + /** + * 工作单位 + */ + private String workPlace; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 照片 + */ + private String picture; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getBelongCustomerId() { + return belongCustomerId; + } + + public void setBelongCustomerId(Integer belongCustomerId) { + this.belongCustomerId = belongCustomerId; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public LocalDateTime getBirdate() { + return birdate; + } + + public void setBirdate(LocalDateTime birdate) { + this.birdate = birdate; + } + + public String getGender() { + return gender; + } + + public void setGender(String gender) { + this.gender = gender; + } + + public String getRation() { + return ration; + } + + public void setRation(String ration) { + this.ration = ration; + } + + public String getCertificateType() { + return certificateType; + } + + public void setCertificateType(String certificateType) { + this.certificateType = certificateType; + } + + public String getCertificateNumber() { + return certificateNumber; + } + + public void setCertificateNumber(String certificateNumber) { + this.certificateNumber = certificateNumber; + } + + public String getEducation() { + return education; + } + + public void setEducation(String education) { + this.education = education; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getWorkPlace() { + return workPlace; + } + + public void setWorkPlace(String workPlace) { + this.workPlace = workPlace; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getPicture() { + return picture; + } + + public void setPicture(String picture) { + this.picture = picture; + } + + @Override + public String toString() { + return "ZhCustomerMembers{" + + "id=" + id + + ", belongCustomerId=" + belongCustomerId + + ", name=" + name + + ", birdate=" + birdate + + ", gender=" + gender + + ", ration=" + ration + + ", certificateType=" + certificateType + + ", certificateNumber=" + certificateNumber + + ", education=" + education + + ", remark=" + remark + + ", workPlace=" + workPlace + + ", phoneNumber=" + phoneNumber + + ", picture=" + picture + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" new file mode 100644 index 00000000..dcee5410 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" @@ -0,0 +1,307 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主服务 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerService implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 房间编号 + */ + private Integer cellId; + + /** + * 申请人姓名 + */ + private String proposer; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 诉求时间 + */ + private LocalDateTime appealDate; + + /** + * 诉求事项 + */ + private String appealEvent; + + /** + * 状态 + */ + private String status; + + /** + * 服务类型 + */ + private Long serviceType; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 标识 + */ + private String identify; + + /** + * 审批人 + */ + private String checkPerson; + + /** + * 审批时间 + */ + private LocalDateTime checkDate; + + /** + * 审批意见 + */ + private String checkAdvice; + + /** + * 服务费用 + */ + private Double serviceMoney; + + /** + * 回访人 + */ + private String returnVisitPerson; + + /** + * 回访时间 + */ + private LocalDateTime returnVisitDate; + + /** + * 是否满意 + */ + private String isSatisfy; + + /** + * 业主评价 + */ + private String customerEvaluate; + + /** + * 参考附件 + */ + private String referAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCellId() { + return cellId; + } + + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + public String getProposer() { + return proposer; + } + + public void setProposer(String proposer) { + this.proposer = proposer; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public LocalDateTime getAppealDate() { + return appealDate; + } + + public void setAppealDate(LocalDateTime appealDate) { + this.appealDate = appealDate; + } + + public String getAppealEvent() { + return appealEvent; + } + + public void setAppealEvent(String appealEvent) { + this.appealEvent = appealEvent; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public Long getServiceType() { + return serviceType; + } + + public void setServiceType(Long serviceType) { + this.serviceType = serviceType; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getIdentify() { + return identify; + } + + public void setIdentify(String identify) { + this.identify = identify; + } + + public String getCheckPerson() { + return checkPerson; + } + + public void setCheckPerson(String checkPerson) { + this.checkPerson = checkPerson; + } + + public LocalDateTime getCheckDate() { + return checkDate; + } + + public void setCheckDate(LocalDateTime checkDate) { + this.checkDate = checkDate; + } + + public String getCheckAdvice() { + return checkAdvice; + } + + public void setCheckAdvice(String checkAdvice) { + this.checkAdvice = checkAdvice; + } + + public Double getServiceMoney() { + return serviceMoney; + } + + public void setServiceMoney(Double serviceMoney) { + this.serviceMoney = serviceMoney; + } + + public String getReturnVisitPerson() { + return returnVisitPerson; + } + + public void setReturnVisitPerson(String returnVisitPerson) { + this.returnVisitPerson = returnVisitPerson; + } + + public LocalDateTime getReturnVisitDate() { + return returnVisitDate; + } + + public void setReturnVisitDate(LocalDateTime returnVisitDate) { + this.returnVisitDate = returnVisitDate; + } + + public String getIsSatisfy() { + return isSatisfy; + } + + public void setIsSatisfy(String isSatisfy) { + this.isSatisfy = isSatisfy; + } + + public String getCustomerEvaluate() { + return customerEvaluate; + } + + public void setCustomerEvaluate(String customerEvaluate) { + this.customerEvaluate = customerEvaluate; + } + + public String getReferAttach() { + return referAttach; + } + + public void setReferAttach(String referAttach) { + this.referAttach = referAttach; + } + + @Override + public String toString() { + return "ZhCustomerService{" + + "id=" + id + + ", cellId=" + cellId + + ", proposer=" + proposer + + ", phoneNumber=" + phoneNumber + + ", appealDate=" + appealDate + + ", appealEvent=" + appealEvent + + ", status=" + status + + ", serviceType=" + serviceType + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", identify=" + identify + + ", checkPerson=" + checkPerson + + ", checkDate=" + checkDate + + ", checkAdvice=" + checkAdvice + + ", serviceMoney=" + serviceMoney + + ", returnVisitPerson=" + returnVisitPerson + + ", returnVisitDate=" + returnVisitDate + + ", isSatisfy=" + isSatisfy + + ", customerEvaluate=" + customerEvaluate + + ", referAttach=" + referAttach + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" new file mode 100644 index 00000000..2e4edece --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" @@ -0,0 +1,167 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 业主服务类型 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhCustomerServiceType implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 类型名称 + */ + private String typeName; + + /** + * 类型单价 + */ + private Double typePrice; + + /** + * 类型说明 + */ + private String typeDesc; + + /** + * 类型状态 + */ + private String typeStatus; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建人时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getTypeName() { + return typeName; + } + + public void setTypeName(String typeName) { + this.typeName = typeName; + } + + public Double getTypePrice() { + return typePrice; + } + + public void setTypePrice(Double typePrice) { + this.typePrice = typePrice; + } + + public String getTypeDesc() { + return typeDesc; + } + + public void setTypeDesc(String typeDesc) { + this.typeDesc = typeDesc; + } + + public String getTypeStatus() { + return typeStatus; + } + + public void setTypeStatus(String typeStatus) { + this.typeStatus = typeStatus; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "ZhCustomerServiceType{" + + "id=" + id + + ", typeName=" + typeName + + ", typePrice=" + typePrice + + ", typeDesc=" + typeDesc + + ", typeStatus=" + typeStatus + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" new file mode 100644 index 00000000..e321a5ba --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" @@ -0,0 +1,405 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContract implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 合同编号 + */ + private String contractId; + + /** + * 签订日期 + */ + private LocalDateTime signDate; + + /** + * 生效日期 + */ + private LocalDateTime startDate; + + /** + * 终止日期 + */ + private LocalDateTime stopDate; + + /** + * 所属租户id + */ + private Integer rentId; + + /** + * 联系人 + */ + private String contact; + + /** + * 起租日期 + */ + private LocalDateTime startRentDate; + + /** + * 停租日期 + */ + private LocalDateTime stopRentDate; + + /** + * 合同租金金额 + */ + private Double contractRentMoney; + + /** + * 收费面积 + */ + private Double receiveArea; + + /** + * 合同状态 + */ + private String contractStatus; + + /** + * 保证金 + */ + private Double ensureMoney; + + /** + * 保证金说明 + */ + private String ensureMoneyDesc; + + /** + * 合同附件 + */ + private String contractAttach; + + /** + * 租期 + */ + private Integer rentDays; + + /** + * 管理费 + */ + private Double adminMoney; + + /** + * 是否收取租金 + */ + private String isRentMoney; + + /** + * 缴纳方式 + */ + private Long payMethod; + + /** + * 备注 + */ + private String remark; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 招商人员id + */ + private String attractPersonId; + + /** + * 招商人员姓名 + */ + private String attractPersonName; + + /** + * 所属公司 + */ + private String company; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getContractId() { + return contractId; + } + + public void setContractId(String contractId) { + this.contractId = contractId; + } + + public LocalDateTime getSignDate() { + return signDate; + } + + public void setSignDate(LocalDateTime signDate) { + this.signDate = signDate; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public Integer getRentId() { + return rentId; + } + + public void setRentId(Integer rentId) { + this.rentId = rentId; + } + + public String getContact() { + return contact; + } + + public void setContact(String contact) { + this.contact = contact; + } + + public LocalDateTime getStartRentDate() { + return startRentDate; + } + + public void setStartRentDate(LocalDateTime startRentDate) { + this.startRentDate = startRentDate; + } + + public LocalDateTime getStopRentDate() { + return stopRentDate; + } + + public void setStopRentDate(LocalDateTime stopRentDate) { + this.stopRentDate = stopRentDate; + } + + public Double getContractRentMoney() { + return contractRentMoney; + } + + public void setContractRentMoney(Double contractRentMoney) { + this.contractRentMoney = contractRentMoney; + } + + public Double getReceiveArea() { + return receiveArea; + } + + public void setReceiveArea(Double receiveArea) { + this.receiveArea = receiveArea; + } + + public String getContractStatus() { + return contractStatus; + } + + public void setContractStatus(String contractStatus) { + this.contractStatus = contractStatus; + } + + public Double getEnsureMoney() { + return ensureMoney; + } + + public void setEnsureMoney(Double ensureMoney) { + this.ensureMoney = ensureMoney; + } + + public String getEnsureMoneyDesc() { + return ensureMoneyDesc; + } + + public void setEnsureMoneyDesc(String ensureMoneyDesc) { + this.ensureMoneyDesc = ensureMoneyDesc; + } + + public String getContractAttach() { + return contractAttach; + } + + public void setContractAttach(String contractAttach) { + this.contractAttach = contractAttach; + } + + public Integer getRentDays() { + return rentDays; + } + + public void setRentDays(Integer rentDays) { + this.rentDays = rentDays; + } + + public Double getAdminMoney() { + return adminMoney; + } + + public void setAdminMoney(Double adminMoney) { + this.adminMoney = adminMoney; + } + + public String getIsRentMoney() { + return isRentMoney; + } + + public void setIsRentMoney(String isRentMoney) { + this.isRentMoney = isRentMoney; + } + + public Long getPayMethod() { + return payMethod; + } + + public void setPayMethod(Long payMethod) { + this.payMethod = payMethod; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getAttractPersonId() { + return attractPersonId; + } + + public void setAttractPersonId(String attractPersonId) { + this.attractPersonId = attractPersonId; + } + + public String getAttractPersonName() { + return attractPersonName; + } + + public void setAttractPersonName(String attractPersonName) { + this.attractPersonName = attractPersonName; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + @Override + public String toString() { + return "ZhRentContract{" + + "id=" + id + + ", contractId=" + contractId + + ", signDate=" + signDate + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", rentId=" + rentId + + ", contact=" + contact + + ", startRentDate=" + startRentDate + + ", stopRentDate=" + stopRentDate + + ", contractRentMoney=" + contractRentMoney + + ", receiveArea=" + receiveArea + + ", contractStatus=" + contractStatus + + ", ensureMoney=" + ensureMoney + + ", ensureMoneyDesc=" + ensureMoneyDesc + + ", contractAttach=" + contractAttach + + ", rentDays=" + rentDays + + ", adminMoney=" + adminMoney + + ", isRentMoney=" + isRentMoney + + ", payMethod=" + payMethod + + ", remark=" + remark + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", attractPersonId=" + attractPersonId + + ", attractPersonName=" + attractPersonName + + ", company=" + company + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" new file mode 100644 index 00000000..0f6e93ea --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" @@ -0,0 +1,97 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同房间 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContractCell implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 所属档口信息 + */ + private Integer stallMessage; + + /** + * 操作人 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getStallMessage() { + return stallMessage; + } + + public void setStallMessage(Integer stallMessage) { + this.stallMessage = stallMessage; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "ZhRentContractCell{" + + "id=" + id + + ", contractId=" + contractId + + ", stallMessage=" + stallMessage + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" new file mode 100644 index 00000000..6ea577a9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" @@ -0,0 +1,139 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同变更 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContractChange implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 变更项目 + */ + private String changeProject; + + /** + * 原值 + */ + private String oldValue; + + /** + * 新值 + */ + private String newValue; + + /** + * 说明 + */ + private String desc; + + /** + * 变更人 + */ + private String changePerson; + + /** + * 变更时间 + */ + private LocalDateTime changeDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public String getChangeProject() { + return changeProject; + } + + public void setChangeProject(String changeProject) { + this.changeProject = changeProject; + } + + public String getOldValue() { + return oldValue; + } + + public void setOldValue(String oldValue) { + this.oldValue = oldValue; + } + + public String getNewValue() { + return newValue; + } + + public void setNewValue(String newValue) { + this.newValue = newValue; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getChangePerson() { + return changePerson; + } + + public void setChangePerson(String changePerson) { + this.changePerson = changePerson; + } + + public LocalDateTime getChangeDate() { + return changeDate; + } + + public void setChangeDate(LocalDateTime changeDate) { + this.changeDate = changeDate; + } + + @Override + public String toString() { + return "ZhRentContractChange{" + + "id=" + id + + ", contractId=" + contractId + + ", changeProject=" + changeProject + + ", oldValue=" + oldValue + + ", newValue=" + newValue + + ", desc=" + desc + + ", changePerson=" + changePerson + + ", changeDate=" + changeDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" new file mode 100644 index 00000000..0c40a62d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" @@ -0,0 +1,237 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同退款 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContractRefund implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 所属租户id + */ + private Integer rentId; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 退款日期 + */ + private LocalDateTime refundTime; + + /** + * 退款金额 + */ + private Double refundMoney; + + /** + * 退款状态 + */ + private String refundStatus; + + /** + * 退款说明 + */ + private String refundDesc; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人名称 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 作废人id + */ + private String invalidId; + + /** + * 作废人名称 + */ + private String invalidPerson; + + /** + * 作废原因 + */ + private LocalDateTime invalidReason; + + /** + * 作废时间 + */ + private String invalidDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getRentId() { + return rentId; + } + + public void setRentId(Integer rentId) { + this.rentId = rentId; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public LocalDateTime getRefundTime() { + return refundTime; + } + + public void setRefundTime(LocalDateTime refundTime) { + this.refundTime = refundTime; + } + + public Double getRefundMoney() { + return refundMoney; + } + + public void setRefundMoney(Double refundMoney) { + this.refundMoney = refundMoney; + } + + public String getRefundStatus() { + return refundStatus; + } + + public void setRefundStatus(String refundStatus) { + this.refundStatus = refundStatus; + } + + public String getRefundDesc() { + return refundDesc; + } + + public void setRefundDesc(String refundDesc) { + this.refundDesc = refundDesc; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getInvalidPerson() { + return invalidPerson; + } + + public void setInvalidPerson(String invalidPerson) { + this.invalidPerson = invalidPerson; + } + + public LocalDateTime getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(LocalDateTime invalidReason) { + this.invalidReason = invalidReason; + } + + public String getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(String invalidDate) { + this.invalidDate = invalidDate; + } + + @Override + public String toString() { + return "ZhRentContractRefund{" + + "id=" + id + + ", contractId=" + contractId + + ", rentId=" + rentId + + ", rentName=" + rentName + + ", refundTime=" + refundTime + + ", refundMoney=" + refundMoney + + ", refundStatus=" + refundStatus + + ", refundDesc=" + refundDesc + + ", operateId=" + operateId + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + ", invalidId=" + invalidId + + ", invalidPerson=" + invalidPerson + + ", invalidReason=" + invalidReason + + ", invalidDate=" + invalidDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" new file mode 100644 index 00000000..ac4d1b5b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" @@ -0,0 +1,335 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁合同返利 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentContractReturn implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 所属租户id + */ + private Integer rentId; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 返利日期起 + */ + private LocalDateTime returnMoneyStart; + + /** + * 返利日期终 + */ + private LocalDateTime returnMoneyStop; + + /** + * 返利基数金额 + */ + private Double returnCardinalMoney; + + /** + * 返利比例 + */ + private Double returnRate; + + /** + * 本次返利金额 + */ + private Double currentReturnMoney; + + /** + * 返利状态 + */ + private String returnMoneyStatus; + + /** + * 返利说明 + */ + private String returnMoneyDesc; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人名称 + */ + private String operateName; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 作废人id + */ + private String invalidId; + + /** + * 作废人名称 + */ + private String invalidPerson; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 修改人id + */ + private String updatePersonId; + + /** + * 修改人名称 + */ + private String updatePersonName; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 修改原因 + */ + private String updateReason; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getRentId() { + return rentId; + } + + public void setRentId(Integer rentId) { + this.rentId = rentId; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public LocalDateTime getReturnMoneyStart() { + return returnMoneyStart; + } + + public void setReturnMoneyStart(LocalDateTime returnMoneyStart) { + this.returnMoneyStart = returnMoneyStart; + } + + public LocalDateTime getReturnMoneyStop() { + return returnMoneyStop; + } + + public void setReturnMoneyStop(LocalDateTime returnMoneyStop) { + this.returnMoneyStop = returnMoneyStop; + } + + public Double getReturnCardinalMoney() { + return returnCardinalMoney; + } + + public void setReturnCardinalMoney(Double returnCardinalMoney) { + this.returnCardinalMoney = returnCardinalMoney; + } + + public Double getReturnRate() { + return returnRate; + } + + public void setReturnRate(Double returnRate) { + this.returnRate = returnRate; + } + + public Double getCurrentReturnMoney() { + return currentReturnMoney; + } + + public void setCurrentReturnMoney(Double currentReturnMoney) { + this.currentReturnMoney = currentReturnMoney; + } + + public String getReturnMoneyStatus() { + return returnMoneyStatus; + } + + public void setReturnMoneyStatus(String returnMoneyStatus) { + this.returnMoneyStatus = returnMoneyStatus; + } + + public String getReturnMoneyDesc() { + return returnMoneyDesc; + } + + public void setReturnMoneyDesc(String returnMoneyDesc) { + this.returnMoneyDesc = returnMoneyDesc; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperateName() { + return operateName; + } + + public void setOperateName(String operateName) { + this.operateName = operateName; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getInvalidPerson() { + return invalidPerson; + } + + public void setInvalidPerson(String invalidPerson) { + this.invalidPerson = invalidPerson; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public String getUpdatePersonId() { + return updatePersonId; + } + + public void setUpdatePersonId(String updatePersonId) { + this.updatePersonId = updatePersonId; + } + + public String getUpdatePersonName() { + return updatePersonName; + } + + public void setUpdatePersonName(String updatePersonName) { + this.updatePersonName = updatePersonName; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getUpdateReason() { + return updateReason; + } + + public void setUpdateReason(String updateReason) { + this.updateReason = updateReason; + } + + @Override + public String toString() { + return "ZhRentContractReturn{" + + "id=" + id + + ", contractId=" + contractId + + ", rentId=" + rentId + + ", rentName=" + rentName + + ", returnMoneyStart=" + returnMoneyStart + + ", returnMoneyStop=" + returnMoneyStop + + ", returnCardinalMoney=" + returnCardinalMoney + + ", returnRate=" + returnRate + + ", currentReturnMoney=" + currentReturnMoney + + ", returnMoneyStatus=" + returnMoneyStatus + + ", returnMoneyDesc=" + returnMoneyDesc + + ", operateId=" + operateId + + ", operateName=" + operateName + + ", operateDate=" + operateDate + + ", invalidId=" + invalidId + + ", invalidPerson=" + invalidPerson + + ", invalidDate=" + invalidDate + + ", invalidReason=" + invalidReason + + ", updatePersonId=" + updatePersonId + + ", updatePersonName=" + updatePersonName + + ", updateDate=" + updateDate + + ", updateReason=" + updateReason + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" new file mode 100644 index 00000000..b236dfba --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" @@ -0,0 +1,349 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租户信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentInformation implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 租户编码 + */ + private String rentCode; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 法定代表 + */ + private String memberOfRight; + + /** + * 租户类型 + */ + private Long rentType; + + /** + * 联系人 + */ + private String contact; + + /** + * 性别 + */ + private String gender; + + /** + * 联系电话 + */ + private String homeNumber; + + /** + * 手机 + */ + private String phoneNumber; + + /** + * 地址 + */ + private String addr; + + /** + * 证件类型 + */ + private Long certificateType; + + /** + * 主营商品 + */ + private Long mainSale; + + /** + * 证件号码 + */ + private String certificateNumber; + + /** + * 状态 + */ + private String status; + + /** + * 备注 + */ + private String remark; + + /** + * 照片地址 + */ + private String pictureUrl; + + /** + * 创建人 + */ + private String createPerson; + + /** + * 创建时间 + */ + private LocalDateTime createDate; + + /** + * 修改人 + */ + private String updatePerson; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 所属公司 + */ + private String company; + + /** + * 登陆密码 + */ + private String pwd; + + /** + * 租户附件 + */ + private String rentAttach; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getRentCode() { + return rentCode; + } + + public void setRentCode(String rentCode) { + this.rentCode = rentCode; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public String getMemberOfRight() { + return memberOfRight; + } + + public void setMemberOfRight(String memberOfRight) { + this.memberOfRight = memberOfRight; + } + + public Long getRentType() { + return rentType; + } + + public void setRentType(Long rentType) { + this.rentType = rentType; + } + + public String getContact() { + return contact; + } + + public void setContact(String contact) { + this.contact = contact; + } + + public String getGender() { + return gender; + } + + public void setGender(String gender) { + this.gender = gender; + } + + public String getHomeNumber() { + return homeNumber; + } + + public void setHomeNumber(String homeNumber) { + this.homeNumber = homeNumber; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public String getAddr() { + return addr; + } + + public void setAddr(String addr) { + this.addr = addr; + } + + public Long getCertificateType() { + return certificateType; + } + + public void setCertificateType(Long certificateType) { + this.certificateType = certificateType; + } + + public Long getMainSale() { + return mainSale; + } + + public void setMainSale(Long mainSale) { + this.mainSale = mainSale; + } + + public String getCertificateNumber() { + return certificateNumber; + } + + public void setCertificateNumber(String certificateNumber) { + this.certificateNumber = certificateNumber; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getPictureUrl() { + return pictureUrl; + } + + public void setPictureUrl(String pictureUrl) { + this.pictureUrl = pictureUrl; + } + + public String getCreatePerson() { + return createPerson; + } + + public void setCreatePerson(String createPerson) { + this.createPerson = createPerson; + } + + public LocalDateTime getCreateDate() { + return createDate; + } + + public void setCreateDate(LocalDateTime createDate) { + this.createDate = createDate; + } + + public String getUpdatePerson() { + return updatePerson; + } + + public void setUpdatePerson(String updatePerson) { + this.updatePerson = updatePerson; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getCompany() { + return company; + } + + public void setCompany(String company) { + this.company = company; + } + + public String getPwd() { + return pwd; + } + + public void setPwd(String pwd) { + this.pwd = pwd; + } + + public String getRentAttach() { + return rentAttach; + } + + public void setRentAttach(String rentAttach) { + this.rentAttach = rentAttach; + } + + @Override + public String toString() { + return "ZhRentInformation{" + + "id=" + id + + ", rentCode=" + rentCode + + ", rentName=" + rentName + + ", memberOfRight=" + memberOfRight + + ", rentType=" + rentType + + ", contact=" + contact + + ", gender=" + gender + + ", homeNumber=" + homeNumber + + ", phoneNumber=" + phoneNumber + + ", addr=" + addr + + ", certificateType=" + certificateType + + ", mainSale=" + mainSale + + ", certificateNumber=" + certificateNumber + + ", status=" + status + + ", remark=" + remark + + ", pictureUrl=" + pictureUrl + + ", createPerson=" + createPerson + + ", createDate=" + createDate + + ", updatePerson=" + updatePerson + + ", updateDate=" + updateDate + + ", company=" + company + + ", pwd=" + pwd + + ", rentAttach=" + rentAttach + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" new file mode 100644 index 00000000..bda99caa --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" @@ -0,0 +1,321 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租金收取 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentReceive implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 所属租户id + */ + private Integer rentId; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 租金开始日期 + */ + private LocalDateTime rentStartDate; + + /** + * 租金截止日期 + */ + private LocalDateTime rentStopDate; + + /** + * 租金金额 + */ + private Double rentMoney; + + /** + * 说明 + */ + private String desc; + + /** + * 收款人id + */ + private String receiveId; + + /** + * 收款人名称 + */ + private String receivePerson; + + /** + * 收款时间 + */ + private LocalDateTime receiveDate; + + /** + * 收取状态 + */ + private String receiveStatus; + + /** + * 作废人id + */ + private String invalidId; + + /** + * 作废人名称 + */ + private String invalidPersonName; + + /** + * 作废原因 + */ + private String invalidReason; + + /** + * 作废时间 + */ + private LocalDateTime invalidDate; + + /** + * 原收款方式 + */ + private String pastReceiveMethod; + + /** + * 单据审核状态 + */ + private String receiptCheckStatus; + + /** + * 单据审核人 + */ + private String receiptCheckPerson; + + /** + * 单据审核时间 + */ + private LocalDateTime receiptCheckTime; + + /** + * 单据审核意见 + */ + private String receiptCheckAdvice; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getRentId() { + return rentId; + } + + public void setRentId(Integer rentId) { + this.rentId = rentId; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public LocalDateTime getRentStartDate() { + return rentStartDate; + } + + public void setRentStartDate(LocalDateTime rentStartDate) { + this.rentStartDate = rentStartDate; + } + + public LocalDateTime getRentStopDate() { + return rentStopDate; + } + + public void setRentStopDate(LocalDateTime rentStopDate) { + this.rentStopDate = rentStopDate; + } + + public Double getRentMoney() { + return rentMoney; + } + + public void setRentMoney(Double rentMoney) { + this.rentMoney = rentMoney; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public String getReceiveId() { + return receiveId; + } + + public void setReceiveId(String receiveId) { + this.receiveId = receiveId; + } + + public String getReceivePerson() { + return receivePerson; + } + + public void setReceivePerson(String receivePerson) { + this.receivePerson = receivePerson; + } + + public LocalDateTime getReceiveDate() { + return receiveDate; + } + + public void setReceiveDate(LocalDateTime receiveDate) { + this.receiveDate = receiveDate; + } + + public String getReceiveStatus() { + return receiveStatus; + } + + public void setReceiveStatus(String receiveStatus) { + this.receiveStatus = receiveStatus; + } + + public String getInvalidId() { + return invalidId; + } + + public void setInvalidId(String invalidId) { + this.invalidId = invalidId; + } + + public String getInvalidPersonName() { + return invalidPersonName; + } + + public void setInvalidPersonName(String invalidPersonName) { + this.invalidPersonName = invalidPersonName; + } + + public String getInvalidReason() { + return invalidReason; + } + + public void setInvalidReason(String invalidReason) { + this.invalidReason = invalidReason; + } + + public LocalDateTime getInvalidDate() { + return invalidDate; + } + + public void setInvalidDate(LocalDateTime invalidDate) { + this.invalidDate = invalidDate; + } + + public String getPastReceiveMethod() { + return pastReceiveMethod; + } + + public void setPastReceiveMethod(String pastReceiveMethod) { + this.pastReceiveMethod = pastReceiveMethod; + } + + public String getReceiptCheckStatus() { + return receiptCheckStatus; + } + + public void setReceiptCheckStatus(String receiptCheckStatus) { + this.receiptCheckStatus = receiptCheckStatus; + } + + public String getReceiptCheckPerson() { + return receiptCheckPerson; + } + + public void setReceiptCheckPerson(String receiptCheckPerson) { + this.receiptCheckPerson = receiptCheckPerson; + } + + public LocalDateTime getReceiptCheckTime() { + return receiptCheckTime; + } + + public void setReceiptCheckTime(LocalDateTime receiptCheckTime) { + this.receiptCheckTime = receiptCheckTime; + } + + public String getReceiptCheckAdvice() { + return receiptCheckAdvice; + } + + public void setReceiptCheckAdvice(String receiptCheckAdvice) { + this.receiptCheckAdvice = receiptCheckAdvice; + } + + @Override + public String toString() { + return "ZhRentReceive{" + + "id=" + id + + ", contractId=" + contractId + + ", rentId=" + rentId + + ", rentName=" + rentName + + ", rentStartDate=" + rentStartDate + + ", rentStopDate=" + rentStopDate + + ", rentMoney=" + rentMoney + + ", desc=" + desc + + ", receiveId=" + receiveId + + ", receivePerson=" + receivePerson + + ", receiveDate=" + receiveDate + + ", receiveStatus=" + receiveStatus + + ", invalidId=" + invalidId + + ", invalidPersonName=" + invalidPersonName + + ", invalidReason=" + invalidReason + + ", invalidDate=" + invalidDate + + ", pastReceiveMethod=" + pastReceiveMethod + + ", receiptCheckStatus=" + receiptCheckStatus + + ", receiptCheckPerson=" + receiptCheckPerson + + ", receiptCheckTime=" + receiptCheckTime + + ", receiptCheckAdvice=" + receiptCheckAdvice + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" new file mode 100644 index 00000000..7b286205 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" @@ -0,0 +1,293 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租赁分租信息 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentShare implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 租户名称 + */ + private String rentName; + + /** + * 分租人 + */ + private String shareRentPerson; + + /** + * 分租房间id + */ + private String shareCellId; + + /** + * 分租房间名称 + */ + private String shareCellName; + + /** + * 联系人 + */ + private String contact; + + /** + * 联系电话 + */ + private String phoneNumber; + + /** + * 起始日期 + */ + private LocalDateTime startDate; + + /** + * 截止日期 + */ + private LocalDateTime stopDate; + + /** + * 经营范围 + */ + private String saleRange; + + /** + * 备注 + */ + private String remark; + + /** + * 操作人id + */ + private String operateId; + + /** + * 操作人名称 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + /** + * 修改人id + */ + private String updatePersonId; + + /** + * 修改人名称 + */ + private String updatePersonName; + + /** + * 修改时间 + */ + private LocalDateTime updateDate; + + /** + * 修改原因 + */ + private String updateReason; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public String getRentName() { + return rentName; + } + + public void setRentName(String rentName) { + this.rentName = rentName; + } + + public String getShareRentPerson() { + return shareRentPerson; + } + + public void setShareRentPerson(String shareRentPerson) { + this.shareRentPerson = shareRentPerson; + } + + public String getShareCellId() { + return shareCellId; + } + + public void setShareCellId(String shareCellId) { + this.shareCellId = shareCellId; + } + + public String getShareCellName() { + return shareCellName; + } + + public void setShareCellName(String shareCellName) { + this.shareCellName = shareCellName; + } + + public String getContact() { + return contact; + } + + public void setContact(String contact) { + this.contact = contact; + } + + public String getPhoneNumber() { + return phoneNumber; + } + + public void setPhoneNumber(String phoneNumber) { + this.phoneNumber = phoneNumber; + } + + public LocalDateTime getStartDate() { + return startDate; + } + + public void setStartDate(LocalDateTime startDate) { + this.startDate = startDate; + } + + public LocalDateTime getStopDate() { + return stopDate; + } + + public void setStopDate(LocalDateTime stopDate) { + this.stopDate = stopDate; + } + + public String getSaleRange() { + return saleRange; + } + + public void setSaleRange(String saleRange) { + this.saleRange = saleRange; + } + + public String getRemark() { + return remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getOperateId() { + return operateId; + } + + public void setOperateId(String operateId) { + this.operateId = operateId; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + public String getUpdatePersonId() { + return updatePersonId; + } + + public void setUpdatePersonId(String updatePersonId) { + this.updatePersonId = updatePersonId; + } + + public String getUpdatePersonName() { + return updatePersonName; + } + + public void setUpdatePersonName(String updatePersonName) { + this.updatePersonName = updatePersonName; + } + + public LocalDateTime getUpdateDate() { + return updateDate; + } + + public void setUpdateDate(LocalDateTime updateDate) { + this.updateDate = updateDate; + } + + public String getUpdateReason() { + return updateReason; + } + + public void setUpdateReason(String updateReason) { + this.updateReason = updateReason; + } + + @Override + public String toString() { + return "ZhRentShare{" + + "id=" + id + + ", contractId=" + contractId + + ", rentName=" + rentName + + ", shareRentPerson=" + shareRentPerson + + ", shareCellId=" + shareCellId + + ", shareCellName=" + shareCellName + + ", contact=" + contact + + ", phoneNumber=" + phoneNumber + + ", startDate=" + startDate + + ", stopDate=" + stopDate + + ", saleRange=" + saleRange + + ", remark=" + remark + + ", operateId=" + operateId + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + ", updatePersonId=" + updatePersonId + + ", updatePersonName=" + updatePersonName + + ", updateDate=" + updateDate + + ", updateReason=" + updateReason + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" new file mode 100644 index 00000000..8fd6f444 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" @@ -0,0 +1,181 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import java.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 租户转兑 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public class ZhRentTransfer implements Serializable { + + private static final long serialVersionUID=1L; + + /** + * 自动编号 + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 所属合同编号 + */ + private Integer contractId; + + /** + * 转出租户id + */ + private Integer transferOutId; + + /** + * 转出租户名称 + */ + private String transferOutName; + + /** + * 转入租户id + */ + private Integer transferInId; + + /** + * 转入租户名称 + */ + private String transferInName; + + /** + * 更名费 + */ + private Double changeNameMoney; + + /** + * 转兑说明 + */ + private String transferDesc; + + /** + * 转兑时间 + */ + private LocalDateTime transferDate; + + /** + * 操作人 + */ + private String operatePerson; + + /** + * 操作时间 + */ + private LocalDateTime operateDate; + + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getContractId() { + return contractId; + } + + public void setContractId(Integer contractId) { + this.contractId = contractId; + } + + public Integer getTransferOutId() { + return transferOutId; + } + + public void setTransferOutId(Integer transferOutId) { + this.transferOutId = transferOutId; + } + + public String getTransferOutName() { + return transferOutName; + } + + public void setTransferOutName(String transferOutName) { + this.transferOutName = transferOutName; + } + + public Integer getTransferInId() { + return transferInId; + } + + public void setTransferInId(Integer transferInId) { + this.transferInId = transferInId; + } + + public String getTransferInName() { + return transferInName; + } + + public void setTransferInName(String transferInName) { + this.transferInName = transferInName; + } + + public Double getChangeNameMoney() { + return changeNameMoney; + } + + public void setChangeNameMoney(Double changeNameMoney) { + this.changeNameMoney = changeNameMoney; + } + + public String getTransferDesc() { + return transferDesc; + } + + public void setTransferDesc(String transferDesc) { + this.transferDesc = transferDesc; + } + + public LocalDateTime getTransferDate() { + return transferDate; + } + + public void setTransferDate(LocalDateTime transferDate) { + this.transferDate = transferDate; + } + + public String getOperatePerson() { + return operatePerson; + } + + public void setOperatePerson(String operatePerson) { + this.operatePerson = operatePerson; + } + + public LocalDateTime getOperateDate() { + return operateDate; + } + + public void setOperateDate(LocalDateTime operateDate) { + this.operateDate = operateDate; + } + + @Override + public String toString() { + return "ZhRentTransfer{" + + "id=" + id + + ", contractId=" + contractId + + ", transferOutId=" + transferOutId + + ", transferOutName=" + transferOutName + + ", transferInId=" + transferInId + + ", transferInName=" + transferInName + + ", changeNameMoney=" + changeNameMoney + + ", transferDesc=" + transferDesc + + ", transferDate=" + transferDate + + ", operatePerson=" + operatePerson + + ", operateDate=" + operateDate + + "}"; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" new file mode 100644 index 00000000..53740d6c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" @@ -0,0 +1,32 @@ +package com.mashibing.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.cors.CorsConfiguration; +import org.springframework.web.cors.UrlBasedCorsConfigurationSource; +import org.springframework.web.filter.CorsFilter; + +//@Configuration +public class CorsConfig { + + private CorsConfiguration buildConfig(){ + CorsConfiguration configuration = new CorsConfiguration(); + //设置属性 + //允许跨域请求的地址,*表示所有 + configuration.addAllowedOrigin("*"); + //配置跨域的请求头 + configuration.addAllowedHeader("*"); + //配置跨域的请求方法 + configuration.addAllowedMethod("*"); + // 表示跨域请求的时候是否使用的是同一个session + configuration.setAllowCredentials(true); + return configuration; + } + + @Bean + public CorsFilter corsFilter(){ + UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); + source.registerCorsConfiguration("/**",buildConfig()); + return new CorsFilter(source); + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" new file mode 100644 index 00000000..1ca735ff --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" @@ -0,0 +1,131 @@ +package com.mashibing.controller; + +import com.alibaba.fastjson.JSONObject; +import com.mashibing.bean.*; +import com.mashibing.returnJson.ReturnObject; +import com.mashibing.service.EstateService; +import com.mashibing.vo.CellMessage; +import com.mashibing.vo.UnitMessage; +import com.sun.org.apache.bcel.internal.generic.RETURN; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.CrossOrigin; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.ArrayList; +import java.util.List; + +@RestController +@CrossOrigin(origins = "*",allowedHeaders = "*",methods = {},allowCredentials = "true") +public class EstateController { + + @Autowired + private EstateService estateService; + + @RequestMapping("/estate/selectCompany") + public String selectCompany(){ + System.out.println("selectCompany"); + List companies = estateService.selectCompany(); + return JSONObject.toJSONString(new ReturnObject(companies)); + } + + @RequestMapping("/estate/insertEstate") + public String insertEstate(FcEstate fcEstate){ + System.out.println(fcEstate); + System.out.println("insert estate"); + Integer result = estateService.insertEstate(fcEstate); + if (result == 0){ + return JSONObject.toJSONString(new ReturnObject("0","房产编码已经存在")); + }else{ + return JSONObject.toJSONString(new ReturnObject("1","插入房产成功")); + } + } + + /** + * 此处应该完成的是楼宇的查询功能,但是大家会发现,现在数据表中没有任何楼宇的数据, + * 因此再辨析的时候需要进行插入且返回插入的数据 + * @param buildingNumber + * @param estateCode + * @return + */ + @RequestMapping("/estate/selectBuilding") + public String selectBuilding(Integer buildingNumber,String estateCode){ + System.out.println("select building"); + List fcBuildings = estateService.selectBuilding(buildingNumber, estateCode); + System.out.println(fcBuildings); + return JSONObject.toJSONString(new ReturnObject(fcBuildings)); + } + + @RequestMapping("/estate/updateBuilding") + public String updateBuilding(FcBuilding fcBuilding){ + System.out.println("update building"); + Integer result = estateService.updateBuilding(fcBuilding); + if(result == 1){ + return JSONObject.toJSONString(new ReturnObject("更新楼宇成功")); + }else{ + return JSONObject.toJSONString(new ReturnObject("更新楼宇失败")); + } + } + + @RequestMapping("/estate/selectUnit") + public String selectUnit(@RequestBody UnitMessage[] unitMessages){ + System.out.println("estate selectUnit"); + List allUnit = new ArrayList<>(); + for (UnitMessage unitMessage : unitMessages) { + allUnit.addAll(estateService.selectUnit(unitMessage)); + } + return JSONObject.toJSONString(new ReturnObject(allUnit)); + } + + @RequestMapping("/estate/updateUnit") + public String updateUnit(FcUnit fcUnit){ + Integer result = estateService.updateUnit(fcUnit); + if(result ==1 ){ + return JSONObject.toJSONString(new ReturnObject("更新单元成功")); + }else{ + return JSONObject.toJSONString(new ReturnObject("更新单元失败")); + } + } + + @RequestMapping("/estate/insertCell") + public String insertCell(@RequestBody CellMessage[] cellMessages){ + System.out.println("insert cell"); + List fcCells = estateService.insertCell(cellMessages); + return JSONObject.toJSONString(new ReturnObject(fcCells)); + } + + @RequestMapping("/estate/selectBuildingByEstate") + public String selectBuildingByEstate(String estateCode){ + System.out.println("estate:" + estateCode); + List fcBuildings = estateService.selectBuildingByEstate(estateCode); + System.out.println("---------------------"); + System.out.println(fcBuildings); + return JSONObject.toJSONString(new ReturnObject(fcBuildings)); + } + + @RequestMapping("/estate/selectUnitByBuildingCode") + public String selectUintByBuildingCode(String buildingCode){ + System.out.println("select unit"); + List fcUnits = estateService.selectUnitByBuildingCode(buildingCode); + System.out.println(fcUnits.size()); + return JSONObject.toJSONString(new ReturnObject(fcUnits)); + } + + @RequestMapping("/estate/selectCell") + public String selectCell(String unitCode){ + System.out.println("select cell"); + List fcCells = estateService.selectCell(unitCode); + System.out.println("-----------------"); + System.out.println(fcCells.size()); + return JSONObject.toJSONString(new ReturnObject(fcCells)); + + } + + @RequestMapping("/estate/selectEstate") + public String selectEstate(String company){ + System.out.println("estate company"); + List fcEstates = estateService.selectEstate(company); + return JSONObject.toJSONString(new ReturnObject(fcEstates)); + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" new file mode 100644 index 00000000..e8286669 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" @@ -0,0 +1,65 @@ +package com.mashibing.controller; + +import com.alibaba.fastjson.JSONObject; +import com.mashibing.bean.TblUserRecord; +import com.mashibing.returnJson.Permission; +import com.mashibing.returnJson.Permissions; +import com.mashibing.returnJson.ReturnObject; +import com.mashibing.returnJson.UserInfo; +import com.mashibing.service.LoginService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + +import javax.servlet.http.HttpSession; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +@RestController +@CrossOrigin(origins = "*",allowedHeaders = "*",methods = {},allowCredentials = "true") +public class LoginController { + + @Autowired + private LoginService loginService; + + @RequestMapping("/auth/2step-code") + public Boolean test(){ + System.out.println("前端框架自带的一个验证规则,写不写无所谓"); + return true; + } + + @RequestMapping("/auth/login") + public String login(@RequestParam("username") String username, @RequestParam("password") String password, HttpSession session){ + System.out.println("login"); + TblUserRecord tblUserRecord = loginService.login(username,password); + tblUserRecord.setToken(tblUserRecord.getUserName()); + //将用户数据写入到session中 + session.setAttribute("userRecord",tblUserRecord); + ReturnObject returnObject = new ReturnObject(tblUserRecord); + return JSONObject.toJSONString(returnObject); + } + + @RequestMapping("/user/info") + public String getInfo(HttpSession session){ + TblUserRecord tblUserRecord = (TblUserRecord) session.getAttribute("userRecord"); + //获取模块信息 + String[] split = tblUserRecord.getTblRole().getRolePrivileges().split("-"); + //创建权限集合对象 + Permissions permissions = new Permissions(); + //向权限集合对象中添加具体的权限 + List permissionList = new ArrayList<>(); + for (String s : split) { + permissionList.add(new Permission(s)); + } + permissions.setPermissions(permissionList); + //设置返回值的result + UserInfo userInfo = new UserInfo(tblUserRecord.getUserName(),permissions); + return JSONObject.toJSONString(new ReturnObject(userInfo)); + } + + @RequestMapping("/auth/logout") + public void logOut(HttpSession session){ + System.out.println("logout"); + session.invalidate(); + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" new file mode 100644 index 00000000..0257c63b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼宇信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcBuilding") +public class FcBuildingController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" new file mode 100644 index 00000000..3474a209 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 房间加建信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcCellAddbuild") +public class FcCellAddbuildController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" new file mode 100644 index 00000000..e1bd86fb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 房间信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcCell") +public class FcCellController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" new file mode 100644 index 00000000..ff950a38 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcEstate") +public class FcEstateController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" new file mode 100644 index 00000000..9cf1b87f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 单元信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fcUnit") +public class FcUnitController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" new file mode 100644 index 00000000..c90b776e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 房产信息临时表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyEstateTemporary") +public class FyEstateTemporaryController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" new file mode 100644 index 00000000..1ea544f0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 历史费用临时表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyHistoryMoneyTemp") +public class FyHistoryMoneyTempController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" new file mode 100644 index 00000000..eebe00a1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 作废单主单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyInvalidMain") +public class FyInvalidMainController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" new file mode 100644 index 00000000..665e48e8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 作废单子单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyInvalidSub") +public class FyInvalidSubController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" new file mode 100644 index 00000000..8578c435 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费项设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneySetting") +public class FyMoneySettingController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" new file mode 100644 index 00000000..05d2c9ce --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用临时表1 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneyTemporary01") +public class FyMoneyTemporary01Controller { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" new file mode 100644 index 00000000..b1e2169a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用临时表2 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneyTemporary02") +public class FyMoneyTemporary02Controller { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" new file mode 100644 index 00000000..ba6d8804 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用临时表3 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneyTemporary03") +public class FyMoneyTemporary03Controller { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" new file mode 100644 index 00000000..185cb8c5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用临时表4 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyMoneyTemporary04") +public class FyMoneyTemporary04Controller { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" new file mode 100644 index 00000000..a6a0adf5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 预收款管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyPreReceive") +public class FyPreReceiveController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" new file mode 100644 index 00000000..87c4ae14 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物业费分布 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyPropertyMoneyDist") +public class FyPropertyMoneyDistController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" new file mode 100644 index 00000000..ec8ffd95 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公表信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyPublicBox") +public class FyPublicBoxController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" new file mode 100644 index 00000000..5fe0d9ff --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公表关联用户 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyPublicBoxUser") +public class FyPublicBoxUserController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" new file mode 100644 index 00000000..84f22897 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 收款单主单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyReceiptMain") +public class FyReceiptMainController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" new file mode 100644 index 00000000..8cc2d90f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 收款单子单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyReceiptSub") +public class FyReceiptSubController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" new file mode 100644 index 00000000..46d5c9bb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 退款单主单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyRefundMain") +public class FyRefundMainController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" new file mode 100644 index 00000000..04a9c351 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 退款单子单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyRefundSub") +public class FyRefundSubController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" new file mode 100644 index 00000000..1ff878d3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 销售合同 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fySaleContract") +public class FySaleContractController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" new file mode 100644 index 00000000..64fcaaec --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公摊费用台账概要 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyShareStandingBook") +public class FyShareStandingBookController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" new file mode 100644 index 00000000..ba4ae199 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公摊费用台账公表明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyShareStandingBookDetail") +public class FyShareStandingBookDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" new file mode 100644 index 00000000..91111eb8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 公摊费用台账用户明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyShareUserDetail") +public class FyShareUserDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" new file mode 100644 index 00000000..d3cb9e77 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用台账概要 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyStandingBook") +public class FyStandingBookController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" new file mode 100644 index 00000000..48ab935c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 费用台账明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyStandingBookDetail") +public class FyStandingBookDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" new file mode 100644 index 00000000..1186c413 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 临客费项设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/fyTemporaryMoneySetting") +public class FyTemporaryMoneySettingController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" new file mode 100644 index 00000000..17629f4e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 意见箱 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblAdviceBox") +public class TblAdviceBoxController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" new file mode 100644 index 00000000..41580609 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 题目可选答案信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblAnswerData") +public class TblAnswerDataController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" new file mode 100644 index 00000000..dc2ba35a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 参数档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblArgRecord") +public class TblArgRecordController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" new file mode 100644 index 00000000..1397c359 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 附件 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblAttupload") +public class TblAttuploadController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" new file mode 100644 index 00000000..c88e53df --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 颜色管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblColor") +public class TblColorController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" new file mode 100644 index 00000000..fc948e86 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 常用语 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCommonLanguage") +public class TblCommonLanguageController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" new file mode 100644 index 00000000..e165171f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 常用短信 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCommonMessage") +public class TblCommonMessageController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" new file mode 100644 index 00000000..72ba9c89 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 企业档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCompany") +public class TblCompanyController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" new file mode 100644 index 00000000..bc9ddc5f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 单位名录 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCompanyRecord") +public class TblCompanyRecordController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" new file mode 100644 index 00000000..33a6b6dc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 企业公告 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblComparyNotice") +public class TblComparyNoticeController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" new file mode 100644 index 00000000..a8e4fabb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 自定义类型 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblCustomType") +public class TblCustomTypeController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" new file mode 100644 index 00000000..21f1da57 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 仪表盘 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDashboard") +public class TblDashboardController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" new file mode 100644 index 00000000..2801fbe6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 工作日期 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDate") +public class TblDateController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" new file mode 100644 index 00000000..e7e42449 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 数据库设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDbSetting") +public class TblDbSettingController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" new file mode 100644 index 00000000..51d93488 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 数据库备份 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDbbackup") +public class TblDbbackupController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" new file mode 100644 index 00000000..5e51b425 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 数据库还原 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDbrecovery") +public class TblDbrecoveryController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" new file mode 100644 index 00000000..4700a7a3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 数据库 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDbsource") +public class TblDbsourceController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" new file mode 100644 index 00000000..d6b8cfdf --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 部门信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDept") +public class TblDeptController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" new file mode 100644 index 00000000..653361af --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 部门key 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDeptkey") +public class TblDeptkeyController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" new file mode 100644 index 00000000..fe0e7870 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 桌面 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblDesktop") +public class TblDesktopController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" new file mode 100644 index 00000000..ae5bb2ff --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 邮件接受 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEmailReceive") +public class TblEmailReceiveController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" new file mode 100644 index 00000000..eab422a8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 邮件发送 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEmailSend") +public class TblEmailSendController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" new file mode 100644 index 00000000..b8e8905c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 员工通讯录类别 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEmployeeContactCategory") +public class TblEmployeeContactCategoryController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" new file mode 100644 index 00000000..30b87ac0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 员工通讯录 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEmployeeContact") +public class TblEmployeeContactController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" new file mode 100644 index 00000000..30159a79 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 环境配置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblEnvirSetting") +public class TblEnvirSettingController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" new file mode 100644 index 00000000..731cbafb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 功能模块 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblFunctionModel") +public class TblFunctionModelController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" new file mode 100644 index 00000000..7eecdeb0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 群组档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblGroupRecord") +public class TblGroupRecordController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" new file mode 100644 index 00000000..6c8aae76 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 分组待办事项 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblGroupsTodo") +public class TblGroupsTodoController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" new file mode 100644 index 00000000..a7e7e723 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 分组用户 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblGroupsUser") +public class TblGroupsUserController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" new file mode 100644 index 00000000..8cca6357 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 登录日志 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblLoginLog") +public class TblLoginLogController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" new file mode 100644 index 00000000..855d71c4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 主菜单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMainMenu") +public class TblMainMenuController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" new file mode 100644 index 00000000..48c19d6e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 短信充值单 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMessageCharge") +public class TblMessageChargeController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" new file mode 100644 index 00000000..1e8cc48b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 短信接受表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMessageReceive") +public class TblMessageReceiveController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" new file mode 100644 index 00000000..2d4f1bd5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 信息发送 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMessageSend") +public class TblMessageSendController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" new file mode 100644 index 00000000..4f1490c5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 信息接受 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMsgReceive") +public class TblMsgReceiveController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" new file mode 100644 index 00000000..0ecc2e95 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的记事本 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMyNote") +public class TblMyNoteController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" new file mode 100644 index 00000000..6195acdd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的意见 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMyadvice") +public class TblMyadviceController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" new file mode 100644 index 00000000..ae6721ed --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的驾驶舱 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMydash") +public class TblMydashController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" new file mode 100644 index 00000000..19a6e568 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的桌面 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMydesk") +public class TblMydeskController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" new file mode 100644 index 00000000..f4e8c5d5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 我的日程 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMyplan") +public class TblMyplanController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" new file mode 100644 index 00000000..0e2270f5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 个人设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblMyset") +public class TblMysetController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" new file mode 100644 index 00000000..171ad93a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 网络硬盘_文件夹 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblNetdiskDir") +public class TblNetdiskDirController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" new file mode 100644 index 00000000..91fe91bd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 网络硬盘路径 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblNetdiskUrl") +public class TblNetdiskUrlController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" new file mode 100644 index 00000000..ba1da783 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 职位档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblPositionRecord") +public class TblPositionRecordController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" new file mode 100644 index 00000000..f1b7033c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 打印纸张宽度设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblPrintPaper") +public class TblPrintPaperController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" new file mode 100644 index 00000000..4160a8ef --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 打印参数 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblPrintParam") +public class TblPrintParamController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" new file mode 100644 index 00000000..c6cb492a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 快捷方式 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblQuick") +public class TblQuickController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" new file mode 100644 index 00000000..0a9c0d3a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 角色档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblRole") +public class TblRoleController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" new file mode 100644 index 00000000..69df7d10 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 角色菜单权限 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblRoleMenuPrivi") +public class TblRoleMenuPriviController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" new file mode 100644 index 00000000..50c085ac --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 规章制度 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblRule") +public class TblRuleController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" new file mode 100644 index 00000000..142d5a30 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 发送日志表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblSendLog") +public class TblSendLogController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" new file mode 100644 index 00000000..54172a9b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 快捷方式图标 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblShortcutIcon") +public class TblShortcutIconController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" new file mode 100644 index 00000000..755d557c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 到期日期 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblStopDate") +public class TblStopDateController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" new file mode 100644 index 00000000..8cccd266 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 系统图标 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblSysDiagrams") +public class TblSysDiagramsController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" new file mode 100644 index 00000000..257900ef --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 系统日志 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblSystemLog") +public class TblSystemLogController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" new file mode 100644 index 00000000..3ba141cd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 待办事项 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblTodo") +public class TblTodoController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" new file mode 100644 index 00000000..0ae181d2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 类型库 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblType") +public class TblTypeController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" new file mode 100644 index 00000000..c498bf80 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户部门表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserDept") +public class TblUserDeptController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" new file mode 100644 index 00000000..30c8e3b6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户分组 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserGroup") +public class TblUserGroupController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" new file mode 100644 index 00000000..a3cf52a5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户档案 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserRecord") +public class TblUserRecordController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" new file mode 100644 index 00000000..f0062bb6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户角色表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserRole") +public class TblUserRoleController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" new file mode 100644 index 00000000..f9143e5f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 用户子公司表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblUserSubCompany") +public class TblUserSubCompanyController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" new file mode 100644 index 00000000..bef2c0fa --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 视频点播 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVod") +public class TblVodController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" new file mode 100644 index 00000000..5693d3f0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 投票数据表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVoteData") +public class TblVoteDataController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" new file mode 100644 index 00000000..04c72127 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 投票数据明细表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVoteDetail") +public class TblVoteDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" new file mode 100644 index 00000000..3a015b99 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 投票项目表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVoteProject1") +public class TblVoteProject1Controller { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" new file mode 100644 index 00000000..c4fb52b4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 投票题目表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblVoteSubject") +public class TblVoteSubjectController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" new file mode 100644 index 00000000..7b4bbf77 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 工作日期 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/tblWorkDate") +public class TblWorkDateController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" new file mode 100644 index 00000000..18235f72 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 催缴短信提醒日志 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyAskMsgRemindLog") +public class WyAskMsgRemindLogController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" new file mode 100644 index 00000000..b02c3008 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 车辆管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCarManage") +public class WyCarManageController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" new file mode 100644 index 00000000..bc562c16 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 车位管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCarSpaceManage") +public class WyCarSpaceManageController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" new file mode 100644 index 00000000..6c3ea69f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 车位租赁 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCarSpaceRent") +public class WyCarSpaceRentController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" new file mode 100644 index 00000000..6bc45a0a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 车位租赁缴费明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCarSpaceRentDetail") +public class WyCarSpaceRentDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" new file mode 100644 index 00000000..10f7e8f4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 清洁检查 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCleanCheck") +public class WyCleanCheckController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" new file mode 100644 index 00000000..321e6374 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 清洁安排 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCleanPlan") +public class WyCleanPlanController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" new file mode 100644 index 00000000..5a129f62 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 清洁记录 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCleanRecord") +public class WyCleanRecordController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" new file mode 100644 index 00000000..970a3bde --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业委会成员 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCommitteeMembers") +public class WyCommitteeMembersController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" new file mode 100644 index 00000000..bc4bb6a3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业委会会议 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCommitteeMetting") +public class WyCommitteeMettingController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" new file mode 100644 index 00000000..10bb9e2c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 社区活动 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyCommunityEvent") +public class WyCommunityEventController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" new file mode 100644 index 00000000..f4d52721 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 执勤管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyDutyManage") +public class WyDutyManageController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" new file mode 100644 index 00000000..64c66222 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 信件收取 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEmailReceive") +public class WyEmailReceiveController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" new file mode 100644 index 00000000..946e535e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费收入明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateIncomeDetail") +public class WyEstateIncomeDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" new file mode 100644 index 00000000..0d7f2858 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费收入项目 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateIncomeProject") +public class WyEstateIncomeProjectController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" new file mode 100644 index 00000000..ec356f9f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘费用 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateMoney") +public class WyEstateMoneyController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" new file mode 100644 index 00000000..2dc92abc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费支出明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateOutDetail") +public class WyEstateOutDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" new file mode 100644 index 00000000..166cd50a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费支出明细_审批子表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateOutDetailSub") +public class WyEstateOutDetailSubController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" new file mode 100644 index 00000000..18993a8d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 楼盘经费支出项目 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyEstateOutProject") +public class WyEstateOutProjectController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" new file mode 100644 index 00000000..4cae98b1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 消防事故 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyFireAccident") +public class WyFireAccidentController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" new file mode 100644 index 00000000..1bf89c28 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 消防巡查 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyFireCheck") +public class WyFireCheckController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" new file mode 100644 index 00000000..e68b0eb1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 消防演练 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyFireExercise") +public class WyFireExerciseController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" new file mode 100644 index 00000000..b30a3836 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 消防设施 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyFireFacility") +public class WyFireFacilityController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" new file mode 100644 index 00000000..4e8c12e7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物品出入 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyGoodsInout") +public class WyGoodsInoutController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" new file mode 100644 index 00000000..fe3a85fd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 绿化检查 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyGreenCheck") +public class WyGreenCheckController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" new file mode 100644 index 00000000..871de4f8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 绿化设置 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyGreenSetting") +public class WyGreenSettingController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" new file mode 100644 index 00000000..f3fd75bc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 收入明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyIncomeDetail") +public class WyIncomeDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" new file mode 100644 index 00000000..3e02ad48 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 收入项目 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyIncomeProject") +public class WyIncomeProjectController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" new file mode 100644 index 00000000..65199184 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 票据管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyNoteManage") +public class WyNoteManageController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" new file mode 100644 index 00000000..443041b6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 支出明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyOutDetail") +public class WyOutDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" new file mode 100644 index 00000000..58296699 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 支出项目 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyOutProject") +public class WyOutProjectController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" new file mode 100644 index 00000000..ae205505 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 图纸管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyPictureManage") +public class WyPictureManageController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" new file mode 100644 index 00000000..088db74b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物业接管工程明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyPropertyTakeoverDetail") +public class WyPropertyTakeoverDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" new file mode 100644 index 00000000..8949939f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物业接管概要 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyPropertyTakeoverSchema") +public class WyPropertyTakeoverSchemaController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" new file mode 100644 index 00000000..d7419b61 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 续费短信提醒日志 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyRenewMsgRemindLog") +public class WyRenewMsgRemindLogController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" new file mode 100644 index 00000000..7e04fe0a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 保安安排 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wySecurityArrange") +public class WySecurityArrangeController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" new file mode 100644 index 00000000..1bd9aea8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 客服收银组 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyServiceCashierGroup") +public class WyServiceCashierGroupController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" new file mode 100644 index 00000000..c16edd2f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 物业接管资料明细 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyTakeoverDataDetail") +public class WyTakeoverDataDetailController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" new file mode 100644 index 00000000..738d9db3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 植被信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyVegetationInformation") +public class WyVegetationInformationController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" new file mode 100644 index 00000000..52fb39ff --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 来访管理 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/wyVisitManage") +public class WyVisitManageController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" new file mode 100644 index 00000000..07d1512c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主装修 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhConstomerDecorate") +public class ZhConstomerDecorateController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" new file mode 100644 index 00000000..d9cf9401 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主投诉 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhConsumerComplain") +public class ZhConsumerComplainController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" new file mode 100644 index 00000000..16ab6b5f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主服务_办理结果 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCsHandleResult") +public class ZhCsHandleResultController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" new file mode 100644 index 00000000..5e3b0b23 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主服务_办理进度 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCsHandleSpeed") +public class ZhCsHandleSpeedController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" new file mode 100644 index 00000000..9fba207c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主请修 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerAskFix") +public class ZhCustomerAskFixController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" new file mode 100644 index 00000000..bdeda7fd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主验房 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerCheck") +public class ZhCustomerCheckController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" new file mode 100644 index 00000000..72e41402 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主信息表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomer") +public class ZhCustomerController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" new file mode 100644 index 00000000..a9f515f2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主房产对照表 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerEstate") +public class ZhCustomerEstateController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" new file mode 100644 index 00000000..7d871844 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主成员 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerMembers") +public class ZhCustomerMembersController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" new file mode 100644 index 00000000..09fd9261 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主服务 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerService") +public class ZhCustomerServiceController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" new file mode 100644 index 00000000..fbaaf909 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 业主服务类型 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhCustomerServiceType") +public class ZhCustomerServiceTypeController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" new file mode 100644 index 00000000..fcb9d8ea --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同房间 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContractCell") +public class ZhRentContractCellController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" new file mode 100644 index 00000000..fc9a7e73 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同变更 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContractChange") +public class ZhRentContractChangeController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" new file mode 100644 index 00000000..868064e6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContract") +public class ZhRentContractController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" new file mode 100644 index 00000000..33ee960c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同退款 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContractRefund") +public class ZhRentContractRefundController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" new file mode 100644 index 00000000..8d0a6df4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁合同返利 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentContractReturn") +public class ZhRentContractReturnController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" new file mode 100644 index 00000000..a8b21571 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租户信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentInformation") +public class ZhRentInformationController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" new file mode 100644 index 00000000..6a4c3d09 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租金收取 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentReceive") +public class ZhRentReceiveController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" new file mode 100644 index 00000000..a4364501 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租赁分租信息 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentShare") +public class ZhRentShareController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" new file mode 100644 index 00000000..011a2ffd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" @@ -0,0 +1,21 @@ +package com.mashibing.controller.base; + + +import org.springframework.web.bind.annotation.RequestMapping; + +import org.springframework.stereotype.Controller; + +/** + *

+ * 租户转兑 前端控制器 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Controller +@RequestMapping("/zhRentTransfer") +public class ZhRentTransferController { + +} + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" new file mode 100644 index 00000000..02c5f487 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" @@ -0,0 +1,19 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcBuilding; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Component; + +/** + *

+ * 楼宇信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcBuildingMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" new file mode 100644 index 00000000..eac947f9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, estate_code, building_code, building_name, building_function, used_area, build_area, build_permission_id, sale_permission_id, finish_date, over_roof_date, decorate, struct_type, damage_grade, unit_count, building_type, clean_floor, mop_floor, channel_area, elevator, channel_door, evevator_door, water_well_door, electric_well_door, window_shades, hydrant, mirrors, unit_door, harden_ground_area, green_area, no_green_area, water_by_person, is_elevator, is_second_water_electric, random_identify, remark + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" new file mode 100644 index 00000000..33d8bb1c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcCellAddbuild; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 房间加建信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellAddbuildMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" new file mode 100644 index 00000000..6e7344a6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, cell_id, addbuild_area, addbuild_time, addbuild_state, addbuild_desc, addbuild_accessory, operate_person, operate_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" new file mode 100644 index 00000000..f5511605 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" @@ -0,0 +1,18 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcCell; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springframework.stereotype.Component; + +/** + *

+ * 房间信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcCellMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" new file mode 100644 index 00000000..57448c20 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, unit_code, cell_code, cell_name, cell_house_code, cell_toward_code, cell_function, cell_decorate_code, cell_used_area, cell_build_area, carport_area, car_area, loft_area, store_area, floor_number, last_debt, property_type, rent_money, length, width, stall_use, stall_area, is_sale, is_rent, sale_contract_id, rent_contract_id, remark, factor, cell_property, store_id, car_licence_id, car_space_id + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" new file mode 100644 index 00000000..14fe26da --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" @@ -0,0 +1,18 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcEstate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springframework.stereotype.Component; + +/** + *

+ * 楼盘信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcEstateMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" new file mode 100644 index 00000000..efe2c3ac --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, estate_code, estate_name, estate_addr, cover_area, build_area, green_area, road_area, building_number, building_leader, company_name, company_behalf, contact, contact_phone, contact_addr, car_space_delay_rate, car_space_over_day, estate_type, street_lamp_number, hfcNum, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" new file mode 100644 index 00000000..76480c81 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" @@ -0,0 +1,18 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcUnit; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springframework.stereotype.Component; + +/** + *

+ * 单元信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcUnitMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" new file mode 100644 index 00000000..b6ee64ed --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, building_code, unit_code, unit_name, start_floor, stop_floor, start_cell_id, stop_cell_id, remark + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" new file mode 100644 index 00000000..76cf5cdf --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyEstateTemporary; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 房产信息临时表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyEstateTemporaryMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" new file mode 100644 index 00000000..9996c751 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + company, estate_code, estate_name, building_code, building_name, unit_code, unit_name, cell_code, cell_name, build_area, floor_number, function, remark, operate_person + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" new file mode 100644 index 00000000..9ca0c09e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyHistoryMoneyTemp; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 历史费用临时表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyHistoryMoneyTempMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" new file mode 100644 index 00000000..fe7a89f0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + cell_id, cell_name, build_area, price_unit, money, money_start_date, money_stop_date, remark, operate_person + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" new file mode 100644 index 00000000..7e0be5cd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyInvalidMain; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 作废单主单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidMainMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" new file mode 100644 index 00000000..3a6a3255 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + invalid_id, receive_id, cell_id, receive_date, customer_name, money, real_receive_money, discount_money, receive_method, is_customer, receive_money, money_id, estate_id, current_delay_money, last_delay_money, invalid_type, receipt_number, invoice_number, receive_person, remark, company, invalid_reason, invalid_date, invalid_person + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" new file mode 100644 index 00000000..b9b60d1d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyInvalidSub; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 作废单子单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidSubMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" new file mode 100644 index 00000000..45442b4e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + invalid_detail_id, invalid_id, money_setting_name, charge_unit, last_read_number, current_read_number, real_used, money, delay_money, current_should_pay, over_day, money_start_date, money_stop_date, pay_limit_day, input_person, standing_book_id, receive_cycle, derate_money, money_id, delay_derate_money, mop_floor, money_mult + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" new file mode 100644 index 00000000..1bfdebe1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneySetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费项设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneySettingMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" new file mode 100644 index 00000000..90042a3f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_setting_code, money_setting_name, receive_type, price_unit, receive_cycle, money_type, is_update_price, is_convenient_money, min_used_number, is_step_receive, step_condition_1, step_price_1, step_condition_21, step_condition_22, step_price_2, step_condition_31, step_condition_32, step_price_3, step_condition_41, step_condition_42, step_price_4, step_condition_5, step_price_5, renew_message, receive_warn_stop_day, max_warn_number, ask_message, no_receive_warn_stop_day, associate_money_id, delay_rate, delay_over_day, company, receive_print_hidden + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" new file mode 100644 index 00000000..7caa4321 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneyTemporary01; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用临时表1 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary01Mapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" new file mode 100644 index 00000000..04e9ca1d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_id, record_name, record_remark, cell_id, estate_name, building_name, unit_name, cell_name, customer_name, box_id, price_unit, last_read_number, current_read_number, current_use_number, should_pay, last_pay_stop_date, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle, operate_person, operate_date, floor_factor, money_mult + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" new file mode 100644 index 00000000..af04a3f1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneyTemporary02; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用临时表2 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary02Mapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" new file mode 100644 index 00000000..11f47005 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_id, record_name, record_remark, cell_id, estate_name, building_name, unit_name, cell_name, customer_name, charge_unit, price_unit, should_pay, last_pay_stop_date, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle, operate_person, operate_date, floor_factor + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" new file mode 100644 index 00000000..0a2dfcfb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneyTemporary03; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用临时表3 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary03Mapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" new file mode 100644 index 00000000..74d6162c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_setting_code, record_name, record_remark, public_box_name, price_unit, share_number, last_read_number, current_read_number, current_use_number, should_pay, last_pay_stop_date, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle, operate_person, operate_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" new file mode 100644 index 00000000..a08eec0f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyMoneyTemporary04; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用临时表4 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary04Mapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" new file mode 100644 index 00000000..e4dcb056 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, money_setting_code, cell_id, estate_name, building_name, unit_name, cell_name, customer_name, box_id, share_money, current_share_number, price_unit, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle, primary_identify, operate_person, operate_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" new file mode 100644 index 00000000..45dc9de6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyPreReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 预收款管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPreReceiveMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" new file mode 100644 index 00000000..6e4bd40b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, voucher_number, cell_id, summary, money, handler_person, receive_date, input_person, company, receive_method, data_source, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" new file mode 100644 index 00000000..4c07861b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyPropertyMoneyDist; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物业费分布 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPropertyMoneyDistMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" new file mode 100644 index 00000000..d61ef5dc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, cell_id, money_id, is_public_money, current_read_number, last_charge_unit, floor_factor, use_number_mult + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" new file mode 100644 index 00000000..1d28dc78 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyPublicBox; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公表信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" new file mode 100644 index 00000000..b7702087 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + public_box_id, money_id, public_box_read_number, share_method, public_box_state + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" new file mode 100644 index 00000000..4e22e989 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyPublicBoxUser; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公表关联用户 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxUserMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" new file mode 100644 index 00000000..e0f94645 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, public_box_id, cell_id + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" new file mode 100644 index 00000000..417fb677 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyReceiptMain; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 收款单主单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptMainMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" new file mode 100644 index 00000000..0f6b68ad --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, receive_date, customer_name, should_pay_total, current_should_receive, discount_money, receive_method, is_customer, current_real_receive, temporary_money_id, estate_id, current_delay_money, last_delay_money, title, receive_type, receipt_number, invoice_number, status, remark, receive_person, company, operate_date, update_person, update_date, update_reason, receipt_check_status, receipt_check_person, receipt_check_time, receipt_check_advice, money_check_status, money_check_person, money_check_time, money_check_advice + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" new file mode 100644 index 00000000..cce5dc33 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyReceiptSub; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 收款单子单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptSubMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" new file mode 100644 index 00000000..b562327f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + receipt_detail_id, receipt_id, money_setting_name, charge_unit, last_read_number, current_read_number, real_used, money, delay_money, delay_derate_money, current_should_pay, over_day, money_start_date, money_stop_date, pay_limit_day, floor_factor, input_person, standing_book_id, receive_cycle, derate_money, money_id, update_reason, update_person, update_date, money_mult + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" new file mode 100644 index 00000000..d2ca32c1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyRefundMain; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 退款单主单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundMainMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" new file mode 100644 index 00000000..9e614634 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + refund_id, receipt_id, cell_id, receive_cycle, customer_name, money, real_receive_money, discount_money, receive_method, is_customer, receive_money, money_id, estate_id, current_delay_money, last_delay_money, refund_type, receipt_number, invoice_number, receive_person, remark, company, refund_reason, refund_time, refund_person, check_status, check_person, check_time, check_advice + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" new file mode 100644 index 00000000..afbc04e8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyRefundSub; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 退款单子单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundSubMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" new file mode 100644 index 00000000..37b6e890 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, refund_id, money_setting_name, charge_unit, last_read_number, current_read_number, real_used, money, delay_money, current_should_pay, over_day, money_start_date, money_stop_date, pay_limit_day, input_person, standing_book_id, receive_cycle, money_derate, money_id, delay_derate_money, money_mult, floor_factor + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" new file mode 100644 index 00000000..c2d25edd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FySaleContract; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 销售合同 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FySaleContractMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" new file mode 100644 index 00000000..35b423aa --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + sale_contract_id, cell_id, contract_money, contract_date, pay_method, id_number, customer_name, online_phone, phone_number, remark, contract_attach + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" new file mode 100644 index 00000000..22b1e67c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyShareStandingBookDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公摊费用台账公表明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cb2be2cc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + id, standing_book_id, public_box_name, price_unit, share_number, last_read_number, current_read_number, current_use_number, should_pay, last_pay_stop_date, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_cycle + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" new file mode 100644 index 00000000..af81c2c3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyShareStandingBook; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公摊费用台账概要 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" new file mode 100644 index 00000000..9e2ba5af --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, standing_book_name, associate_cost_code, remark, create_date, create_person, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" new file mode 100644 index 00000000..bbd98de1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyShareUserDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 公摊费用台账用户明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareUserDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" new file mode 100644 index 00000000..192f82be --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, standing_book_id, cell_id, customer_name, box_id, share_money, current_share_number, current_pay_start_date, current_pay_stop_date, current_pay_limit_date, receive_identify, price_unit, cost_identify, receive_id, refund_number, receive_cycle, derate_money, should_pay, invalid_number, derate_delay_money + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" new file mode 100644 index 00000000..0646e29f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyStandingBookDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用台账明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cd7b914d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, standing_book_id, cell_id, customer_name, box_id, charge_unit, price_unit, last_read_number, current_read_number, current_use_number, should_pay, last_pay_stop_date, last_pay_start_date, current_pay_stop_date, current_pay_limit_date, cost_identify, receive_identify, receive_id, refund_number, receive_cycle, derate_money, should_receive, invalid_number, floor_factor, derate_delay_money, pay_mult + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" new file mode 100644 index 00000000..5434c4a1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyStandingBook; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 费用台账概要 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" new file mode 100644 index 00000000..3561591e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, standing_book_name, associate_cost_code, remark, creation_date, creation_person, associate_standing_book_id, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" new file mode 100644 index 00000000..b6ceb6ee --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FyTemporaryMoneySetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 临客费项设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyTemporaryMoneySettingMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" new file mode 100644 index 00000000..07469a2f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, temporary_money_name, upper_money_id, price_unit, money_description, create_person, create_date, update_person, update_date, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" new file mode 100644 index 00000000..e438f742 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblAdviceBox; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 意见箱 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAdviceBoxMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" new file mode 100644 index 00000000..cdf835b7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, name, type, status, admin_id, user_range_id, User_range_name, remark, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" new file mode 100644 index 00000000..7d3a782f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblAnswerData; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 题目可选答案信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAnswerDataMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" new file mode 100644 index 00000000..3d71ac1f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, subject_id, answer_name, answer_type, input_record_person, input_record_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" new file mode 100644 index 00000000..40c37016 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblArgRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 参数档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblArgRecordMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" new file mode 100644 index 00000000..b6e9e973 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + arg_code, arg_name, arg_value, arg_desc, arg_order, belong_product + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" new file mode 100644 index 00000000..4196be6c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblAttupload; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 附件 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAttuploadMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" new file mode 100644 index 00000000..b02b1db2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + attID, attName, attNewName, attKey, attClass + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" new file mode 100644 index 00000000..d7144d62 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblColor; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 颜色管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblColorMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" new file mode 100644 index 00000000..33c9dad8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, color + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" new file mode 100644 index 00000000..774e562e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCommonLanguage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 常用语 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonLanguageMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" new file mode 100644 index 00000000..0805d128 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, content, status, category, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" new file mode 100644 index 00000000..e0983f8f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCommonMessage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 常用短信 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonMessageMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" new file mode 100644 index 00000000..320b6709 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, message_content, message_type + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" new file mode 100644 index 00000000..34692b8d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" @@ -0,0 +1,21 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCompany; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springframework.stereotype.Component; + +import java.util.List; + +/** + *

+ * 企业档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface TblCompanyMapper extends BaseMapper { + + public List selectCompany(); +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" new file mode 100644 index 00000000..dd3a87b4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, company_full_name, company_simple_name, company_english_name, company_brand, company_type, company_trade, company_addr, post_code, company_phone, company_fax, company_website, company_email, company_national, company_land, open_bank, bank_account, company_leader, register_date, register_money, employee_number, company_intro, remark + + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" new file mode 100644 index 00000000..4f9bfbc4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCompanyRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 单位名录 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCompanyRecordMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" new file mode 100644 index 00000000..48558ff5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + id, company_name, company_add, company_type, compant_grade, parent_company, leader, post_code, company_phone, fax_number, email, simple_desc, remark, input_person, input_time + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" new file mode 100644 index 00000000..d19bc2a5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblComparyNotice; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 企业公告 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblComparyNoticeMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" new file mode 100644 index 00000000..656febfa --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, notice_theme, notice_content, start_date, stop_date, receive_type, notice_category, attach_name, attach_path, status, notice_type, notice_attach, input_person, input_date, check_person, check_date, check_advice, allow_user_code, allow_user_name + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" new file mode 100644 index 00000000..35c28e50 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCustomType; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 自定义类型 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCustomTypeMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" new file mode 100644 index 00000000..844dfed2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, name, status, category + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" new file mode 100644 index 00000000..b3a21a79 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDashboard; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 仪表盘 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDashboardMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" new file mode 100644 index 00000000..9adb7d0a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, data_item, more_path, privileges, Status, belong_product + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" new file mode 100644 index 00000000..b238c676 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 工作日期 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDateMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" new file mode 100644 index 00000000..85b85050 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" new file mode 100644 index 00000000..72b37cbe --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDbSetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 数据库设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbSettingMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" new file mode 100644 index 00000000..559dabd3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + db_Url, db_username, db_pwd, db_lib_name, save_path, save_name + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" new file mode 100644 index 00000000..32bb96ec --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDbbackup; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 数据库备份 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbbackupMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" new file mode 100644 index 00000000..4ca49194 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, db_name, db_url, operate_id, operate_person, operate_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" new file mode 100644 index 00000000..f24a0930 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDbrecovery; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 数据库还原 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbrecoveryMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" new file mode 100644 index 00000000..c6180843 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, db_name, db_url, operate_id, operate_person, operate_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" new file mode 100644 index 00000000..be418388 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDbsource; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 数据库 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbsourceMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" new file mode 100644 index 00000000..cfd2d95c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, source_name, source_desc, source_type, source_class, id_clear, update_date, belong_product + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" new file mode 100644 index 00000000..8e85fa24 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDept; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 部门信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" new file mode 100644 index 00000000..37832de8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, dept_code, dept_name, dept_leader, dept_phone, dept_type, dept_fax, dept_parent, dept_line, dept_privileges, dept_manage_privileges, organ_category, dept_person_number, input_person, input_time, dept_remark + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" new file mode 100644 index 00000000..ee45cbdc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDeptkey; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 部门key Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptkeyMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" new file mode 100644 index 00000000..46e98354 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, dept_name + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" new file mode 100644 index 00000000..f61480a2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblDesktop; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 桌面 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDesktopMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" new file mode 100644 index 00000000..1513b0bd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, name, more_path, privileges, status, belong_product + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" new file mode 100644 index 00000000..d7a52ea0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEmailReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 邮件接受 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailReceiveMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" new file mode 100644 index 00000000..30a86c07 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, email_send_id, receive_id, receive_person_code, receive_person_name, email_title, email_content, important_grade, status, is_delete, is_secret_send, email_attach, receive_type, send_person_id, send_person_name, send_date, receive_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" new file mode 100644 index 00000000..760d40fa --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEmailSend; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 邮件发送 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailSendMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" new file mode 100644 index 00000000..c0807b5d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + id, receive_person_code, receive_person_name, email_title, email_content, important_grade, is_draft, is_delete, is_secret_send, email_attach, send_type, send_person, send_name, send_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" new file mode 100644 index 00000000..c953523e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEmployeeContactCategory; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 员工通讯录类别 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactCategoryMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" new file mode 100644 index 00000000..458488e0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, category_name, order_id, remark, parent_category_id, line, create_person_id, create_person, privileges + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" new file mode 100644 index 00000000..5c538e3d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEmployeeContact; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 员工通讯录 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" new file mode 100644 index 00000000..dc8aa233 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, order_id, category_name, category_id, name, work_num, dept, role, position, gender, birthday, office_phone, fax, move_phone, home_phone, email, qq, wchat, inner_msn, addr, post_code, remark, create_person_id, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" new file mode 100644 index 00000000..3392fe18 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblEnvirSetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 环境配置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEnvirSettingMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" new file mode 100644 index 00000000..21fa88ee --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, logo_name, product_name, version, current_version, type, is_main, custom_text_one, custom_text_two, custom_text_three, custom_text_four, set_time, product_id + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" new file mode 100644 index 00000000..5236c6b7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblFunctionModel; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 功能模块 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblFunctionModelMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" new file mode 100644 index 00000000..35ef93cd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, model_name, model_type, model_parent, model_status, model_url, model_analyse_ref, model_report_analyse, model_icon, model_property, model_desc, is_control, m_full, m_add, m_mod, m_del, m_exp, m_aud, m_exe, m_que, d_person, d_dept, d_company, orderid, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" new file mode 100644 index 00000000..f43dea95 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblGroupRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 群组档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupRecordMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" new file mode 100644 index 00000000..fbf84dfa --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + group_record_id, group_name, group_type, group_desc, group_member_id, group_member_name, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" new file mode 100644 index 00000000..38ec96a0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblGroupsTodo; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 分组待办事项 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsTodoMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" new file mode 100644 index 00000000..eacce737 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, todo_id + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" new file mode 100644 index 00000000..36fba31c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblGroupsUser; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 分组用户 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsUserMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" new file mode 100644 index 00000000..a8fbf84d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + group_id, obj_id, obj_type + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" new file mode 100644 index 00000000..01a62dbb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblLoginLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 登录日志 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblLoginLogMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" new file mode 100644 index 00000000..d8c1d1f6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, login_date, login_ip, login_status, open_mk, login_mechine_name, login_port, login_door + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" new file mode 100644 index 00000000..53c62c6c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMainMenu; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 主菜单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMainMenuMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" new file mode 100644 index 00000000..4a25e381 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, main_menu_name, main_menu_url, main_menu_icon, main_menu_status, main_menu_key, main_menu_order, belong_product + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" new file mode 100644 index 00000000..7766e7c0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMessageCharge; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 短信充值单 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageChargeMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" new file mode 100644 index 00000000..3d8d6998 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + charge_number, charge_account, charge_money, charge_desc, charge_person, charge_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" new file mode 100644 index 00000000..750c80a4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMessageReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 短信接受表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageReceiveMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" new file mode 100644 index 00000000..cdcea02d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, phone, extend_phone, message_content, reply_date, position_order, receive_date, read_tag, read_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" new file mode 100644 index 00000000..eac8eddc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMessageSend; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 信息发送 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageSendMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" new file mode 100644 index 00000000..8c76b775 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, content, send_person, send_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" new file mode 100644 index 00000000..a44766d3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMsgReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 信息接受 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMsgReceiveMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" new file mode 100644 index 00000000..baa161cf --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, receive_person, status + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" new file mode 100644 index 00000000..66be8bd9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMyNote; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的记事本 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyNoteMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" new file mode 100644 index 00000000..c4fe8b9b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, create_person_id, title, type, place, content, is_private, is_repeat, repeat, repeat_stop, is_remain, remain_day, start_date, stop_date, order_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" new file mode 100644 index 00000000..9956d03c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMyadvice; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的意见 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyadviceMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" new file mode 100644 index 00000000..378ae930 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, title, content, advice_box, status, attach_name, publisher_id, publisher_name, publisher_date, reply_content, reply_id, reply_name, reply_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" new file mode 100644 index 00000000..592f2f5e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMydash; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的驾驶舱 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydashMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" new file mode 100644 index 00000000..dc567184 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, dash_id, order_id, username, show_num + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" new file mode 100644 index 00000000..fe8dc6f8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMydesk; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的桌面 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydeskMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" new file mode 100644 index 00000000..ef31ed22 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, belong_model, order_id, username, show_num + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" new file mode 100644 index 00000000..88fe58d7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMyplan; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 我的日程 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyplanMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" new file mode 100644 index 00000000..e56d1170 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + id, plan_theme, plan_addr, start_date, stop_date, plan_type, plan_status, plan_prior, field_bak, plan_desc, attach_name, attach_url, owner, create_date, plan_attach + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" new file mode 100644 index 00000000..dca74c9e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblMyset; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 个人设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMysetMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" new file mode 100644 index 00000000..53f67262 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + id, username, id_remain, remain_interval, remain_window_open, message_remain, default_main, email_all, smtp_addr, login_user, login_pwd, mail_port, send_person, page_count + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" new file mode 100644 index 00000000..8a2e2c50 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblNetdiskDir; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 网络硬盘_文件夹 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskDirMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" new file mode 100644 index 00000000..2066fc38 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, name, parent_dir, is_share, user_id, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" new file mode 100644 index 00000000..829761c5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblNetdiskUrl; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 网络硬盘路径 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskUrlMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" new file mode 100644 index 00000000..76b4cc68 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, dir_id, file_name, new_name, file_type, file_size, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" new file mode 100644 index 00000000..c42a30f0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblPositionRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 职位档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPositionRecordMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" new file mode 100644 index 00000000..b6197ea0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, position_name, position_desc, position_duty, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" new file mode 100644 index 00000000..029b7a28 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblPrintPaper; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 打印纸张宽度设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintPaperMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" new file mode 100644 index 00000000..1bee0591 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, paper_name, paper_value, paper_status + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" new file mode 100644 index 00000000..40be953a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblPrintParam; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 打印参数 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintParamMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" new file mode 100644 index 00000000..161d6c48 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + print_id, print_name, print_value, print_desc + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" new file mode 100644 index 00000000..2b00fd46 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblQuick; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 快捷方式 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblQuickMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" new file mode 100644 index 00000000..e27d5181 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, quick_name, url_param, code_path, icon_name, mechine_name, public_type, type, input_record_person, input_record_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" new file mode 100644 index 00000000..aa7fe8dd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblRole; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 角色档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" new file mode 100644 index 00000000..f57ab44b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, role_name, role_type, role_privileges, role_remark, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" new file mode 100644 index 00000000..77f9a37c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblRoleMenuPrivi; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 角色菜单权限 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleMenuPriviMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" new file mode 100644 index 00000000..160b35af --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + role_id, model_id + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" new file mode 100644 index 00000000..d40db931 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblRule; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 规章制度 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRuleMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" new file mode 100644 index 00000000..a862b66c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, title, content, use_range, category, article_number, level, secret_level, title_word, publish_company, attach_name, attach_path, status, create_person, create_date, check_person, check_date, check_advice, allow_user_code, allow_user_name, rule_attach + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" new file mode 100644 index 00000000..b2595e2c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblSendLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 发送日志表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSendLogMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" new file mode 100644 index 00000000..20e131e1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, send_name, request_date, send_tag, timing_date, message_type, extend_phone, receive_phone, message_content, is_send, receive_identify + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" new file mode 100644 index 00000000..7d234a29 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblShortcutIcon; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 快捷方式图标 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblShortcutIconMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" new file mode 100644 index 00000000..71994c36 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, icon_name, icon_path, status + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" new file mode 100644 index 00000000..b2796ad4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblStopDate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 到期日期 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblStopDateMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" new file mode 100644 index 00000000..53b841f1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, name, days + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" new file mode 100644 index 00000000..f7182607 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblSysDiagrams; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 系统图标 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSysDiagramsMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" new file mode 100644 index 00000000..ee5d0d60 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + diagram_name, belong_person, diagram_id, diagram_version, diagram_definition + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" new file mode 100644 index 00000000..be89dacb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblSystemLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 系统日志 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSystemLogMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" new file mode 100644 index 00000000..9d79e6df --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, log_content, model_id, ip_addr, dept_privileges, operate_id, operate_name, dept_id, dept_name, operate_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" new file mode 100644 index 00000000..f7839dbe --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblTodo; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 待办事项 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTodoMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" new file mode 100644 index 00000000..51e5975d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, name, privileges, status, url, show_number, days, belong_product + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" new file mode 100644 index 00000000..70956c0b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblType; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 类型库 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTypeMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" new file mode 100644 index 00000000..eb22c5a6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, type_name, type_status, belong_product + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" new file mode 100644 index 00000000..bdcce86b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserDept; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 用户部门表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserDeptMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" new file mode 100644 index 00000000..e6d8657d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, dept_id + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" new file mode 100644 index 00000000..7842c31a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserGroup; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 用户分组 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserGroupMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" new file mode 100644 index 00000000..ffa8728d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, group_name, group_type, group_desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" new file mode 100644 index 00000000..36794b99 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" @@ -0,0 +1,20 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Param; +import org.springframework.stereotype.Component; + +/** + *

+ * 用户档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface TblUserRecordMapper extends BaseMapper { + + public TblUserRecord login(@Param("username") String username, @Param("password") String password); +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" new file mode 100644 index 00000000..dfaa7780 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, user_name, user_password, user_type, user_role, user_gender, user_dept, user_job, user_status, office_phone, inner_phone, move_phone, email, is_send_msg, start_date, stop_date, birthday, ip_rule, user_hiredate, is_send_wchat, remark, company, is_dept_admin, last_login_date, create_person, create_date + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" new file mode 100644 index 00000000..0f1103fc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserRole; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 用户角色表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserRoleMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" new file mode 100644 index 00000000..6eae3b8f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, role_id + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" new file mode 100644 index 00000000..000795b2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblUserSubCompany; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 用户子公司表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserSubCompanyMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" new file mode 100644 index 00000000..dd40ea54 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, company_id + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" new file mode 100644 index 00000000..6f5da938 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVod; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 视频点播 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVodMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" new file mode 100644 index 00000000..d9f412b6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, video_name, video_source, videl_type, program_name, program_url, simple_intro, is_first, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" new file mode 100644 index 00000000..4c2668e9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVoteData; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 投票数据表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDataMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" new file mode 100644 index 00000000..b671e2c6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, vote_project_id, vote_user_id, vote_user_name, vote_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" new file mode 100644 index 00000000..3eade778 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVoteDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 投票数据明细表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" new file mode 100644 index 00000000..b2144d43 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, vote_id, answer_id, result + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" new file mode 100644 index 00000000..917dfdf1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVoteProject1; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 投票项目表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteProject1Mapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" new file mode 100644 index 00000000..8cccbf63 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, project_name, project_type, project_tag, project_desc, input_record_person, input_record_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" new file mode 100644 index 00000000..382495ba --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblVoteSubject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 投票题目表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteSubjectMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" new file mode 100644 index 00000000..22c9630e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, project_id, subject_name, input_record_person, input_record_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" new file mode 100644 index 00000000..d180ed91 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblWorkDate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 工作日期 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblWorkDateMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" new file mode 100644 index 00000000..0a800a7b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" new file mode 100644 index 00000000..492be76d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyAskMsgRemindLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 催缴短信提醒日志 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyAskMsgRemindLogMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" new file mode 100644 index 00000000..4f14698d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, cell_id, money_id, receive_phone, pay_limit_day, remind_days, cell_name, send_person_id, send_person_name, send_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" new file mode 100644 index 00000000..bf1a8d28 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCarManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 车辆管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarManageMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" new file mode 100644 index 00000000..95452789 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, car_licnece, stop_car_licence, car_owner_name, carport, in_date, out_date, agent, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" new file mode 100644 index 00000000..a8c50a3f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCarSpaceManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 车位管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceManageMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" new file mode 100644 index 00000000..e976b0d3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, car_space_type, car_licence_id, pre_sale_price, pre_rent_price, stop_car_licence, estate_id, manage_type, car_sapce_position, car_sapce_area, owner_id, owner_name, real_sale_price, car_space_category, status, remark, create_person, create_date, update_person, update_date, sale_person, sale_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" new file mode 100644 index 00000000..1e37116b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCarSpaceRentDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 车位租赁缴费明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" new file mode 100644 index 00000000..39f79d5c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, rent_id, pay_type, pay_start_date, pay_stop_date, should_receive, discount_money, delay_money, real_receive_money, desc, receive_id, receive_person_name, receive_date, invoice_number, receive_status, invalid_person_id, invalid_person_name, invalid_reason, invalid_date, receipt_check_status, receipt_check_person, receipt_check_time, receipt_check_advice, money_check_status, money_check_person, money_check_time, money_check_advice, invalid_check_status, invalid_check_person, invalid_check_time, invalid_check_advice + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" new file mode 100644 index 00000000..841388dd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCarSpaceRent; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 车位租赁 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" new file mode 100644 index 00000000..8501fd02 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, constract_id, car_space_id, rent_start_date, rent_stop_date, rent_month, user_id, user_name, car_licence_id, stop_car_licence, rent_per_month, service_money_per_month, sign_date, start_date, stop_date, status, remark, agent_money, is_rent_money, contract_attach, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" new file mode 100644 index 00000000..227fd4b1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCleanCheck; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 清洁检查 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanCheckMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" new file mode 100644 index 00000000..46fe0eb2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, check_date, check_place, check_condition, check_person, clean_person, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" new file mode 100644 index 00000000..e23a1dfd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCleanPlan; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 清洁安排 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanPlanMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" new file mode 100644 index 00000000..84dac630 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, project_name, clean_place, clean_content, leader, clean_date, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" new file mode 100644 index 00000000..ad6991e2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCleanRecord; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 清洁记录 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanRecordMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" new file mode 100644 index 00000000..d7ad9898 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, project_id, clean_condition, clean_date, clean_person, remark + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" new file mode 100644 index 00000000..b1b893c4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCommitteeMembers; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业委会成员 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMembersMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" new file mode 100644 index 00000000..6b519077 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, member_code, member_name, member_duty, birthday, gender, phone_number, work_place, self_introduce, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" new file mode 100644 index 00000000..e1d7502b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCommitteeMetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业委会会议 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMettingMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" new file mode 100644 index 00000000..90027bfe --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, meeting_date, meeting_title, meeting_addr, meeting_content, hoster, recorder, joiner, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" new file mode 100644 index 00000000..ab154d1d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyCommunityEvent; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 社区活动 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommunityEventMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" new file mode 100644 index 00000000..39320f02 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + id, event_date, event_content, hoster, join_person, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" new file mode 100644 index 00000000..4d47cf6b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyDutyManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 执勤管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyDutyManageMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" new file mode 100644 index 00000000..053e4f19 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, duty_date, duty_person, duty_type, duty_place, duty_record, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" new file mode 100644 index 00000000..0071481d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEmailReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 信件收取 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEmailReceiveMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" new file mode 100644 index 00000000..f937d489 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + id, receive_date, get_date, email_type, receive_unit, number, get_person, card_type, card, agent, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" new file mode 100644 index 00000000..7c9db4c5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateIncomeDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费收入明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" new file mode 100644 index 00000000..bc0adf13 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, charge_date, estate_id, income_project, income_money, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" new file mode 100644 index 00000000..1482ae44 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateIncomeProject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费收入项目 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeProjectMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" new file mode 100644 index 00000000..f9c3c1e5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, income_project, parent_income_id, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" new file mode 100644 index 00000000..bdc693ae --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateMoney; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘费用 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateMoneyMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" new file mode 100644 index 00000000..7675256f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, charge_year, money, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" new file mode 100644 index 00000000..0bbfe2d0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateOutDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费支出明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" new file mode 100644 index 00000000..0c874a9d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, charge_date, estate_id, output_main_project, output_sub_project, output_money, output_money_year, output_money_main, status, desc, create_person, create_date, update_person, update_date, next_receive_person_id, next_receive_person_name, send_check_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" new file mode 100644 index 00000000..d0308f03 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateOutDetailSub; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费支出明细_审批子表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailSubMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" new file mode 100644 index 00000000..41a5b27e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, belong_out_project_id, receive_date, check_advice, check_person_id, check_person_name, check_date, check_status + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" new file mode 100644 index 00000000..d041a8b7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyEstateOutProject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘经费支出项目 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutProjectMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" new file mode 100644 index 00000000..a4d7a8d1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, project_name, parent_out_project_id, belong_main_projecct, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" new file mode 100644 index 00000000..54f7c872 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyFireAccident; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 消防事故 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireAccidentMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" new file mode 100644 index 00000000..143f3fb9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, accident_date, accident_place, occur_reason, related_person, handle_result, loss, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" new file mode 100644 index 00000000..10ae7e06 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyFireCheck; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 消防巡查 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireCheckMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" new file mode 100644 index 00000000..9b46c4c4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, check_date, check_place, check_person, check_condition, handle_advice, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" new file mode 100644 index 00000000..cb97cd7f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyFireExercise; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 消防演练 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireExerciseMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" new file mode 100644 index 00000000..1ef75962 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, unit, start_date, stop_date, exercise_purpose, join_persons, assistant_unit, exercise_content, exercise_result, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" new file mode 100644 index 00000000..600459f2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyFireFacility; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 消防设施 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireFacilityMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" new file mode 100644 index 00000000..8f15878b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, facility_name, specifications, unit, number, place, leader, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" new file mode 100644 index 00000000..7020bf79 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyGoodsInout; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物品出入 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGoodsInoutMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" new file mode 100644 index 00000000..f35e7dd6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + id, inout_date, carry_person, id_card, input_type, live_addr, inout_unit, customer_name, inout_goods, agent, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" new file mode 100644 index 00000000..0b0f0d41 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyGreenCheck; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 绿化检查 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenCheckMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" new file mode 100644 index 00000000..b6af8384 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, green_code, check_date, check_condition, handle_condition, check_person, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" new file mode 100644 index 00000000..17e62a80 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyGreenSetting; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 绿化设置 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenSettingMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" new file mode 100644 index 00000000..c6924615 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + setting_code, setting_name, area, green_date, green_place, leader, main_vegetation, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" new file mode 100644 index 00000000..91d8c55d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyIncomeDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 收入明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" new file mode 100644 index 00000000..a7e822e7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, charge_date, estate_id, income_project, income_money, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" new file mode 100644 index 00000000..3b18e868 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyIncomeProject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 收入项目 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeProjectMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" new file mode 100644 index 00000000..75422fe4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, income_project_name, parent_income_id, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" new file mode 100644 index 00000000..54eb80d5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyNoteManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 票据管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyNoteManageMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" new file mode 100644 index 00000000..1e48b3aa --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + note_id, note_prefix, note_serial_number, note_status, note_desc, user_id, user_name, create_person, create_date, update_person, update_date, assign_person_id, assign_person_name, assign_date, print_person_id, print_person_name, print_date, note_type, receive_money_id, invalid_reason, invalid_person_id, invalid_person_name, invalid_date, invalid_confirm_person, invalid_confirm_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" new file mode 100644 index 00000000..8c80c030 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyOutDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 支出明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" new file mode 100644 index 00000000..b1d4888c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, charge_date, estate_id, out_project, out_money, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" new file mode 100644 index 00000000..46d9fab5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyOutProject; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 支出项目 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutProjectMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" new file mode 100644 index 00000000..a14a5e14 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, out_project_name, parent_out_project_id, desc, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" new file mode 100644 index 00000000..825f5e8d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyPictureManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 图纸管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPictureManageMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" new file mode 100644 index 00000000..95e41b69 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, picture_name, picture_type, desc, picture_attach, company, upload_person, upload_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" new file mode 100644 index 00000000..0d4bc17f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyPropertyTakeoverDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物业接管工程明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" new file mode 100644 index 00000000..8a8b5629 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + id, takeover_id, project_name, checked, checked_date, checked_result, finish_date, finish_condition, remark + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" new file mode 100644 index 00000000..8c1dfdc7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyPropertyTakeoverSchema; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物业接管概要 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverSchemaMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" new file mode 100644 index 00000000..cf05f682 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + id, takeover_title, estate_id, remark, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" new file mode 100644 index 00000000..cedd97b6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyRenewMsgRemindLog; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 续费短信提醒日志 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyRenewMsgRemindLogMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" new file mode 100644 index 00000000..aa8112ff --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, cell_id, money_id, receive_phone, money_stop_date, remind_days, cell_name, send_person_id, send_person_name, send_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" new file mode 100644 index 00000000..478dd8ba --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WySecurityArrange; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 保安安排 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WySecurityArrangeMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" new file mode 100644 index 00000000..11270014 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, start_date, stop_date, classes, time_frame, district, waterkeeper, job, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" new file mode 100644 index 00000000..e31decca --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyServiceCashierGroup; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 客服收银组 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyServiceCashierGroupMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" new file mode 100644 index 00000000..815b3fcc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + id, name, include_building_code, include_building_name, include_service_code, include_service_name, desc, company, create_person, create_date, update_person, update_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" new file mode 100644 index 00000000..c60cb46c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyTakeoverDataDetail; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 物业接管资料明细 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyTakeoverDataDetailMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" new file mode 100644 index 00000000..3c62c16e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, takeover_id, data_name, data_copies, data_pages, data_type, file_number, handover_person, receive_person, receive_date, remark + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" new file mode 100644 index 00000000..3e6d01de --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyVegetationInformation; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 植被信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVegetationInformationMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" new file mode 100644 index 00000000..5639f342 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + vegetation_id, vegetation_name, vegetation_type, vegetation_age, vegetation_number, vegetation_unit, vegetation_habit, vegetation_feature, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" new file mode 100644 index 00000000..f5719bb3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.WyVisitManage; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 来访管理 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVisitManageMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" new file mode 100644 index 00000000..8964260f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + id, visit_date, leave_date, visit_person, id_card, visit_addr, visit_reason, visited_person, visited_reason, agent, remark, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" new file mode 100644 index 00000000..7d8b163f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhConstomerDecorate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主装修 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConstomerDecorateMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" new file mode 100644 index 00000000..21d2d998 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, proposer, phone_number, proposer_date, decorate_content, check_person, decorate_ensure_money, check_date, check_advice, leader_phone, execute_company, execute_start_date, leader, checked_person, execute_stop_date, checked_advice, checked_date, remark, status, create_person, create_date, identify, confirm_person, confirm_date, decorate_attach, against_money, invalid_person, invalid_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" new file mode 100644 index 00000000..fd3274b9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhConsumerComplain; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主投诉 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConsumerComplainMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" new file mode 100644 index 00000000..8099f652 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, complain_person, complain_phone, complain_date, phone_number, reception_person, complain_type, status, start_accept_person, start_accept_date, accept_result, accept_finish_person, accept_finish_date, datasource, refer_attach, return_visit_person, return_visit_date, is_satisfy, customer_evaluate, create_person, create_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" new file mode 100644 index 00000000..3ca600a9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCsHandleResult; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主服务_办理结果 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleResultMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" new file mode 100644 index 00000000..d9b094ed --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, service_id, transactor_id, transactor_name, is_leader, relation_company, phone_number, handle_start_date, handle_stop_date, handle_result, handle_finish_attach + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" new file mode 100644 index 00000000..b9e0b5c9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCsHandleSpeed; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主服务_办理进度 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleSpeedMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" new file mode 100644 index 00000000..bdaca0c1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, service_id, transactor_name, transactor_date, transactor_content, recorder_id, recorder_name, recorder_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" new file mode 100644 index 00000000..8be4efbb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerAskFix; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主请修 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerAskFixMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" new file mode 100644 index 00000000..43bf0708 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, proposer, proposer_date, ask_fix_content, check_person, fix_money, check_date, check_advice, leader_phone, execute_company, execute_start_date, leader, checked_person, execute_stop_date, checked_date, checked_advice, remark, status, create_person, create_date, identify, confirm_person, confirm_date, checked_attach, refer_attach, phone_number + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" new file mode 100644 index 00000000..a657f2b3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerCheck; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主验房 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerCheckMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" new file mode 100644 index 00000000..58ea57b6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, check_date, confirm_date, check_item_id, check_item_name, is_pass, consumer_advice, house_keeper_advice, check_person, remark, input_person, input_date, update_person, update_date, check_house_type + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" new file mode 100644 index 00000000..ad812b47 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerEstate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主房产对照表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerEstateMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" new file mode 100644 index 00000000..f5bb4acb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, customer_id, customer_name, cell_id, use_status, live_date, decorate_date, subscription_card_number, house_code, is_pay_decorate_money, pre_pay_decorate_money, remark, orderid + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" new file mode 100644 index 00000000..ffb0e92b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomer; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主信息表 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" new file mode 100644 index 00000000..3bc55605 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, customer_code, customer_pwd, customer_name, customer_birthday, customer_gender, open_bank, nationality, bank_account, education, certificate_number, certificate_type, work_place, customer_duty, police, nation, phone_number, native_place, address, post_code, urgency_user_name, urgency_user_phone, urgency_user_address, customer_status, customer_type, picture, remark, create_person, create_date, update_person, update_date, company, is_bank_withhold + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" new file mode 100644 index 00000000..473ac749 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerMembers; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主成员 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerMembersMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" new file mode 100644 index 00000000..6ddbe86d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + id, belong_customer_id, name, birdate, gender, ration, certificate_type, certificate_number, education, remark, work_place, phone_number, picture + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" new file mode 100644 index 00000000..0f7af99b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerService; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主服务 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" new file mode 100644 index 00000000..afb892bb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, cell_id, proposer, phone_number, appeal_date, appeal_event, status, service_type, create_person, create_date, identify, check_person, check_date, check_advice, service_money, return_visit_person, return_visit_date, is_satisfy, customer_evaluate, refer_attach + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" new file mode 100644 index 00000000..5743d6fd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhCustomerServiceType; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 业主服务类型 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceTypeMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" new file mode 100644 index 00000000..2b3a0c9c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + id, type_name, type_price, type_desc, type_status, create_person, create_date, update_person, update_date, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" new file mode 100644 index 00000000..27f0027b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContractCell; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同房间 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractCellMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" new file mode 100644 index 00000000..350520e6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + id, contract_id, stall_message, operate_person, operate_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" new file mode 100644 index 00000000..face874f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContractChange; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同变更 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractChangeMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" new file mode 100644 index 00000000..31df2ef7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + id, contract_id, change_project, old_value, new_value, desc, change_person, change_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" new file mode 100644 index 00000000..f2bddf67 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContract; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" new file mode 100644 index 00000000..e650c63c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, sign_date, start_date, stop_date, rent_id, contact, start_rent_date, stop_rent_date, contract_rent_money, receive_area, contract_status, ensure_money, ensure_money_desc, contract_attach, rent_days, admin_money, is_rent_money, pay_method, remark, create_person, create_date, update_person, update_date, attract_person_id, attract_person_name, company + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" new file mode 100644 index 00000000..6932d3a6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContractRefund; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同退款 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractRefundMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" new file mode 100644 index 00000000..af18e667 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, rent_id, rent_name, refund_time, refund_money, refund_status, refund_desc, operate_id, operate_person, operate_date, invalid_id, invalid_person, invalid_reason, invalid_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" new file mode 100644 index 00000000..fee9fb8e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentContractReturn; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁合同返利 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractReturnMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" new file mode 100644 index 00000000..e0291c07 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, rent_id, rent_name, return_money_start, return_money_stop, return_cardinal_money, return_rate, current_return_money, return_money_status, return_money_desc, operate_id, operate_name, operate_date, invalid_id, invalid_person, invalid_date, invalid_reason, update_person_id, update_person_name, update_date, update_reason + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" new file mode 100644 index 00000000..b4ffcbf1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentInformation; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租户信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentInformationMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" new file mode 100644 index 00000000..af5fc9a7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, rent_code, rent_name, member_of_right, rent_type, contact, gender, home_number, phone_number, addr, certificate_type, main_sale, certificate_number, status, remark, picture_url, create_person, create_date, update_person, update_date, company, pwd, rent_attach + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" new file mode 100644 index 00000000..4c87b491 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentReceive; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租金收取 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentReceiveMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" new file mode 100644 index 00000000..09e7c566 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, rent_id, rent_name, rent_start_date, rent_stop_date, rent_money, desc, receive_id, receive_person, receive_date, receive_status, invalid_id, invalid_person_name, invalid_reason, invalid_date, past_receive_method, receipt_check_status, receipt_check_person, receipt_check_time, receipt_check_advice + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" new file mode 100644 index 00000000..813331ad --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentShare; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租赁分租信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentShareMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" new file mode 100644 index 00000000..fbb1d425 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id, contract_id, rent_name, share_rent_person, share_cell_id, share_cell_name, contact, phone_number, start_date, stop_date, sale_range, remark, operate_id, operate_person, operate_date, update_person_id, update_person_name, update_date, update_reason + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" new file mode 100644 index 00000000..c484aa0e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.ZhRentTransfer; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 租户转兑 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentTransferMapper extends BaseMapper { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" new file mode 100644 index 00000000..e7b5f0f7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + id, contract_id, transfer_out_id, transfer_out_name, transfer_in_id, transfer_in_name, change_name_money, transfer_desc, transfer_date, operate_person, operate_date + + + diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" new file mode 100644 index 00000000..faf18ebc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" @@ -0,0 +1,28 @@ +package com.mashibing.returnJson; + +public class Permission { + + private String permissionId; + + public Permission() { + } + + public Permission(String permissionId) { + this.permissionId = permissionId; + } + + public String getPermissionId() { + return permissionId; + } + + public void setPermissionId(String permissionId) { + this.permissionId = permissionId; + } + + @Override + public String toString() { + return "Permission{" + + "permissionId='" + permissionId + '\'' + + '}'; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" new file mode 100644 index 00000000..c72ead08 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" @@ -0,0 +1,23 @@ +package com.mashibing.returnJson; + +import java.util.List; + +public class Permissions { + + private List permissions; + + public List getPermissions() { + return permissions; + } + + public void setPermissions(List permissions) { + this.permissions = permissions; + } + + @Override + public String toString() { + return "Permissions{" + + "permissions=" + permissions + + '}'; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" new file mode 100644 index 00000000..b195bfd1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" @@ -0,0 +1,53 @@ +package com.mashibing.returnJson; + +public class ReturnObject { + + private Integer code = 200; + private String message = ""; + private Object result; + + public ReturnObject() { + } + + public ReturnObject(Object result) { + this.result = result; + } + + public ReturnObject(String message, Object result) { + this.message = message; + this.result = result; + } + + public Integer getCode() { + return code; + } + + public void setCode(Integer code) { + this.code = code; + } + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Object getResult() { + return result; + } + + public void setResult(Object result) { + this.result = result; + } + + @Override + public String toString() { + return "ReturnObject{" + + "code=" + code + + ", message='" + message + '\'' + + ", result=" + result + + '}'; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" new file mode 100644 index 00000000..d62a2b7c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" @@ -0,0 +1,46 @@ +package com.mashibing.returnJson; + +public class UserInfo { + + private String name; + private String avatar = "/avatar2.jpg"; + private Permissions role; + + public UserInfo(String name, Permissions role) { + this.name = name; + this.role = role; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getAvatar() { + return avatar; + } + + public void setAvatar(String avatar) { + this.avatar = avatar; + } + + public Permissions getRole() { + return role; + } + + public void setRole(Permissions role) { + this.role = role; + } + + @Override + public String toString() { + return "UserInfo{" + + "name='" + name + '\'' + + ", avatar='" + avatar + '\'' + + ", role=" + role + + '}'; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" new file mode 100644 index 00000000..7d4ad63c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" @@ -0,0 +1,151 @@ +package com.mashibing.service; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.mashibing.bean.*; +import com.mashibing.mapper.*; +import com.mashibing.vo.CellMessage; +import com.mashibing.vo.UnitMessage; +import javafx.scene.control.Cell; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.FormatterClosedException; +import java.util.List; + +@Service +public class EstateService { + + @Autowired + private TblCompanyMapper tblCompanyMapper; + @Autowired + private FcEstateMapper fcEstateMapper; + @Autowired + private FcBuildingMapper fcBuildingMapper; + @Autowired + private FcUnitMapper fcUnitMapper; + @Autowired + private FcCellMapper fcCellMapper; + + public List selectCompany(){ + List companys = tblCompanyMapper.selectCompany(); + return companys; + } + + /** + * 再插入数据之前,最好对当前信息做判断,判断住宅编码是否存在,如果存在则不允许插入,如果不存在才允许插入 + * @param fcEstate + * @return + */ + public Integer insertEstate(FcEstate fcEstate){ + + //定义查询包装类 + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.eq("estate_code", fcEstate.getEstateCode()); + FcEstate findResult = fcEstateMapper.selectOne(queryWrapper); + //定义返回的结果 + int result = 0; + if(findResult!=null){ + return result; + }else{ + result = fcEstateMapper.insert(fcEstate); + return result; + } + } + + /** + * 先插入数据,再查询数据 + * @return + */ + public List selectBuilding(Integer buildingNumber,String estateCode){ + List fcBuildings = new ArrayList<>(); + for(int i = 0 ;i selectUnit(UnitMessage unitMessage){ + //定义返回值集合 + List fcUnits = new ArrayList<>(); + for(int i = 0;i insertCell(CellMessage[] cellMessages){ + List lists = new ArrayList<>(); + for (CellMessage cellMessage : cellMessages) { + // 楼层 + for(int i = 1;i<=cellMessage.getStopFloor();i++){ + // 房间号 + for(int j = cellMessage.getStartCellId();j<=cellMessage.getStopCellId();j++){ + FcCell fcCell = new FcCell(); + fcCell.setUnitCode(cellMessage.getUnitCode()); + fcCell.setCellName(i+"0"+j); + fcCell.setCellCode(cellMessage.getUnitCode()+"C"+i+"0"+j); + fcCell.setFloorNumber(i); + fcCellMapper.insert(fcCell); + lists.add(fcCell); + } + } + } + return lists; + } + + public List selectBuildingByEstate(String estateCode){ + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("estate_code",estateCode); + queryWrapper.select("building_name","building_code"); + List fcBuildings = fcBuildingMapper.selectList(queryWrapper); + return fcBuildings; + } + + public List selectUnitByBuildingCode(String buildingCode){ + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("building_code",buildingCode); + queryWrapper.select("unit_name","unit_code"); + List fcUnits = fcUnitMapper.selectList(queryWrapper); + return fcUnits; + } + + public List selectCell(String unitCode){ + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("unit_code",unitCode); + List fcCells = fcCellMapper.selectList(queryWrapper); + return fcCells; + } + + public List selectEstate(String company){ + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.eq("company",company); + List fcEstates = fcEstateMapper.selectList(queryWrapper); + return fcEstates; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" new file mode 100644 index 00000000..93796b62 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" @@ -0,0 +1,17 @@ +package com.mashibing.service; + +import com.mashibing.bean.TblUserRecord; +import com.mashibing.mapper.TblUserRecordMapper; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +@Service +public class LoginService { + + @Autowired + private TblUserRecordMapper tblUserRecordMapper; + + public TblUserRecord login(String username, String password){ + return tblUserRecordMapper.login(username,password); + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" new file mode 100644 index 00000000..5fb2eb8a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcBuilding; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼宇信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcBuildingService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" new file mode 100644 index 00000000..8a97b3fe --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcCellAddbuild; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 房间加建信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellAddbuildService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" new file mode 100644 index 00000000..db98316c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcCell; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 房间信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" new file mode 100644 index 00000000..8fdc7dbb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcEstate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcEstateService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" new file mode 100644 index 00000000..5298dad4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FcUnit; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 单元信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcUnitService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" new file mode 100644 index 00000000..3cfb2e15 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyEstateTemporary; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 房产信息临时表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyEstateTemporaryService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" new file mode 100644 index 00000000..9bf21503 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyHistoryMoneyTemp; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 历史费用临时表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyHistoryMoneyTempService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" new file mode 100644 index 00000000..9a610bab --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyInvalidMain; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 作废单主单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidMainService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" new file mode 100644 index 00000000..6294bb5e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyInvalidSub; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 作废单子单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidSubService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" new file mode 100644 index 00000000..b86eab84 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneySetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费项设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneySettingService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" new file mode 100644 index 00000000..ae60cf2a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneyTemporary01; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用临时表1 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary01Service extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" new file mode 100644 index 00000000..551c6879 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneyTemporary02; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用临时表2 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary02Service extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" new file mode 100644 index 00000000..fe777a32 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneyTemporary03; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用临时表3 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary03Service extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" new file mode 100644 index 00000000..e5cbc763 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyMoneyTemporary04; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用临时表4 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary04Service extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" new file mode 100644 index 00000000..ca6f263a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyPreReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 预收款管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPreReceiveService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" new file mode 100644 index 00000000..4f8123cf --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyPropertyMoneyDist; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物业费分布 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPropertyMoneyDistService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" new file mode 100644 index 00000000..885ee84a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyPublicBox; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公表信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" new file mode 100644 index 00000000..7ad0c71e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyPublicBoxUser; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公表关联用户 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxUserService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" new file mode 100644 index 00000000..ad2f6da5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyReceiptMain; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 收款单主单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptMainService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" new file mode 100644 index 00000000..14a73ac9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyReceiptSub; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 收款单子单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptSubService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" new file mode 100644 index 00000000..30a0c03b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyRefundMain; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 退款单主单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundMainService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" new file mode 100644 index 00000000..7c4ab043 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyRefundSub; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 退款单子单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundSubService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" new file mode 100644 index 00000000..f1de4911 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FySaleContract; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 销售合同 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FySaleContractService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" new file mode 100644 index 00000000..b6e94746 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyShareStandingBookDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公摊费用台账公表明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" new file mode 100644 index 00000000..83b9fdd4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyShareStandingBook; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公摊费用台账概要 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" new file mode 100644 index 00000000..dd3d0f4f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyShareUserDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 公摊费用台账用户明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareUserDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" new file mode 100644 index 00000000..a4bd4b0e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyStandingBookDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用台账明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" new file mode 100644 index 00000000..4146ee47 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyStandingBook; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 费用台账概要 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" new file mode 100644 index 00000000..45f35a42 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.FyTemporaryMoneySetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 临客费项设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyTemporaryMoneySettingService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" new file mode 100644 index 00000000..1b44c37b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblAdviceBox; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 意见箱 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAdviceBoxService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" new file mode 100644 index 00000000..809b2ab7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblAnswerData; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 题目可选答案信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAnswerDataService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" new file mode 100644 index 00000000..b2169aa2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblArgRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 参数档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblArgRecordService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" new file mode 100644 index 00000000..eb9c29d1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblAttupload; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 附件 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAttuploadService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" new file mode 100644 index 00000000..9740de17 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblColor; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 颜色管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblColorService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" new file mode 100644 index 00000000..9ede23e9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCommonLanguage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 常用语 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonLanguageService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" new file mode 100644 index 00000000..378531ca --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCommonMessage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 常用短信 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonMessageService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" new file mode 100644 index 00000000..d1ad6791 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCompanyRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 单位名录 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCompanyRecordService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" new file mode 100644 index 00000000..f0eb1243 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCompany; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 企业档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCompanyService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" new file mode 100644 index 00000000..d7112a35 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblComparyNotice; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 企业公告 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblComparyNoticeService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" new file mode 100644 index 00000000..728915dc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblCustomType; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 自定义类型 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCustomTypeService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" new file mode 100644 index 00000000..ea03d266 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDashboard; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 仪表盘 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDashboardService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" new file mode 100644 index 00000000..ffce1b03 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 工作日期 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDateService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" new file mode 100644 index 00000000..9cc75e06 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDbSetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 数据库设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbSettingService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" new file mode 100644 index 00000000..25715533 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDbbackup; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 数据库备份 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbbackupService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" new file mode 100644 index 00000000..289f482b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDbrecovery; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 数据库还原 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbrecoveryService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" new file mode 100644 index 00000000..2f78cc6c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDbsource; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 数据库 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbsourceService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" new file mode 100644 index 00000000..6dc1337d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDept; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 部门信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" new file mode 100644 index 00000000..464ff62b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDeptkey; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 部门key 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptkeyService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" new file mode 100644 index 00000000..60667f48 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblDesktop; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 桌面 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDesktopService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" new file mode 100644 index 00000000..f17ac742 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEmailReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 邮件接受 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailReceiveService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" new file mode 100644 index 00000000..fc9edd16 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEmailSend; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 邮件发送 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailSendService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" new file mode 100644 index 00000000..9a189a74 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEmployeeContactCategory; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 员工通讯录类别 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactCategoryService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" new file mode 100644 index 00000000..d02f33d9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEmployeeContact; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 员工通讯录 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" new file mode 100644 index 00000000..13bfede9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblEnvirSetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 环境配置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEnvirSettingService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" new file mode 100644 index 00000000..12ebd96b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblFunctionModel; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 功能模块 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblFunctionModelService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" new file mode 100644 index 00000000..69fc1bd6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblGroupRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 群组档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupRecordService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" new file mode 100644 index 00000000..4e0969ba --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblGroupsTodo; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 分组待办事项 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsTodoService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" new file mode 100644 index 00000000..d2ef2b44 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblGroupsUser; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 分组用户 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsUserService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" new file mode 100644 index 00000000..1487019c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblLoginLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 登录日志 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblLoginLogService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" new file mode 100644 index 00000000..e9c84428 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMainMenu; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 主菜单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMainMenuService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" new file mode 100644 index 00000000..dfe86cba --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMessageCharge; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 短信充值单 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageChargeService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" new file mode 100644 index 00000000..b5457417 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMessageReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 短信接受表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageReceiveService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" new file mode 100644 index 00000000..a7e6b254 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMessageSend; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 信息发送 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageSendService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" new file mode 100644 index 00000000..a82b22a3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMsgReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 信息接受 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMsgReceiveService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" new file mode 100644 index 00000000..0ffa2dd5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMyNote; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的记事本 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyNoteService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" new file mode 100644 index 00000000..1feb9bc4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMyadvice; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的意见 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyadviceService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" new file mode 100644 index 00000000..824d0525 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMydash; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的驾驶舱 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydashService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" new file mode 100644 index 00000000..4c12aabc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMydesk; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的桌面 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydeskService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" new file mode 100644 index 00000000..7b9069a2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMyplan; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 我的日程 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyplanService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" new file mode 100644 index 00000000..4d903001 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblMyset; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 个人设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMysetService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" new file mode 100644 index 00000000..1c4387d7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblNetdiskDir; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 网络硬盘_文件夹 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskDirService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" new file mode 100644 index 00000000..b119cdee --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblNetdiskUrl; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 网络硬盘路径 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskUrlService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" new file mode 100644 index 00000000..06c98288 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblPositionRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 职位档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPositionRecordService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" new file mode 100644 index 00000000..3941af10 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblPrintPaper; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 打印纸张宽度设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintPaperService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" new file mode 100644 index 00000000..26518d8a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblPrintParam; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 打印参数 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintParamService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" new file mode 100644 index 00000000..9257a0f0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblQuick; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 快捷方式 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblQuickService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" new file mode 100644 index 00000000..fcebe802 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblRoleMenuPrivi; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 角色菜单权限 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleMenuPriviService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" new file mode 100644 index 00000000..0b4d1b58 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblRole; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 角色档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" new file mode 100644 index 00000000..5d11c5cb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblRule; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 规章制度 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRuleService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" new file mode 100644 index 00000000..2cc94cba --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblSendLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 发送日志表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSendLogService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" new file mode 100644 index 00000000..26d96d7c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblShortcutIcon; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 快捷方式图标 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblShortcutIconService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" new file mode 100644 index 00000000..8cb5d807 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblStopDate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 到期日期 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblStopDateService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" new file mode 100644 index 00000000..c1cf8468 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblSysDiagrams; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 系统图标 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSysDiagramsService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" new file mode 100644 index 00000000..2f8ce61f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblSystemLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 系统日志 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSystemLogService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" new file mode 100644 index 00000000..17bb962b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblTodo; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 待办事项 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTodoService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" new file mode 100644 index 00000000..80283723 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblType; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 类型库 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTypeService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" new file mode 100644 index 00000000..ae4fd8da --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserDept; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户部门表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserDeptService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" new file mode 100644 index 00000000..23dbc6b6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserGroup; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户分组 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserGroupService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" new file mode 100644 index 00000000..fcc1232a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户档案 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserRecordService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" new file mode 100644 index 00000000..a1297cc7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserRole; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户角色表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserRoleService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" new file mode 100644 index 00000000..ac257ef1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblUserSubCompany; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 用户子公司表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserSubCompanyService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" new file mode 100644 index 00000000..d6baf168 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVod; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 视频点播 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVodService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" new file mode 100644 index 00000000..4bb2602b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVoteData; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 投票数据表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDataService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" new file mode 100644 index 00000000..f20be5fb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVoteDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 投票数据明细表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" new file mode 100644 index 00000000..763d391d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVoteProject1; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 投票项目表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteProject1Service extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" new file mode 100644 index 00000000..8d98d78e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblVoteSubject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 投票题目表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteSubjectService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" new file mode 100644 index 00000000..55935a0f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.TblWorkDate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 工作日期 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblWorkDateService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" new file mode 100644 index 00000000..393582c9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyAskMsgRemindLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 催缴短信提醒日志 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyAskMsgRemindLogService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" new file mode 100644 index 00000000..c38dbfa7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCarManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 车辆管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarManageService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" new file mode 100644 index 00000000..4bcc6bae --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCarSpaceManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 车位管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceManageService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" new file mode 100644 index 00000000..d8b33d84 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCarSpaceRentDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 车位租赁缴费明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" new file mode 100644 index 00000000..bd039f3e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCarSpaceRent; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 车位租赁 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" new file mode 100644 index 00000000..94625090 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCleanCheck; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 清洁检查 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanCheckService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" new file mode 100644 index 00000000..3354c215 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCleanPlan; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 清洁安排 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanPlanService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" new file mode 100644 index 00000000..d49af48f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCleanRecord; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 清洁记录 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanRecordService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" new file mode 100644 index 00000000..0ce04b3a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCommitteeMembers; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业委会成员 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMembersService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" new file mode 100644 index 00000000..09904864 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCommitteeMetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业委会会议 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMettingService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" new file mode 100644 index 00000000..4aeb2341 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyCommunityEvent; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 社区活动 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommunityEventService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" new file mode 100644 index 00000000..b2f6102e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyDutyManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 执勤管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyDutyManageService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" new file mode 100644 index 00000000..e4deb3b7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEmailReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 信件收取 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEmailReceiveService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" new file mode 100644 index 00000000..8e88e8cc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateIncomeDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费收入明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" new file mode 100644 index 00000000..34ff4bbf --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateIncomeProject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费收入项目 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeProjectService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" new file mode 100644 index 00000000..cb9bbe1d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateMoney; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘费用 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateMoneyService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" new file mode 100644 index 00000000..b83d423f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateOutDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费支出明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" new file mode 100644 index 00000000..945ed42c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateOutDetailSub; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费支出明细_审批子表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailSubService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" new file mode 100644 index 00000000..2929a149 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyEstateOutProject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 楼盘经费支出项目 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutProjectService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" new file mode 100644 index 00000000..d9df2cbc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyFireAccident; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 消防事故 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireAccidentService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" new file mode 100644 index 00000000..51aaf56a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyFireCheck; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 消防巡查 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireCheckService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" new file mode 100644 index 00000000..72e45927 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyFireExercise; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 消防演练 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireExerciseService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" new file mode 100644 index 00000000..85ff1592 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyFireFacility; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 消防设施 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireFacilityService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" new file mode 100644 index 00000000..68d12a5e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyGoodsInout; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物品出入 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGoodsInoutService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" new file mode 100644 index 00000000..d08e64c9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyGreenCheck; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 绿化检查 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenCheckService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" new file mode 100644 index 00000000..666bf01b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyGreenSetting; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 绿化设置 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenSettingService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" new file mode 100644 index 00000000..6eff60f2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyIncomeDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 收入明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" new file mode 100644 index 00000000..0ab9e557 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyIncomeProject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 收入项目 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeProjectService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" new file mode 100644 index 00000000..e0ebbde7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyNoteManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 票据管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyNoteManageService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" new file mode 100644 index 00000000..4968eb5a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyOutDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 支出明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" new file mode 100644 index 00000000..f1ede50a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyOutProject; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 支出项目 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutProjectService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" new file mode 100644 index 00000000..352bf9fb --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyPictureManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 图纸管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPictureManageService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" new file mode 100644 index 00000000..f651bd00 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyPropertyTakeoverDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物业接管工程明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" new file mode 100644 index 00000000..d703f7e2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyPropertyTakeoverSchema; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物业接管概要 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverSchemaService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" new file mode 100644 index 00000000..d73d71c3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyRenewMsgRemindLog; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 续费短信提醒日志 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyRenewMsgRemindLogService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" new file mode 100644 index 00000000..92e11f93 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WySecurityArrange; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 保安安排 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WySecurityArrangeService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" new file mode 100644 index 00000000..2ccdac25 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyServiceCashierGroup; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 客服收银组 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyServiceCashierGroupService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" new file mode 100644 index 00000000..b9878a4c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyTakeoverDataDetail; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 物业接管资料明细 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyTakeoverDataDetailService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" new file mode 100644 index 00000000..129d35c5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyVegetationInformation; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 植被信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVegetationInformationService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" new file mode 100644 index 00000000..798311e6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.WyVisitManage; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 来访管理 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVisitManageService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" new file mode 100644 index 00000000..e79fafd3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhConstomerDecorate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主装修 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConstomerDecorateService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" new file mode 100644 index 00000000..d61d662b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhConsumerComplain; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主投诉 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConsumerComplainService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" new file mode 100644 index 00000000..7c27e7fc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCsHandleResult; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主服务_办理结果 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleResultService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" new file mode 100644 index 00000000..a8c2da8f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCsHandleSpeed; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主服务_办理进度 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleSpeedService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" new file mode 100644 index 00000000..2c6ef840 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerAskFix; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主请修 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerAskFixService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" new file mode 100644 index 00000000..e10ba81d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerCheck; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主验房 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerCheckService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" new file mode 100644 index 00000000..7eaa504d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerEstate; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主房产对照表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerEstateService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" new file mode 100644 index 00000000..eab2bbb0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerMembers; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主成员 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerMembersService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" new file mode 100644 index 00000000..f408676a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomer; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" new file mode 100644 index 00000000..5246bdf3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerService; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主服务 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" new file mode 100644 index 00000000..0fd4696d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhCustomerServiceType; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 业主服务类型 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceTypeService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" new file mode 100644 index 00000000..f1328ce7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContractCell; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同房间 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractCellService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" new file mode 100644 index 00000000..85b51419 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContractChange; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同变更 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractChangeService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" new file mode 100644 index 00000000..2f7ab162 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContractRefund; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同退款 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractRefundService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" new file mode 100644 index 00000000..1c34335e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContractReturn; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同返利 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractReturnService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" new file mode 100644 index 00000000..44905dd3 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentContract; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁合同 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" new file mode 100644 index 00000000..c605c357 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentInformation; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租户信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentInformationService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" new file mode 100644 index 00000000..5d48e205 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentReceive; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租金收取 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentReceiveService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" new file mode 100644 index 00000000..a08daee9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentShare; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租赁分租信息 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentShareService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" new file mode 100644 index 00000000..abfcb014 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" @@ -0,0 +1,16 @@ +package com.mashibing.service.base; + +import com.mashibing.bean.ZhRentTransfer; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + *

+ * 租户转兑 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentTransferService extends IService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" new file mode 100644 index 00000000..bc5c83d6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcBuilding; +import com.mashibing.mapper.FcBuildingMapper; +import com.mashibing.service.base.FcBuildingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼宇信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcBuildingServiceImpl extends ServiceImpl implements FcBuildingService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" new file mode 100644 index 00000000..1b6d4f88 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcCellAddbuild; +import com.mashibing.mapper.FcCellAddbuildMapper; +import com.mashibing.service.base.FcCellAddbuildService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 房间加建信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcCellAddbuildServiceImpl extends ServiceImpl implements FcCellAddbuildService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" new file mode 100644 index 00000000..24f5045b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcCell; +import com.mashibing.mapper.FcCellMapper; +import com.mashibing.service.base.FcCellService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 房间信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcCellServiceImpl extends ServiceImpl implements FcCellService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" new file mode 100644 index 00000000..89fec2be --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcEstate; +import com.mashibing.mapper.FcEstateMapper; +import com.mashibing.service.base.FcEstateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcEstateServiceImpl extends ServiceImpl implements FcEstateService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" new file mode 100644 index 00000000..95406a39 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FcUnit; +import com.mashibing.mapper.FcUnitMapper; +import com.mashibing.service.base.FcUnitService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 单元信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FcUnitServiceImpl extends ServiceImpl implements FcUnitService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" new file mode 100644 index 00000000..4a599f30 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyEstateTemporary; +import com.mashibing.mapper.FyEstateTemporaryMapper; +import com.mashibing.service.base.FyEstateTemporaryService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 房产信息临时表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyEstateTemporaryServiceImpl extends ServiceImpl implements FyEstateTemporaryService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" new file mode 100644 index 00000000..f8d17eba --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyHistoryMoneyTemp; +import com.mashibing.mapper.FyHistoryMoneyTempMapper; +import com.mashibing.service.base.FyHistoryMoneyTempService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 历史费用临时表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyHistoryMoneyTempServiceImpl extends ServiceImpl implements FyHistoryMoneyTempService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" new file mode 100644 index 00000000..e0883e05 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyInvalidMain; +import com.mashibing.mapper.FyInvalidMainMapper; +import com.mashibing.service.base.FyInvalidMainService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 作废单主单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyInvalidMainServiceImpl extends ServiceImpl implements FyInvalidMainService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" new file mode 100644 index 00000000..63571b83 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyInvalidSub; +import com.mashibing.mapper.FyInvalidSubMapper; +import com.mashibing.service.base.FyInvalidSubService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 作废单子单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyInvalidSubServiceImpl extends ServiceImpl implements FyInvalidSubService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" new file mode 100644 index 00000000..f935c5fc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneySetting; +import com.mashibing.mapper.FyMoneySettingMapper; +import com.mashibing.service.base.FyMoneySettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费项设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneySettingServiceImpl extends ServiceImpl implements FyMoneySettingService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" new file mode 100644 index 00000000..c6f1dd61 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneyTemporary01; +import com.mashibing.mapper.FyMoneyTemporary01Mapper; +import com.mashibing.service.base.FyMoneyTemporary01Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用临时表1 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneyTemporary01ServiceImpl extends ServiceImpl implements FyMoneyTemporary01Service { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" new file mode 100644 index 00000000..297efa16 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneyTemporary02; +import com.mashibing.mapper.FyMoneyTemporary02Mapper; +import com.mashibing.service.base.FyMoneyTemporary02Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用临时表2 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneyTemporary02ServiceImpl extends ServiceImpl implements FyMoneyTemporary02Service { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" new file mode 100644 index 00000000..8ecae9d7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneyTemporary03; +import com.mashibing.mapper.FyMoneyTemporary03Mapper; +import com.mashibing.service.base.FyMoneyTemporary03Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用临时表3 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneyTemporary03ServiceImpl extends ServiceImpl implements FyMoneyTemporary03Service { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" new file mode 100644 index 00000000..bf27846b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyMoneyTemporary04; +import com.mashibing.mapper.FyMoneyTemporary04Mapper; +import com.mashibing.service.base.FyMoneyTemporary04Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用临时表4 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyMoneyTemporary04ServiceImpl extends ServiceImpl implements FyMoneyTemporary04Service { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" new file mode 100644 index 00000000..9985660e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyPreReceive; +import com.mashibing.mapper.FyPreReceiveMapper; +import com.mashibing.service.base.FyPreReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 预收款管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyPreReceiveServiceImpl extends ServiceImpl implements FyPreReceiveService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" new file mode 100644 index 00000000..3696d95f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyPropertyMoneyDist; +import com.mashibing.mapper.FyPropertyMoneyDistMapper; +import com.mashibing.service.base.FyPropertyMoneyDistService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物业费分布 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyPropertyMoneyDistServiceImpl extends ServiceImpl implements FyPropertyMoneyDistService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" new file mode 100644 index 00000000..84b624e4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyPublicBox; +import com.mashibing.mapper.FyPublicBoxMapper; +import com.mashibing.service.base.FyPublicBoxService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公表信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyPublicBoxServiceImpl extends ServiceImpl implements FyPublicBoxService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" new file mode 100644 index 00000000..439491a8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyPublicBoxUser; +import com.mashibing.mapper.FyPublicBoxUserMapper; +import com.mashibing.service.base.FyPublicBoxUserService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公表关联用户 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyPublicBoxUserServiceImpl extends ServiceImpl implements FyPublicBoxUserService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" new file mode 100644 index 00000000..e1817d3c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyReceiptMain; +import com.mashibing.mapper.FyReceiptMainMapper; +import com.mashibing.service.base.FyReceiptMainService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 收款单主单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyReceiptMainServiceImpl extends ServiceImpl implements FyReceiptMainService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" new file mode 100644 index 00000000..d9164085 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyReceiptSub; +import com.mashibing.mapper.FyReceiptSubMapper; +import com.mashibing.service.base.FyReceiptSubService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 收款单子单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyReceiptSubServiceImpl extends ServiceImpl implements FyReceiptSubService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" new file mode 100644 index 00000000..fe3269bc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyRefundMain; +import com.mashibing.mapper.FyRefundMainMapper; +import com.mashibing.service.base.FyRefundMainService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 退款单主单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyRefundMainServiceImpl extends ServiceImpl implements FyRefundMainService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" new file mode 100644 index 00000000..9eaa707e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyRefundSub; +import com.mashibing.mapper.FyRefundSubMapper; +import com.mashibing.service.base.FyRefundSubService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 退款单子单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyRefundSubServiceImpl extends ServiceImpl implements FyRefundSubService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" new file mode 100644 index 00000000..c8fd799e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FySaleContract; +import com.mashibing.mapper.FySaleContractMapper; +import com.mashibing.service.base.FySaleContractService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 销售合同 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FySaleContractServiceImpl extends ServiceImpl implements FySaleContractService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..dca9ee28 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyShareStandingBookDetail; +import com.mashibing.mapper.FyShareStandingBookDetailMapper; +import com.mashibing.service.base.FyShareStandingBookDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公摊费用台账公表明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyShareStandingBookDetailServiceImpl extends ServiceImpl implements FyShareStandingBookDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" new file mode 100644 index 00000000..38bb88aa --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyShareStandingBook; +import com.mashibing.mapper.FyShareStandingBookMapper; +import com.mashibing.service.base.FyShareStandingBookService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公摊费用台账概要 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyShareStandingBookServiceImpl extends ServiceImpl implements FyShareStandingBookService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" new file mode 100644 index 00000000..5cba602f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyShareUserDetail; +import com.mashibing.mapper.FyShareUserDetailMapper; +import com.mashibing.service.base.FyShareUserDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 公摊费用台账用户明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyShareUserDetailServiceImpl extends ServiceImpl implements FyShareUserDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..3ac683ef --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyStandingBookDetail; +import com.mashibing.mapper.FyStandingBookDetailMapper; +import com.mashibing.service.base.FyStandingBookDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用台账明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyStandingBookDetailServiceImpl extends ServiceImpl implements FyStandingBookDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" new file mode 100644 index 00000000..bf92b465 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyStandingBook; +import com.mashibing.mapper.FyStandingBookMapper; +import com.mashibing.service.base.FyStandingBookService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 费用台账概要 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyStandingBookServiceImpl extends ServiceImpl implements FyStandingBookService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" new file mode 100644 index 00000000..8e9dd99c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.FyTemporaryMoneySetting; +import com.mashibing.mapper.FyTemporaryMoneySettingMapper; +import com.mashibing.service.base.FyTemporaryMoneySettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 临客费项设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class FyTemporaryMoneySettingServiceImpl extends ServiceImpl implements FyTemporaryMoneySettingService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" new file mode 100644 index 00000000..de0ec987 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblAdviceBox; +import com.mashibing.mapper.TblAdviceBoxMapper; +import com.mashibing.service.base.TblAdviceBoxService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 意见箱 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblAdviceBoxServiceImpl extends ServiceImpl implements TblAdviceBoxService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" new file mode 100644 index 00000000..74cafef4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblAnswerData; +import com.mashibing.mapper.TblAnswerDataMapper; +import com.mashibing.service.base.TblAnswerDataService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 题目可选答案信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblAnswerDataServiceImpl extends ServiceImpl implements TblAnswerDataService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" new file mode 100644 index 00000000..3e4332b1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblArgRecord; +import com.mashibing.mapper.TblArgRecordMapper; +import com.mashibing.service.base.TblArgRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 参数档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblArgRecordServiceImpl extends ServiceImpl implements TblArgRecordService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" new file mode 100644 index 00000000..8d423f11 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblAttupload; +import com.mashibing.mapper.TblAttuploadMapper; +import com.mashibing.service.base.TblAttuploadService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 附件 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblAttuploadServiceImpl extends ServiceImpl implements TblAttuploadService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" new file mode 100644 index 00000000..3af54d5c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblColor; +import com.mashibing.mapper.TblColorMapper; +import com.mashibing.service.base.TblColorService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 颜色管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblColorServiceImpl extends ServiceImpl implements TblColorService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" new file mode 100644 index 00000000..c033c55f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCommonLanguage; +import com.mashibing.mapper.TblCommonLanguageMapper; +import com.mashibing.service.base.TblCommonLanguageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 常用语 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCommonLanguageServiceImpl extends ServiceImpl implements TblCommonLanguageService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" new file mode 100644 index 00000000..6eeb1464 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCommonMessage; +import com.mashibing.mapper.TblCommonMessageMapper; +import com.mashibing.service.base.TblCommonMessageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 常用短信 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCommonMessageServiceImpl extends ServiceImpl implements TblCommonMessageService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" new file mode 100644 index 00000000..330ee801 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCompanyRecord; +import com.mashibing.mapper.TblCompanyRecordMapper; +import com.mashibing.service.base.TblCompanyRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 单位名录 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCompanyRecordServiceImpl extends ServiceImpl implements TblCompanyRecordService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" new file mode 100644 index 00000000..1020286f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCompany; +import com.mashibing.mapper.TblCompanyMapper; +import com.mashibing.service.base.TblCompanyService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 企业档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCompanyServiceImpl extends ServiceImpl implements TblCompanyService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" new file mode 100644 index 00000000..11dfe067 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblComparyNotice; +import com.mashibing.mapper.TblComparyNoticeMapper; +import com.mashibing.service.base.TblComparyNoticeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 企业公告 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblComparyNoticeServiceImpl extends ServiceImpl implements TblComparyNoticeService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" new file mode 100644 index 00000000..3a119cb6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblCustomType; +import com.mashibing.mapper.TblCustomTypeMapper; +import com.mashibing.service.base.TblCustomTypeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 自定义类型 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblCustomTypeServiceImpl extends ServiceImpl implements TblCustomTypeService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" new file mode 100644 index 00000000..2b8e2874 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDashboard; +import com.mashibing.mapper.TblDashboardMapper; +import com.mashibing.service.base.TblDashboardService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 仪表盘 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDashboardServiceImpl extends ServiceImpl implements TblDashboardService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" new file mode 100644 index 00000000..f4dba8d1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDate; +import com.mashibing.mapper.TblDateMapper; +import com.mashibing.service.base.TblDateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 工作日期 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDateServiceImpl extends ServiceImpl implements TblDateService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" new file mode 100644 index 00000000..f34a1f05 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDbSetting; +import com.mashibing.mapper.TblDbSettingMapper; +import com.mashibing.service.base.TblDbSettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 数据库设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDbSettingServiceImpl extends ServiceImpl implements TblDbSettingService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" new file mode 100644 index 00000000..fb270d9a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDbbackup; +import com.mashibing.mapper.TblDbbackupMapper; +import com.mashibing.service.base.TblDbbackupService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 数据库备份 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDbbackupServiceImpl extends ServiceImpl implements TblDbbackupService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" new file mode 100644 index 00000000..e6ea079c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDbrecovery; +import com.mashibing.mapper.TblDbrecoveryMapper; +import com.mashibing.service.base.TblDbrecoveryService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 数据库还原 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDbrecoveryServiceImpl extends ServiceImpl implements TblDbrecoveryService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" new file mode 100644 index 00000000..2ff25f23 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDbsource; +import com.mashibing.mapper.TblDbsourceMapper; +import com.mashibing.service.base.TblDbsourceService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 数据库 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDbsourceServiceImpl extends ServiceImpl implements TblDbsourceService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" new file mode 100644 index 00000000..34f6cc0d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDept; +import com.mashibing.mapper.TblDeptMapper; +import com.mashibing.service.base.TblDeptService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 部门信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDeptServiceImpl extends ServiceImpl implements TblDeptService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" new file mode 100644 index 00000000..d11442b9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDeptkey; +import com.mashibing.mapper.TblDeptkeyMapper; +import com.mashibing.service.base.TblDeptkeyService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 部门key 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDeptkeyServiceImpl extends ServiceImpl implements TblDeptkeyService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" new file mode 100644 index 00000000..5aaedc3b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblDesktop; +import com.mashibing.mapper.TblDesktopMapper; +import com.mashibing.service.base.TblDesktopService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 桌面 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblDesktopServiceImpl extends ServiceImpl implements TblDesktopService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..c984cb92 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEmailReceive; +import com.mashibing.mapper.TblEmailReceiveMapper; +import com.mashibing.service.base.TblEmailReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 邮件接受 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEmailReceiveServiceImpl extends ServiceImpl implements TblEmailReceiveService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" new file mode 100644 index 00000000..54f554c1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEmailSend; +import com.mashibing.mapper.TblEmailSendMapper; +import com.mashibing.service.base.TblEmailSendService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 邮件发送 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEmailSendServiceImpl extends ServiceImpl implements TblEmailSendService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" new file mode 100644 index 00000000..6229c6d7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEmployeeContactCategory; +import com.mashibing.mapper.TblEmployeeContactCategoryMapper; +import com.mashibing.service.base.TblEmployeeContactCategoryService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 员工通讯录类别 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEmployeeContactCategoryServiceImpl extends ServiceImpl implements TblEmployeeContactCategoryService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" new file mode 100644 index 00000000..f2e452bf --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEmployeeContact; +import com.mashibing.mapper.TblEmployeeContactMapper; +import com.mashibing.service.base.TblEmployeeContactService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 员工通讯录 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEmployeeContactServiceImpl extends ServiceImpl implements TblEmployeeContactService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" new file mode 100644 index 00000000..f43345e1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblEnvirSetting; +import com.mashibing.mapper.TblEnvirSettingMapper; +import com.mashibing.service.base.TblEnvirSettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 环境配置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblEnvirSettingServiceImpl extends ServiceImpl implements TblEnvirSettingService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" new file mode 100644 index 00000000..29f647a8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblFunctionModel; +import com.mashibing.mapper.TblFunctionModelMapper; +import com.mashibing.service.base.TblFunctionModelService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 功能模块 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblFunctionModelServiceImpl extends ServiceImpl implements TblFunctionModelService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" new file mode 100644 index 00000000..885bd2a5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblGroupRecord; +import com.mashibing.mapper.TblGroupRecordMapper; +import com.mashibing.service.base.TblGroupRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 群组档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblGroupRecordServiceImpl extends ServiceImpl implements TblGroupRecordService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" new file mode 100644 index 00000000..6409c6bf --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblGroupsTodo; +import com.mashibing.mapper.TblGroupsTodoMapper; +import com.mashibing.service.base.TblGroupsTodoService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 分组待办事项 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblGroupsTodoServiceImpl extends ServiceImpl implements TblGroupsTodoService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" new file mode 100644 index 00000000..a9d46521 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblGroupsUser; +import com.mashibing.mapper.TblGroupsUserMapper; +import com.mashibing.service.base.TblGroupsUserService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 分组用户 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblGroupsUserServiceImpl extends ServiceImpl implements TblGroupsUserService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" new file mode 100644 index 00000000..ae431c15 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblLoginLog; +import com.mashibing.mapper.TblLoginLogMapper; +import com.mashibing.service.base.TblLoginLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 登录日志 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblLoginLogServiceImpl extends ServiceImpl implements TblLoginLogService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" new file mode 100644 index 00000000..1afd48e1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMainMenu; +import com.mashibing.mapper.TblMainMenuMapper; +import com.mashibing.service.base.TblMainMenuService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 主菜单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMainMenuServiceImpl extends ServiceImpl implements TblMainMenuService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" new file mode 100644 index 00000000..85318f49 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMessageCharge; +import com.mashibing.mapper.TblMessageChargeMapper; +import com.mashibing.service.base.TblMessageChargeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 短信充值单 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMessageChargeServiceImpl extends ServiceImpl implements TblMessageChargeService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" new file mode 100644 index 00000000..456cdc83 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMessageReceive; +import com.mashibing.mapper.TblMessageReceiveMapper; +import com.mashibing.service.base.TblMessageReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 短信接受表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMessageReceiveServiceImpl extends ServiceImpl implements TblMessageReceiveService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" new file mode 100644 index 00000000..759ba1a1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMessageSend; +import com.mashibing.mapper.TblMessageSendMapper; +import com.mashibing.service.base.TblMessageSendService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 信息发送 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMessageSendServiceImpl extends ServiceImpl implements TblMessageSendService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" new file mode 100644 index 00000000..1a1e5af6 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMsgReceive; +import com.mashibing.mapper.TblMsgReceiveMapper; +import com.mashibing.service.base.TblMsgReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 信息接受 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMsgReceiveServiceImpl extends ServiceImpl implements TblMsgReceiveService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" new file mode 100644 index 00000000..d187a008 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMyNote; +import com.mashibing.mapper.TblMyNoteMapper; +import com.mashibing.service.base.TblMyNoteService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的记事本 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMyNoteServiceImpl extends ServiceImpl implements TblMyNoteService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" new file mode 100644 index 00000000..b39dae32 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMyadvice; +import com.mashibing.mapper.TblMyadviceMapper; +import com.mashibing.service.base.TblMyadviceService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的意见 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMyadviceServiceImpl extends ServiceImpl implements TblMyadviceService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" new file mode 100644 index 00000000..19aa1062 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMydash; +import com.mashibing.mapper.TblMydashMapper; +import com.mashibing.service.base.TblMydashService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的驾驶舱 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMydashServiceImpl extends ServiceImpl implements TblMydashService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" new file mode 100644 index 00000000..76a739ac --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMydesk; +import com.mashibing.mapper.TblMydeskMapper; +import com.mashibing.service.base.TblMydeskService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的桌面 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMydeskServiceImpl extends ServiceImpl implements TblMydeskService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" new file mode 100644 index 00000000..f20819cd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMyplan; +import com.mashibing.mapper.TblMyplanMapper; +import com.mashibing.service.base.TblMyplanService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 我的日程 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMyplanServiceImpl extends ServiceImpl implements TblMyplanService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" new file mode 100644 index 00000000..7a213a24 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblMyset; +import com.mashibing.mapper.TblMysetMapper; +import com.mashibing.service.base.TblMysetService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 个人设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblMysetServiceImpl extends ServiceImpl implements TblMysetService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" new file mode 100644 index 00000000..1ddead49 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblNetdiskDir; +import com.mashibing.mapper.TblNetdiskDirMapper; +import com.mashibing.service.base.TblNetdiskDirService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 网络硬盘_文件夹 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblNetdiskDirServiceImpl extends ServiceImpl implements TblNetdiskDirService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" new file mode 100644 index 00000000..89eb91ac --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblNetdiskUrl; +import com.mashibing.mapper.TblNetdiskUrlMapper; +import com.mashibing.service.base.TblNetdiskUrlService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 网络硬盘路径 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblNetdiskUrlServiceImpl extends ServiceImpl implements TblNetdiskUrlService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" new file mode 100644 index 00000000..a806863a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblPositionRecord; +import com.mashibing.mapper.TblPositionRecordMapper; +import com.mashibing.service.base.TblPositionRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 职位档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblPositionRecordServiceImpl extends ServiceImpl implements TblPositionRecordService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" new file mode 100644 index 00000000..cd80ed83 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblPrintPaper; +import com.mashibing.mapper.TblPrintPaperMapper; +import com.mashibing.service.base.TblPrintPaperService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 打印纸张宽度设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblPrintPaperServiceImpl extends ServiceImpl implements TblPrintPaperService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" new file mode 100644 index 00000000..4f5c4d15 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblPrintParam; +import com.mashibing.mapper.TblPrintParamMapper; +import com.mashibing.service.base.TblPrintParamService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 打印参数 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblPrintParamServiceImpl extends ServiceImpl implements TblPrintParamService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" new file mode 100644 index 00000000..b9a4d409 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblQuick; +import com.mashibing.mapper.TblQuickMapper; +import com.mashibing.service.base.TblQuickService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 快捷方式 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblQuickServiceImpl extends ServiceImpl implements TblQuickService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" new file mode 100644 index 00000000..fe5263b4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblRoleMenuPrivi; +import com.mashibing.mapper.TblRoleMenuPriviMapper; +import com.mashibing.service.base.TblRoleMenuPriviService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 角色菜单权限 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblRoleMenuPriviServiceImpl extends ServiceImpl implements TblRoleMenuPriviService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" new file mode 100644 index 00000000..15540c2c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblRole; +import com.mashibing.mapper.TblRoleMapper; +import com.mashibing.service.base.TblRoleService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 角色档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblRoleServiceImpl extends ServiceImpl implements TblRoleService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" new file mode 100644 index 00000000..7d9d0145 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblRule; +import com.mashibing.mapper.TblRuleMapper; +import com.mashibing.service.base.TblRuleService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 规章制度 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblRuleServiceImpl extends ServiceImpl implements TblRuleService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" new file mode 100644 index 00000000..47254b05 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblSendLog; +import com.mashibing.mapper.TblSendLogMapper; +import com.mashibing.service.base.TblSendLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 发送日志表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblSendLogServiceImpl extends ServiceImpl implements TblSendLogService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" new file mode 100644 index 00000000..b78ba2c7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblShortcutIcon; +import com.mashibing.mapper.TblShortcutIconMapper; +import com.mashibing.service.base.TblShortcutIconService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 快捷方式图标 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblShortcutIconServiceImpl extends ServiceImpl implements TblShortcutIconService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" new file mode 100644 index 00000000..67bc31aa --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblStopDate; +import com.mashibing.mapper.TblStopDateMapper; +import com.mashibing.service.base.TblStopDateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 到期日期 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblStopDateServiceImpl extends ServiceImpl implements TblStopDateService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" new file mode 100644 index 00000000..9c956a30 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblSysDiagrams; +import com.mashibing.mapper.TblSysDiagramsMapper; +import com.mashibing.service.base.TblSysDiagramsService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 系统图标 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblSysDiagramsServiceImpl extends ServiceImpl implements TblSysDiagramsService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" new file mode 100644 index 00000000..be8a0312 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblSystemLog; +import com.mashibing.mapper.TblSystemLogMapper; +import com.mashibing.service.base.TblSystemLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 系统日志 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblSystemLogServiceImpl extends ServiceImpl implements TblSystemLogService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" new file mode 100644 index 00000000..32c5264b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblTodo; +import com.mashibing.mapper.TblTodoMapper; +import com.mashibing.service.base.TblTodoService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 待办事项 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblTodoServiceImpl extends ServiceImpl implements TblTodoService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" new file mode 100644 index 00000000..c4f9fa0f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblType; +import com.mashibing.mapper.TblTypeMapper; +import com.mashibing.service.base.TblTypeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 类型库 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblTypeServiceImpl extends ServiceImpl implements TblTypeService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" new file mode 100644 index 00000000..623237c4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserDept; +import com.mashibing.mapper.TblUserDeptMapper; +import com.mashibing.service.base.TblUserDeptService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户部门表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserDeptServiceImpl extends ServiceImpl implements TblUserDeptService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" new file mode 100644 index 00000000..32353953 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserGroup; +import com.mashibing.mapper.TblUserGroupMapper; +import com.mashibing.service.base.TblUserGroupService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户分组 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserGroupServiceImpl extends ServiceImpl implements TblUserGroupService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" new file mode 100644 index 00000000..37e9f66a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserRecord; +import com.mashibing.mapper.TblUserRecordMapper; +import com.mashibing.service.base.TblUserRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户档案 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserRecordServiceImpl extends ServiceImpl implements TblUserRecordService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" new file mode 100644 index 00000000..afadd36b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserRole; +import com.mashibing.mapper.TblUserRoleMapper; +import com.mashibing.service.base.TblUserRoleService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户角色表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserRoleServiceImpl extends ServiceImpl implements TblUserRoleService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" new file mode 100644 index 00000000..2fdecca4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblUserSubCompany; +import com.mashibing.mapper.TblUserSubCompanyMapper; +import com.mashibing.service.base.TblUserSubCompanyService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 用户子公司表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblUserSubCompanyServiceImpl extends ServiceImpl implements TblUserSubCompanyService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" new file mode 100644 index 00000000..bd74298d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVod; +import com.mashibing.mapper.TblVodMapper; +import com.mashibing.service.base.TblVodService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 视频点播 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVodServiceImpl extends ServiceImpl implements TblVodService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" new file mode 100644 index 00000000..5a1cf927 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVoteData; +import com.mashibing.mapper.TblVoteDataMapper; +import com.mashibing.service.base.TblVoteDataService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 投票数据表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVoteDataServiceImpl extends ServiceImpl implements TblVoteDataService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" new file mode 100644 index 00000000..8add15c1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVoteDetail; +import com.mashibing.mapper.TblVoteDetailMapper; +import com.mashibing.service.base.TblVoteDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 投票数据明细表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVoteDetailServiceImpl extends ServiceImpl implements TblVoteDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" new file mode 100644 index 00000000..213f9834 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVoteProject1; +import com.mashibing.mapper.TblVoteProject1Mapper; +import com.mashibing.service.base.TblVoteProject1Service; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 投票项目表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVoteProject1ServiceImpl extends ServiceImpl implements TblVoteProject1Service { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" new file mode 100644 index 00000000..c9d63b30 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblVoteSubject; +import com.mashibing.mapper.TblVoteSubjectMapper; +import com.mashibing.service.base.TblVoteSubjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 投票题目表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblVoteSubjectServiceImpl extends ServiceImpl implements TblVoteSubjectService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" new file mode 100644 index 00000000..06d23d10 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.TblWorkDate; +import com.mashibing.mapper.TblWorkDateMapper; +import com.mashibing.service.base.TblWorkDateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 工作日期 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class TblWorkDateServiceImpl extends ServiceImpl implements TblWorkDateService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..0825b0c4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyAskMsgRemindLog; +import com.mashibing.mapper.WyAskMsgRemindLogMapper; +import com.mashibing.service.base.WyAskMsgRemindLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 催缴短信提醒日志 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyAskMsgRemindLogServiceImpl extends ServiceImpl implements WyAskMsgRemindLogService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" new file mode 100644 index 00000000..6ee34414 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCarManage; +import com.mashibing.mapper.WyCarManageMapper; +import com.mashibing.service.base.WyCarManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 车辆管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCarManageServiceImpl extends ServiceImpl implements WyCarManageService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" new file mode 100644 index 00000000..b8d84fac --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCarSpaceManage; +import com.mashibing.mapper.WyCarSpaceManageMapper; +import com.mashibing.service.base.WyCarSpaceManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 车位管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCarSpaceManageServiceImpl extends ServiceImpl implements WyCarSpaceManageService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" new file mode 100644 index 00000000..d191d012 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCarSpaceRentDetail; +import com.mashibing.mapper.WyCarSpaceRentDetailMapper; +import com.mashibing.service.base.WyCarSpaceRentDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 车位租赁缴费明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCarSpaceRentDetailServiceImpl extends ServiceImpl implements WyCarSpaceRentDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" new file mode 100644 index 00000000..f5e1ac1d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCarSpaceRent; +import com.mashibing.mapper.WyCarSpaceRentMapper; +import com.mashibing.service.base.WyCarSpaceRentService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 车位租赁 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCarSpaceRentServiceImpl extends ServiceImpl implements WyCarSpaceRentService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" new file mode 100644 index 00000000..c95705b8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCleanCheck; +import com.mashibing.mapper.WyCleanCheckMapper; +import com.mashibing.service.base.WyCleanCheckService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 清洁检查 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCleanCheckServiceImpl extends ServiceImpl implements WyCleanCheckService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" new file mode 100644 index 00000000..7bde96df --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCleanPlan; +import com.mashibing.mapper.WyCleanPlanMapper; +import com.mashibing.service.base.WyCleanPlanService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 清洁安排 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCleanPlanServiceImpl extends ServiceImpl implements WyCleanPlanService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" new file mode 100644 index 00000000..c130b14c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCleanRecord; +import com.mashibing.mapper.WyCleanRecordMapper; +import com.mashibing.service.base.WyCleanRecordService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 清洁记录 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCleanRecordServiceImpl extends ServiceImpl implements WyCleanRecordService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" new file mode 100644 index 00000000..511baf3d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCommitteeMembers; +import com.mashibing.mapper.WyCommitteeMembersMapper; +import com.mashibing.service.base.WyCommitteeMembersService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业委会成员 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCommitteeMembersServiceImpl extends ServiceImpl implements WyCommitteeMembersService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" new file mode 100644 index 00000000..4b1be59e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCommitteeMetting; +import com.mashibing.mapper.WyCommitteeMettingMapper; +import com.mashibing.service.base.WyCommitteeMettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业委会会议 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCommitteeMettingServiceImpl extends ServiceImpl implements WyCommitteeMettingService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" new file mode 100644 index 00000000..45ed0547 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyCommunityEvent; +import com.mashibing.mapper.WyCommunityEventMapper; +import com.mashibing.service.base.WyCommunityEventService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 社区活动 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyCommunityEventServiceImpl extends ServiceImpl implements WyCommunityEventService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" new file mode 100644 index 00000000..25ac5891 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyDutyManage; +import com.mashibing.mapper.WyDutyManageMapper; +import com.mashibing.service.base.WyDutyManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 执勤管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyDutyManageServiceImpl extends ServiceImpl implements WyDutyManageService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..ff281e70 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEmailReceive; +import com.mashibing.mapper.WyEmailReceiveMapper; +import com.mashibing.service.base.WyEmailReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 信件收取 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEmailReceiveServiceImpl extends ServiceImpl implements WyEmailReceiveService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..d209585c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateIncomeDetail; +import com.mashibing.mapper.WyEstateIncomeDetailMapper; +import com.mashibing.service.base.WyEstateIncomeDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费收入明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateIncomeDetailServiceImpl extends ServiceImpl implements WyEstateIncomeDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..2d4df8bf --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateIncomeProject; +import com.mashibing.mapper.WyEstateIncomeProjectMapper; +import com.mashibing.service.base.WyEstateIncomeProjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费收入项目 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateIncomeProjectServiceImpl extends ServiceImpl implements WyEstateIncomeProjectService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" new file mode 100644 index 00000000..39742aff --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateMoney; +import com.mashibing.mapper.WyEstateMoneyMapper; +import com.mashibing.service.base.WyEstateMoneyService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘费用 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateMoneyServiceImpl extends ServiceImpl implements WyEstateMoneyService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" new file mode 100644 index 00000000..afa57579 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateOutDetail; +import com.mashibing.mapper.WyEstateOutDetailMapper; +import com.mashibing.service.base.WyEstateOutDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费支出明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateOutDetailServiceImpl extends ServiceImpl implements WyEstateOutDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" new file mode 100644 index 00000000..90d5fdc2 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateOutDetailSub; +import com.mashibing.mapper.WyEstateOutDetailSubMapper; +import com.mashibing.service.base.WyEstateOutDetailSubService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费支出明细_审批子表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateOutDetailSubServiceImpl extends ServiceImpl implements WyEstateOutDetailSubService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" new file mode 100644 index 00000000..8bf31cb4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyEstateOutProject; +import com.mashibing.mapper.WyEstateOutProjectMapper; +import com.mashibing.service.base.WyEstateOutProjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 楼盘经费支出项目 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyEstateOutProjectServiceImpl extends ServiceImpl implements WyEstateOutProjectService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" new file mode 100644 index 00000000..aef32264 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyFireAccident; +import com.mashibing.mapper.WyFireAccidentMapper; +import com.mashibing.service.base.WyFireAccidentService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 消防事故 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyFireAccidentServiceImpl extends ServiceImpl implements WyFireAccidentService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" new file mode 100644 index 00000000..11da05bf --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyFireCheck; +import com.mashibing.mapper.WyFireCheckMapper; +import com.mashibing.service.base.WyFireCheckService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 消防巡查 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyFireCheckServiceImpl extends ServiceImpl implements WyFireCheckService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" new file mode 100644 index 00000000..ccdf6385 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyFireExercise; +import com.mashibing.mapper.WyFireExerciseMapper; +import com.mashibing.service.base.WyFireExerciseService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 消防演练 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyFireExerciseServiceImpl extends ServiceImpl implements WyFireExerciseService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" new file mode 100644 index 00000000..c4c7b6c9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyFireFacility; +import com.mashibing.mapper.WyFireFacilityMapper; +import com.mashibing.service.base.WyFireFacilityService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 消防设施 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyFireFacilityServiceImpl extends ServiceImpl implements WyFireFacilityService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" new file mode 100644 index 00000000..238747a8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyGoodsInout; +import com.mashibing.mapper.WyGoodsInoutMapper; +import com.mashibing.service.base.WyGoodsInoutService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物品出入 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyGoodsInoutServiceImpl extends ServiceImpl implements WyGoodsInoutService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" new file mode 100644 index 00000000..803a81a7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyGreenCheck; +import com.mashibing.mapper.WyGreenCheckMapper; +import com.mashibing.service.base.WyGreenCheckService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 绿化检查 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyGreenCheckServiceImpl extends ServiceImpl implements WyGreenCheckService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" new file mode 100644 index 00000000..718d6748 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyGreenSetting; +import com.mashibing.mapper.WyGreenSettingMapper; +import com.mashibing.service.base.WyGreenSettingService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 绿化设置 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyGreenSettingServiceImpl extends ServiceImpl implements WyGreenSettingService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..34c101cc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyIncomeDetail; +import com.mashibing.mapper.WyIncomeDetailMapper; +import com.mashibing.service.base.WyIncomeDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 收入明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyIncomeDetailServiceImpl extends ServiceImpl implements WyIncomeDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..b1a467a8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyIncomeProject; +import com.mashibing.mapper.WyIncomeProjectMapper; +import com.mashibing.service.base.WyIncomeProjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 收入项目 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyIncomeProjectServiceImpl extends ServiceImpl implements WyIncomeProjectService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" new file mode 100644 index 00000000..43e1c77f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyNoteManage; +import com.mashibing.mapper.WyNoteManageMapper; +import com.mashibing.service.base.WyNoteManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 票据管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyNoteManageServiceImpl extends ServiceImpl implements WyNoteManageService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" new file mode 100644 index 00000000..b12c0ccc --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyOutDetail; +import com.mashibing.mapper.WyOutDetailMapper; +import com.mashibing.service.base.WyOutDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 支出明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyOutDetailServiceImpl extends ServiceImpl implements WyOutDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" new file mode 100644 index 00000000..031caa22 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyOutProject; +import com.mashibing.mapper.WyOutProjectMapper; +import com.mashibing.service.base.WyOutProjectService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 支出项目 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyOutProjectServiceImpl extends ServiceImpl implements WyOutProjectService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" new file mode 100644 index 00000000..2c1f2ad5 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyPictureManage; +import com.mashibing.mapper.WyPictureManageMapper; +import com.mashibing.service.base.WyPictureManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 图纸管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyPictureManageServiceImpl extends ServiceImpl implements WyPictureManageService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" new file mode 100644 index 00000000..3d8c6bab --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyPropertyTakeoverDetail; +import com.mashibing.mapper.WyPropertyTakeoverDetailMapper; +import com.mashibing.service.base.WyPropertyTakeoverDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物业接管工程明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyPropertyTakeoverDetailServiceImpl extends ServiceImpl implements WyPropertyTakeoverDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" new file mode 100644 index 00000000..0c10e602 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyPropertyTakeoverSchema; +import com.mashibing.mapper.WyPropertyTakeoverSchemaMapper; +import com.mashibing.service.base.WyPropertyTakeoverSchemaService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物业接管概要 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyPropertyTakeoverSchemaServiceImpl extends ServiceImpl implements WyPropertyTakeoverSchemaService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..80d9ca7c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyRenewMsgRemindLog; +import com.mashibing.mapper.WyRenewMsgRemindLogMapper; +import com.mashibing.service.base.WyRenewMsgRemindLogService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 续费短信提醒日志 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyRenewMsgRemindLogServiceImpl extends ServiceImpl implements WyRenewMsgRemindLogService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" new file mode 100644 index 00000000..56d9d151 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WySecurityArrange; +import com.mashibing.mapper.WySecurityArrangeMapper; +import com.mashibing.service.base.WySecurityArrangeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 保安安排 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WySecurityArrangeServiceImpl extends ServiceImpl implements WySecurityArrangeService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" new file mode 100644 index 00000000..95851072 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyServiceCashierGroup; +import com.mashibing.mapper.WyServiceCashierGroupMapper; +import com.mashibing.service.base.WyServiceCashierGroupService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 客服收银组 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyServiceCashierGroupServiceImpl extends ServiceImpl implements WyServiceCashierGroupService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" new file mode 100644 index 00000000..6aba3269 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyTakeoverDataDetail; +import com.mashibing.mapper.WyTakeoverDataDetailMapper; +import com.mashibing.service.base.WyTakeoverDataDetailService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 物业接管资料明细 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyTakeoverDataDetailServiceImpl extends ServiceImpl implements WyTakeoverDataDetailService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" new file mode 100644 index 00000000..88a0f21e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyVegetationInformation; +import com.mashibing.mapper.WyVegetationInformationMapper; +import com.mashibing.service.base.WyVegetationInformationService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 植被信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyVegetationInformationServiceImpl extends ServiceImpl implements WyVegetationInformationService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" new file mode 100644 index 00000000..4ef7629b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.WyVisitManage; +import com.mashibing.mapper.WyVisitManageMapper; +import com.mashibing.service.base.WyVisitManageService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 来访管理 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class WyVisitManageServiceImpl extends ServiceImpl implements WyVisitManageService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" new file mode 100644 index 00000000..30380d8e --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhConstomerDecorate; +import com.mashibing.mapper.ZhConstomerDecorateMapper; +import com.mashibing.service.base.ZhConstomerDecorateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主装修 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhConstomerDecorateServiceImpl extends ServiceImpl implements ZhConstomerDecorateService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" new file mode 100644 index 00000000..da5757ce --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhConsumerComplain; +import com.mashibing.mapper.ZhConsumerComplainMapper; +import com.mashibing.service.base.ZhConsumerComplainService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主投诉 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhConsumerComplainServiceImpl extends ServiceImpl implements ZhConsumerComplainService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" new file mode 100644 index 00000000..1ed4116f --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCsHandleResult; +import com.mashibing.mapper.ZhCsHandleResultMapper; +import com.mashibing.service.base.ZhCsHandleResultService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主服务_办理结果 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCsHandleResultServiceImpl extends ServiceImpl implements ZhCsHandleResultService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" new file mode 100644 index 00000000..867cba4a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCsHandleSpeed; +import com.mashibing.mapper.ZhCsHandleSpeedMapper; +import com.mashibing.service.base.ZhCsHandleSpeedService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主服务_办理进度 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCsHandleSpeedServiceImpl extends ServiceImpl implements ZhCsHandleSpeedService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" new file mode 100644 index 00000000..df714ba0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerAskFix; +import com.mashibing.mapper.ZhCustomerAskFixMapper; +import com.mashibing.service.base.ZhCustomerAskFixService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主请修 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerAskFixServiceImpl extends ServiceImpl implements ZhCustomerAskFixService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" new file mode 100644 index 00000000..75386e6a --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerCheck; +import com.mashibing.mapper.ZhCustomerCheckMapper; +import com.mashibing.service.base.ZhCustomerCheckService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主验房 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerCheckServiceImpl extends ServiceImpl implements ZhCustomerCheckService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" new file mode 100644 index 00000000..f3f2abca --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerEstate; +import com.mashibing.mapper.ZhCustomerEstateMapper; +import com.mashibing.service.base.ZhCustomerEstateService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主房产对照表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerEstateServiceImpl extends ServiceImpl implements ZhCustomerEstateService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" new file mode 100644 index 00000000..c414b8a8 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerMembers; +import com.mashibing.mapper.ZhCustomerMembersMapper; +import com.mashibing.service.base.ZhCustomerMembersService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主成员 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerMembersServiceImpl extends ServiceImpl implements ZhCustomerMembersService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" new file mode 100644 index 00000000..f79257b4 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomer; +import com.mashibing.mapper.ZhCustomerMapper; +import com.mashibing.service.base.ZhCustomerService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主信息表 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerServiceImpl extends ServiceImpl implements ZhCustomerService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" new file mode 100644 index 00000000..16395bcd --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerService; +import com.mashibing.mapper.ZhCustomerServiceMapper; +import com.mashibing.service.base.ZhCustomerServiceService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主服务 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerServiceServiceImpl extends ServiceImpl implements ZhCustomerServiceService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" new file mode 100644 index 00000000..109c871b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhCustomerServiceType; +import com.mashibing.mapper.ZhCustomerServiceTypeMapper; +import com.mashibing.service.base.ZhCustomerServiceTypeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 业主服务类型 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhCustomerServiceTypeServiceImpl extends ServiceImpl implements ZhCustomerServiceTypeService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" new file mode 100644 index 00000000..def513b7 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContractCell; +import com.mashibing.mapper.ZhRentContractCellMapper; +import com.mashibing.service.base.ZhRentContractCellService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同房间 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractCellServiceImpl extends ServiceImpl implements ZhRentContractCellService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" new file mode 100644 index 00000000..45c0da98 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContractChange; +import com.mashibing.mapper.ZhRentContractChangeMapper; +import com.mashibing.service.base.ZhRentContractChangeService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同变更 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractChangeServiceImpl extends ServiceImpl implements ZhRentContractChangeService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" new file mode 100644 index 00000000..2fdfbd4d --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContractRefund; +import com.mashibing.mapper.ZhRentContractRefundMapper; +import com.mashibing.service.base.ZhRentContractRefundService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同退款 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractRefundServiceImpl extends ServiceImpl implements ZhRentContractRefundService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" new file mode 100644 index 00000000..a93da188 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContractReturn; +import com.mashibing.mapper.ZhRentContractReturnMapper; +import com.mashibing.service.base.ZhRentContractReturnService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同返利 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractReturnServiceImpl extends ServiceImpl implements ZhRentContractReturnService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" new file mode 100644 index 00000000..267f891b --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentContract; +import com.mashibing.mapper.ZhRentContractMapper; +import com.mashibing.service.base.ZhRentContractService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁合同 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentContractServiceImpl extends ServiceImpl implements ZhRentContractService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" new file mode 100644 index 00000000..39bdc8ef --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentInformation; +import com.mashibing.mapper.ZhRentInformationMapper; +import com.mashibing.service.base.ZhRentInformationService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租户信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentInformationServiceImpl extends ServiceImpl implements ZhRentInformationService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" new file mode 100644 index 00000000..d370c7df --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentReceive; +import com.mashibing.mapper.ZhRentReceiveMapper; +import com.mashibing.service.base.ZhRentReceiveService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租金收取 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentReceiveServiceImpl extends ServiceImpl implements ZhRentReceiveService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" new file mode 100644 index 00000000..2cd6279c --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentShare; +import com.mashibing.mapper.ZhRentShareMapper; +import com.mashibing.service.base.ZhRentShareService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租赁分租信息 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentShareServiceImpl extends ServiceImpl implements ZhRentShareService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" new file mode 100644 index 00000000..cdd56946 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" @@ -0,0 +1,20 @@ +package com.mashibing.service.impl; + +import com.mashibing.bean.ZhRentTransfer; +import com.mashibing.mapper.ZhRentTransferMapper; +import com.mashibing.service.base.ZhRentTransferService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.stereotype.Service; + +/** + *

+ * 租户转兑 服务实现类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +@Service +public class ZhRentTransferServiceImpl extends ServiceImpl implements ZhRentTransferService { + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/vo/CellMessage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/vo/CellMessage.java" new file mode 100644 index 00000000..e41350a1 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/vo/CellMessage.java" @@ -0,0 +1,71 @@ +package com.mashibing.vo; + +public class CellMessage { + private String unitCode; + private Integer startFloor; + private Integer stopFloor; + private Integer startCellId; + private Integer stopCellId; + + public CellMessage() { + } + + public CellMessage(String unitCode, Integer startFloor, Integer stopFloor, Integer startCellId, Integer stopCellId) { + this.unitCode = unitCode; + this.startFloor = startFloor; + this.stopFloor = stopFloor; + this.startCellId = startCellId; + this.stopCellId = stopCellId; + } + + public String getUnitCode() { + return unitCode; + } + + public void setUnitCode(String unitCode) { + this.unitCode = unitCode; + } + + public Integer getStartFloor() { + return startFloor; + } + + public void setStartFloor(Integer startFloor) { + this.startFloor = startFloor; + } + + public Integer getStopFloor() { + return stopFloor; + } + + public void setStopFloor(Integer stopFloor) { + this.stopFloor = stopFloor; + } + + public Integer getStartCellId() { + return startCellId; + } + + public void setStartCellId(Integer startCellId) { + this.startCellId = startCellId; + } + + public Integer getStopCellId() { + return stopCellId; + } + + public void setStopCellId(Integer stopCellId) { + this.stopCellId = stopCellId; + } + + @Override + public String toString() { + return "CellMessage{" + + "unitCode='" + unitCode + '\'' + + ", startFloor=" + startFloor + + ", stopFloor=" + stopFloor + + ", startCellId=" + startCellId + + ", stopCellId=" + stopCellId + + '}'; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/vo/UnitMessage.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/vo/UnitMessage.java" new file mode 100644 index 00000000..c298fff9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/java/com/mashibing/vo/UnitMessage.java" @@ -0,0 +1,39 @@ +package com.mashibing.vo; + +public class UnitMessage { + + private String buildingCode; + private Integer unitCount; + + public UnitMessage() { + } + + public UnitMessage(String buildingCode, Integer unitCount) { + this.buildingCode = buildingCode; + this.unitCount = unitCount; + } + + public String getBuildingCode() { + return buildingCode; + } + + public void setBuildingCode(String buildingCode) { + this.buildingCode = buildingCode; + } + + public Integer getUnitCount() { + return unitCount; + } + + public void setUnitCount(Integer unitCount) { + this.unitCount = unitCount; + } + + @Override + public String toString() { + return "UnitMessage{" + + "buildingCode='" + buildingCode + '\'' + + ", unitCount=" + unitCount + + '}'; + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/resources/application.yaml" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/resources/application.yaml" new file mode 100644 index 00000000..fbf86b78 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/main/resources/application.yaml" @@ -0,0 +1,21 @@ +#项目启动端口 +server: + port: 8080 +#数据源配置 +spring: + datasource: + url: jdbc:mysql://localhost:3306/family_service_platform?serverTimezone=UTC&useSSL=false + password: 123456 + username: root + driver-class-name: com.mysql.cj.jdbc.Driver +#配置mybatis +mybatis: + mapper-locations: classpath:com/mashibing/mapper/*.xml + configuration: + map-underscore-to-camel-case: true +#sql语句日志打印 +logging: + level: + com: + mashibing: + mapper: debug diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" new file mode 100644 index 00000000..22c5e9e9 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" @@ -0,0 +1,13 @@ +package com.mashibing; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class FamilyServicePlatformApplicationTests { + + @Test + void contextLoads() { + } + +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" new file mode 100644 index 00000000..f8a635a0 --- /dev/null +++ "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" @@ -0,0 +1,52 @@ +package com.mashibing; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.generator.AutoGenerator; +import com.baomidou.mybatisplus.generator.config.DataSourceConfig; +import com.baomidou.mybatisplus.generator.config.GlobalConfig; +import com.baomidou.mybatisplus.generator.config.PackageConfig; +import com.baomidou.mybatisplus.generator.config.StrategyConfig; +import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy; +import org.junit.jupiter.api.Test; + +public class TestGenerator { + + @Test + public void testGenerator() { + AutoGenerator autoGenerator = new AutoGenerator(); + + //全局配置 + GlobalConfig globalConfig = new GlobalConfig(); + globalConfig.setAuthor("lian") + .setOutputDir("D:\\IdeaProjects\\family_service_platform\\src\\main\\java")//设置输出路径 + .setFileOverride(true)//设置文件覆盖 + .setIdType(IdType.AUTO)//设置主键生成策略 + .setServiceName("%sService")//service接口的名称 + .setBaseResultMap(true)//基本结果集合 + .setBaseColumnList(true)//设置基本的列 + .setControllerName("%sController"); + + //配置数据源 + DataSourceConfig dataSourceConfig = new DataSourceConfig(); + dataSourceConfig.setDriverName("com.mysql.cj.jdbc.Driver").setUrl("jdbc:mysql://localhost:3306/family_service_platform?serverTimezone=UTC") + .setUsername("root").setPassword("123456"); + + //策略配置 + StrategyConfig strategyConfig = new StrategyConfig(); + strategyConfig.setCapitalMode(true)//设置全局大写命名 + .setNaming(NamingStrategy.underline_to_camel)//数据库表映射到实体的命名策略 + //.setTablePrefix("tbl_")//设置表名前缀 + .setInclude(); + + //包名配置 + PackageConfig packageConfig = new PackageConfig(); + packageConfig.setParent("com.mashibing").setMapper("mapper") + .setService("service").setController("controller") + .setEntity("bean").setXml("mapper"); + + autoGenerator.setGlobalConfig(globalConfig).setDataSource(dataSourceConfig) + .setStrategy(strategyConfig).setPackageInfo(packageConfig); + + autoGenerator.execute(); + } +} diff --git "a/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/webproject.zip" "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/webproject.zip" new file mode 100644 index 00000000..05bb7489 Binary files /dev/null and "b/project/06\346\245\274\347\233\230\347\256\241\347\220\2063/webproject.zip" differ