diff --git a/README.md b/README.md index b5ada3a2..0bea7fad 100644 --- a/README.md +++ b/README.md @@ -133,15 +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 Mybatis源码讲解2 2020/04/05 20:00-22:00 -100 何家云项目实战1 2020/04/11 15:00-17:00 -101 何家云项目实战2 2020/04/11 20:00-22:00 -102 何家云项目实战3 2020/04/12 15:00-17:00 -103 何家云项目实战4 2020/04/12 20:00-22:00 -104 何家云项目实战5 2020/04/18 15:00-17:00 -105 何家云项目实战6 2020/04/18 20:00-22:00 -106 何家云项目实战7 2020/04/19 15:00-17:00 -107 何家云项目实战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/mybatis/05mybatis-plus/04mybatis-plus\347\232\204\344\275\277\347\224\250.md" "b/javaframework/mybatis/05mybatis-plus/04mybatis-plus\347\232\204\344\275\277\347\224\250.md" new file mode 100644 index 00000000..8997fa14 --- /dev/null +++ "b/javaframework/mybatis/05mybatis-plus/04mybatis-plus\347\232\204\344\275\277\347\224\250.md" @@ -0,0 +1,1056 @@ +# 04mybatis-plus的使用 + +​ MyBatis-Plus(简称 MP)是一个 MyBatis的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 + +​ 特性: + +- **无侵入**:只做增强不做改变,引入它不会对现有工程产生影响,如丝般顺滑 +- **损耗小**:启动即会自动注入基本 CURD,性能基本无损耗,直接面向对象操作 +- **强大的 CRUD 操作**:内置通用 Mapper、通用 Service,仅仅通过少量配置即可实现单表大部分 CRUD 操作,更有强大的条件构造器,满足各类使用需求 +- **支持 Lambda 形式调用**:通过 Lambda 表达式,方便的编写各类查询条件,无需再担心字段写错 +- **支持主键自动生成**:支持多达 4 种主键策略(内含分布式唯一 ID 生成器 - Sequence),可自由配置,完美解决主键问题 +- **支持 ActiveRecord 模式**:支持 ActiveRecord 形式调用,实体类只需继承 Model 类即可进行强大的 CRUD 操作 +- **支持自定义全局通用操作**:支持全局通用方法注入( Write once, use anywhere ) +- **内置代码生成器**:采用代码或者 Maven 插件可快速生成 Mapper 、 Model 、 Service 、 Controller 层代码,支持模板引擎,更有超多自定义配置等您来使用 +- **内置分页插件**:基于 MyBatis 物理分页,开发者无需关心具体操作,配置好插件之后,写分页等同于普通 List 查询 +- **分页插件支持多种数据库**:支持 MySQL、MariaDB、Oracle、DB2、H2、HSQL、SQLite、Postgre、SQLServer 等多种数据库 +- **内置性能分析插件**:可输出 Sql 语句以及其执行时间,建议开发测试时启用该功能,能快速揪出慢查询 +- **内置全局拦截插件**:提供全表 delete 、 update 操作智能分析阻断,也可自定义拦截规则,预防误操作 + +### 1、mybatis-plus环境搭建 + +Emp.java + +```java +package com.mashibing.bean; + +import java.util.Date; + +public class Emp { + + private Integer empno; + private String eName; + private String job; + private Integer mgr; + private Date hiredate; + private Double sal; + private Double comm; + private Integer deptno; + + public Emp() { + } + + public Integer getEmpno() { + return empno; + } + + public void setEmpno(Integer empno) { + this.empno = empno; + } + + public String geteName() { + return eName; + } + + public void seteName(String eName) { + this.eName = eName; + } + + public String getJob() { + return job; + } + + public void setJob(String job) { + this.job = job; + } + + public Integer getMgr() { + return mgr; + } + + public void setMgr(Integer mgr) { + this.mgr = mgr; + } + + public Date getHiredate() { + return hiredate; + } + + public void setHiredate(Date hiredate) { + this.hiredate = hiredate; + } + + public Double getSal() { + return sal; + } + + public void setSal(Double sal) { + this.sal = sal; + } + + public Double getComm() { + return comm; + } + + public void setComm(Double comm) { + this.comm = comm; + } + + public Integer getDeptno() { + return deptno; + } + + public void setDeptno(Integer deptno) { + this.deptno = deptno; + } + + @Override + public String toString() { + return "Emp{" + + "empno=" + empno + + ", ename='" + eName + '\'' + + ", job='" + job + '\'' + + ", mgr=" + mgr + + ", hiredate=" + hiredate + + ", sal=" + sal + + ", comm=" + comm + + ", deptno=" + deptno + + '}'; + } +} + +``` + +数据库表sql语句 + +```sql +CREATE TABLE `tbl_emp` ( + `EMPNO` int(4) NOT NULL AUTO_INCREMENT, + `E_NAME` varchar(10) DEFAULT NULL, + `JOB` varchar(9) DEFAULT NULL, + `MGR` int(4) DEFAULT NULL, + `HIREDATE` date DEFAULT NULL, + `SAL` double(7,2) DEFAULT NULL, + `COMM` double(7,2) DEFAULT NULL, + `DEPTNO` int(4) DEFAULT NULL, + PRIMARY KEY (`EMPNO`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +``` + +pom.xml + +```xml + + + 4.0.0 + + com.mashibing + mybatis_plus + 1.0-SNAPSHOT + + + + com.baomidou + mybatis-plus + 3.3.1 + + + + junit + junit + 4.13 + test + + + + log4j + log4j + 1.2.17 + + + + com.alibaba + druid + 1.1.21 + + + + mysql + mysql-connector-java + 8.0.19 + + + + + org.springframework + spring-context + 5.2.3.RELEASE + + + + org.springframework + spring-orm + 5.2.3.RELEASE + + + + + +``` + +mybatis-config.xml + +```xml + + + + + + + +``` + +log4j.properties + +```properties +# 全局日志配置 +log4j.rootLogger=INFO, stdout +# MyBatis 日志配置 +log4j.logger.com.mashibing=truce +# 控制台输出 +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n +``` + +db.properties + +```properties +driverClassname=com.mysql.cj.jdbc.Driver +username=root +password=123456 +url=jdbc:mysql://192.168.85.111:3306/demo?serverTimezone=UTC +``` + +spring.xml + +```xml + + + + + + + + + + + + + + + + + + + + + + +``` + +MyTest.java + +```java +package com.mashibing; + + +import com.alibaba.druid.pool.DruidDataSource; +import org.junit.Test; +import org.springframework.context.ApplicationContext; +import org.springframework.context.support.ClassPathXmlApplicationContext; + +import java.sql.SQLException; + +public class MyTest { + + ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml"); + + @Test + public void test01() throws SQLException { + DruidDataSource dataSource = context.getBean("dataSource", DruidDataSource.class); + System.out.println(dataSource.getConnection()); + } +} + +``` + +​ 在集成mybatis-plus的时候非常简单,只需要替换mybatis自己的sqlSessionFactoryBean对象即可 + +```xml + + + + + +``` + +### 2、简单的CRUD操作 + +​ 如果我们下面要实现CRUD的基本操作,那么我们该如何实现呢? + +​ 在Mybatis中,我们需要编写对应的Dao接口,并在接口中定义相关的方法,然后提供与该接口相同名称的Dao.xml文件,在文件中填写对应的sql语句,才能完成对应的操作 + +​ 在Mybatis-plus中,我们只需要定义接口,然后继承BaseMapper类即可,此前做的所有操作都是由Mybatis-plus来帮我们完成,不需要创建sql映射文件 + +EmpDao.java + +```java +package com.mashibing.dao; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.mashibing.bean.Emp; + +/** + * 在mybatis操作的时候,我们需要自己定义接口中实现的方法,并添加与之对应的EmpDao.xml文件,编写对应的sql语句 + * 在mybatis-plus操作的时候,我们只需要继承BaseMapper接口即可,其中的泛型T表示我们要实际操作的实体类对象 + */ +public interface EmpDao extends BaseMapper { +} + +``` + +#### 1、插入操作 + +MyTest.java + +```java +package com.mashibing; + + +import com.alibaba.druid.pool.DruidDataSource; +import com.mashibing.bean.Emp; +import com.mashibing.dao.EmpDao; +import org.junit.Test; +import org.springframework.context.ApplicationContext; +import org.springframework.context.support.ClassPathXmlApplicationContext; + +import java.sql.SQLException; +import java.util.Date; + +public class MyTest { + + ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml"); + + private EmpDao empDao = context.getBean("empDao",EmpDao.class); + +@Test + public void testInsert(){ + Emp emp = new Emp(); + emp.seteName("zhangsan"); + emp.setJob("Teacher"); + emp.setMgr(100); + emp.setSal(1000.0); + emp.setComm(500.0); + emp.setHiredate(new Date()); + emp.setDeptno(10); + int insert = empDao.insert(emp); + System.out.println(insert); + } +} + +``` + +​ 当运行上述代码的时候,大家发现报错了,原因在于你写的实体类的名称跟表的名称不匹配,因此在实现的是需要添加@TableName注解,指定具体的表的名称 + +```java +@TableName("emp") +public class Emp {//省略内容} +``` + +上述代码运行通过之后,大家会发现结果能够正常的进行插入,但是在控制台会打印一个警告信息,说没有@TableId的注解,原因就在于定义实体类的时候并没有声明其中的主键是哪个列,以及使用什么样的主键生成策略,因此,可以在类的属性上添加如下注解,来消除此警告 + +```java +public class Emp { + + @TableId(value = "empno",type = IdType.AUTO) + private Integer empno; + private String eName; + private String job; + private Integer mgr; + private Date hiredate; + private Double sal; + private Double comm; + private Integer deptno; + //set、get、tostring方法省略 +} + +``` + +​ 但是大家会发现,我们在写属性的时候,实体类属性名称跟表的属性名称并没有一一对应上,那么为什么会完成对应的操作呢? + +​ 其实原因就在于mybatis-plus的全局配置 + +*** + +在进行数据插入的是,如果我们输入的时候用的是全字段,那么sql语句中就会执行如下sql语句: + + INSERT INTO tbl_emp ( e_name, job, mgr, hiredate, sal, comm, deptno ) VALUES ( ?, ?, ?, ?, ?, ?, ? ) + +但是如果我们在插入的时候,将对象中的某些属性值设置为空,那么会是什么效果呢? + +```java + @Test + public void testInsert(){ + Emp emp = new Emp(); + emp.seteName("zhangsan"); + emp.setJob("Teacher"); + emp.setMgr(100); +// emp.setSal(1000.0); +// emp.setComm(500.0); +// emp.setHiredate(new Date()); +// emp.setDeptno(10); + int insert = empDao.insert(emp); + System.out.println(insert); + System.out.println(emp.getEmpno()); + } +``` + + INSERT INTO tbl_emp ( e_name, job, mgr ) VALUES ( ?, ?, ? ) + +大家其实可以看到我们在插入的时候,mybatis-plus会根据我会输入的对象的字段的个数来动态的调整我们的sql语句插入的字段,这是大家需要注意的mybatis-plus比较灵活的地方。 + +#### 2、更新操作 + +```java + @Test + public void testUpdate(){ + Emp emp = new Emp(); + emp.setEmpno(1); + emp.seteName("lisi"); + emp.setJob("student"); + emp.setMgr(100); + emp.setSal(1000.0); + emp.setComm(500.0); + emp.setHiredate(new Date()); + emp.setDeptno(10); + int update = empDao.updateById(emp); + System.out.println(update); + } +``` + +#### 3、删除操作 + +```java + @Test + public void testDelete(){ + // 1、根据id删除数据 +// int i = empDao.deleteById(1); +// System.out.println(i); + + // 2、根据一组id删除数据 +// int i = empDao.deleteBatchIds(Arrays.asList(2, 3, 4)); +// System.out.println(i); + + // 3、根据条件删除数据 +// QueryWrapper queryWrapper = new QueryWrapper(); +// queryWrapper.in("empno",Arrays.asList(5,6,7)); +// int delete = empDao.delete(queryWrapper); +// System.out.println(delete); + + // 4、条件封装map删除数据 + Map map = new HashMap<>(); + map.put("empno",9); + int i = empDao.deleteByMap(map); + System.out.println(i); + } +``` + +#### 4、查询操作 + +```java + @Test + public void testselect(){ + + // 1、根据id查询对象 +// Emp emp = empDao.selectById(1); +// System.out.println(emp); + + // 2、根据实体包装类查询单个对象,返回的结果集有且仅能有一个对象 +// QueryWrapper emp = new QueryWrapper(); +// emp.eq("empno",2).eq("e_name","zhangsan"); +// Emp emp1 = empDao.selectOne(emp); +// System.out.println(emp1); + + // 3、通过多个id值进行查询 +// List list = empDao.selectBatchIds(Arrays.asList(1, 2, 3)); +// for (Emp emp : list) { +// System.out.println(emp); +// } + + // 4、通过map封装进行条件查询 +// Map map = new HashMap(); +// map.put("e_name","zhangsan"); +// map.put("sal",1000.0); +// List list = empDao.selectByMap(map); +// for (Emp emp : list) { +// System.out.println(emp); +// } + + // 5、分页查询,需要添加分页插件 + /** + * + * + * + * + * + */ + + // Page empPage = empDao.selectPage(new Page<>(2, 5), null); + // List records = empPage.getRecords(); + // System.out.println(records); + + // 6、根据条件返回查询结果总数 +// QueryWrapper queryWrapper = new QueryWrapper<>(); +// queryWrapper.eq("e_name","zhangsan"); +// Integer integer = empDao.selectCount(queryWrapper); +// System.out.println(integer); + + // 7、根据条件查询所有结果返回list集合 +// List list = empDao.selectList(null); +// for (Emp emp : list) { +// System.out.println(emp); +// } + + // 8、根据条件查询结果封装成map的list结构 +// List> maps = empDao.selectMaps(null); +// System.out.println(maps); + } +``` + + + +### 3、Mybatis-plus的相关配置 + +​ 在mybatis中我们可以在mybatis-config配置文件中可以添加标签,设置全局的默认策略,在MP中也具备相同的功能,只不过配置方式有所不同,我们可以在spring.xml文件中添加配置。 + +https://mp.baomidou.com/config/ + +在此链接中包含了非常多的配置项,用户可以按照自己的需求添加需要的配置,配置方式如下: + +spring.xml + +```xml + + + + ...... + + + + ...... + + + + + ...... + + + + ...... + +``` + +​ 通过这个配置文件的配置,大家可以进行回想上述问题的出现,mybatis-plus是如何解决这个问题的呢? + +​ 在mybatis-plus中会引入写默认的配置,这个选项的默认配置为true,因此可以完成对应的实现。 + +我们可以通过如下配置来禁用驼峰标识的操作,如下所示: + +```xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +``` + +**1、当添加上述配置之后,大家发现运行过程中报错,** + +​ Property 'configuration' and 'configLocation' can not specified with together + +​ 表示这两个标签无法同时使用,因此我们可以选择将configLocation给禁用掉,就是不使用mybatis的配置,此时就能够正常使用了,但是放置属性的时候又报错了,原因就在于我们把驼峰标识给禁用了,重新开启即可。除此之外,我们还可以在属性的上面添加@TableField属性 + +```java + @TableField(value = "e_name") + private String eName; +``` + +**2、此时发现日志功能又无法使用了,只需要添加如下配置即可** + +```xml + + + + +``` + +**3、我们在刚刚插入数据的时候发现每个类可能都需要写主键生成策略,这是比较麻烦的,因此可以选择将主键配置策略设置到全局配置中。** + +```xml + + + + +``` + +**4、如果你的表的名字都具备相同的前缀,那么可以设置默认的前缀配置策略,此时的话可以将实体类上的@TableName标签省略不写** + +```xml + + + + + +``` + +**5、在mybatis-plus中如果需要获取插入的数据的主键的值,那么直接获取即可,原因就在于配置文件中指定了默认的属性为true** + +### 4、条件构造器Wrapper(看官网即可) + +### 5、代码生成器 + +​ AutoGenerator 是 MyBatis-Plus 的代码生成器,通过 AutoGenerator 可以快速生成 Entity、Mapper、Mapper XML、Service、Controller 等各个模块的代码,极大的提升了开发效率。 + +​ 其实在学习mybatis的时候我们就使用过逆向工程,根据我们的数据表来生成的对应的实体类,DAO接口和Mapper映射文件,而MyBatis-plus提供了更加完善的功能,下面来针对两种方式做一个基本的对比 + +​ 1、MyBatis-plus是根据java代码开生成代码的,而Mybatis是根据XML文件的配置来生成的 + +​ 2、MyBatis-plus能够生成实体类、Mapper接口、Mapper映射文件,Service层,Controller层,而Mybatis只能生成实体类,Mapper接口,Mapper映射文件 + +#### 1、操作步骤: + +##### 1、添加依赖 + +添加代码生成器依赖 + +```xml + + com.baomidou + mybatis-plus-generator + 3.3.1.tmp + +``` + +添加 模板引擎 依赖,MyBatis-Plus 支持 Velocity(默认)、Freemarker、Beetl,用户可以选择自己熟悉的模板引擎,如果都不满足您的要求,可以采用自定义模板引擎。 + +```xml + + org.apache.velocity + velocity-engine-core + 2.2 + + + org.freemarker + freemarker + 2.3.30 + + + com.ibeetl + beetl + 3.1.1.RELEASE + +``` + +##### 2、编写生成类 + +```java +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.Test; + +public class MyTest { + + + @Test + public void testGenerator(){ + //此处默认有两个对应的实现类,大家不要导错包 + GlobalConfig globalConfig = new GlobalConfig(); + //设置全局的配置 + globalConfig.setActiveRecord(true)//是否支持AR模式 + .setAuthor("lian")//设置作者 + .setOutputDir("e:\\self_project\\mybatisplus_generatorcode\\src\\main\\java")//设置生成路径 + .setFileOverride(true)//设置文件覆盖 + .setIdType(IdType.AUTO) //设置主键生成策略 + .setServiceName("%sService")//设置生成的serivce接口的名字 + .setBaseResultMap(true) //设置基本的结果集映射 + .setBaseColumnList(true);//设置基本的列集合 + + //设置数据源的配置 + DataSourceConfig dataSourceConfig = new DataSourceConfig(); + dataSourceConfig.setDriverName("com.mysql.cj.jdbc.Driver") + .setUrl("jdbc:mysql://192.168.85.111:3306/mp?serverTimezone=UTC") + .setUsername("root").setPassword("123456"); + + // 进行策略配置 + StrategyConfig strategyConfig = new StrategyConfig(); + strategyConfig.setCapitalMode(true)//设置全局大写命名 + .setNaming(NamingStrategy.underline_to_camel)//数据库表映射到实体的命名策略 + .setTablePrefix("tbl_")//设置表名前缀 + .setInclude("tbl_emp");//生成的表 + + // 进行包名的策略配置 + PackageConfig packageConfig = new PackageConfig(); + packageConfig.setParent("com.mashibing") + .setMapper("mapper") + .setService("service") + .setController("controller") + .setEntity("bean") + .setXml("mapper"); + + //整合配置 + AutoGenerator autoGenerator = new AutoGenerator(); + autoGenerator.setGlobalConfig(globalConfig).setDataSource(dataSourceConfig).setStrategy(strategyConfig) + .setPackageInfo(packageConfig); + + autoGenerator.execute(); + } +} +``` + +​ 注意,当通过上述代码实现之后,大家发现可以在Controller层可以直接实现调用,这些调用的实现最核心的功能就在于ServiceImpl类,这个类中自动完成mapper的注入,同时提供了一系列CRUD的方法。 + +### 6、插件扩展 + +MyBatis 允许你在映射语句执行过程中的某一点进行拦截调用。默认情况下,MyBatis 允许使用插件来拦截的方法调用包括: + +- Executor (update, query, flushStatements, commit, rollback, getTransaction, close, isClosed) +- ParameterHandler (getParameterObject, setParameters) +- ResultSetHandler (handleResultSets, handleOutputParameters) +- StatementHandler (prepare, parameterize, batch, update, query) + +#### 1、分页插件 + +在spring.xml文件中添加如下配置引入插件 + +```xml + + + + + +``` + +编写测试类 + +```java + @Test + public void TestPage(){ + Page page = new Page(2,2); + Page page1 = empDao.selectPage(page, null); + List records = page1.getRecords(); + for (Object record : records) { + System.out.println(record); + } + System.out.println("=============="); + System.out.println("获取总条数:"+page.getTotal()); + System.out.println("当前页码:"+page.getCurrent()); + System.out.println("总页码:"+page.getPages()); + System.out.println("每页显示的条数:"+page.getSize()); + System.out.println("是否有上一页:"+page.hasPrevious()); + System.out.println("是否有下一页:"+page.hasNext()); + } +``` + +#### 2、乐观锁插件 + +当要更新一条记录的时候,希望这条记录没有被别人更新 + +乐观锁实现方式: + +取出记录时,获取当前version +更新时,带上这个version +执行更新时, set version = newVersion where version = oldVersion +如果version不对,就更新失败 + +添加配置: + +```xml + +``` + +修改实体类添加version字段并在表中添加version字段 + +编写测试类 + +```java + @Test + public void testOptimisticLocker(){ + Emp emp = new Emp(); + emp.setEmpno(22); + emp.seteName("zhang"); + emp.setSal(10000.0); + emp.setComm(1000.0); + emp.setVersion(2); + empDao.updateById(emp); + } +``` + +#### 3、SQL执行分析插件,避免出现全表更新和删除 + +```xml + + + + + + + +``` + +``` +@Test +public void testSqlExplain(){ + int delete = empDao.delete(null); + System.out.println(delete); +} +``` + +#### 4、非法sql检查插件 + +```xml + + +``` + +```java +@Test +public void testSqlIllegal(){ + QueryWrapper queryWrapper = new QueryWrapper<>(); + queryWrapper.or(); + List list = empDao.selectList(queryWrapper); + for (Emp emp : list) { + System.out.println(emp); + } +} +``` + +### 7、SQL注入器 + +​ 全局配置 `sqlInjector` 用于注入 `ISqlInjector` 接口的子类,实现自定义方法注入。也就是说我们可以将配置在xml中的文件使用注入的方式注入到全局中,就不需要再编写sql语句 + +自定义注入器 + +```java +package com.mashibing.injector; + +import com.baomidou.mybatisplus.core.injector.AbstractMethod; +import com.baomidou.mybatisplus.core.injector.AbstractSqlInjector; + +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.Stream; + +public class MyInjector extends AbstractSqlInjector{ + + @Override + public List getMethodList(Class mapperClass) { + return Stream.of(new DeleteAll()).collect(Collectors.toList()); + } +} + +``` + +添加配置: + +```xml + + + + + +``` + +```java +package com.mashibing.injector; + +import com.baomidou.mybatisplus.core.injector.AbstractMethod; +import com.baomidou.mybatisplus.core.metadata.TableInfo; +import org.apache.ibatis.mapping.MappedStatement; +import org.apache.ibatis.mapping.SqlSource; + +public class DeleteAll extends AbstractMethod { + @Override + public MappedStatement injectMappedStatement(Class mapperClass, Class modelClass, TableInfo tableInfo) { + String sql; + MySqlMethod mySqlMethod = MySqlMethod.DELETE_ALL; + if (tableInfo.isLogicDelete()) { + sql = String.format(mySqlMethod.getSql(), tableInfo.getTableName(), tableInfo, + sqlWhereEntityWrapper(true,tableInfo)); + } else { + mySqlMethod = MySqlMethod.DELETE_ALL; + sql = String.format(mySqlMethod.getSql(), tableInfo.getTableName(), + sqlWhereEntityWrapper(true,tableInfo)); + } + SqlSource sqlSource = languageDriver.createSqlSource(configuration, sql, modelClass); + return addUpdateMappedStatement(mapperClass, modelClass, mySqlMethod.getMethod(), sqlSource); + } +} +``` + +```java +package com.mashibing.injector; + + + /** + * 自定义全局删除方法 + */ + + public enum MySqlMethod { + + + /** + * 删除全部 + */ + DELETE_ALL("deleteAll", "根据 entity 条件删除记录", ""); + + + private final String method; + private final String desc; + private final String sql; + + MySqlMethod(String method, String desc, String sql) { + this.method = method; + this.desc = desc; + this.sql = sql; + } + + public String getMethod() { + return method; + } + + public String getDesc() { + return desc; + } + + public String getSql() { + return sql; + } + +} +``` + +```java +package com.mashibing.dao; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.mashibing.bean.Emp; + +/** + * 在mybatis操作的时候,我们需要自己定义接口中实现的方法,并添加与之对应的EmpDao.xml文件,编写对应的sql语句 + * 在mybatis-plus操作的时候,我们只需要继承BaseMapper接口即可,其中的泛型T表示我们要实际操作的实体类对象 + */ +public interface EmpDao extends BaseMapper { + Integer deleteAll(); +} +``` + +### 8、公共字段填充 + +- 实现元对象处理器接口:com.baomidou.mybatisplus.core.handlers.MetaObjectHandler + +- 注解填充字段 `@TableField(.. fill = FieldFill.INSERT)` 生成器策略部分也可以配置! + + metaobject:元对象,是mybatis提供的一个用于更加方便,更加优雅的访问对象的属性,给对象的属性设置值的一个对象,还会用于包装对象,支持Object,Map,Collection等对象进行包装。本质上metaobject是给对象的属性设置值,最终还是要通过Reflect获取到属性的对应方法的invoker,最终执行。 + +编写自定义的公共字段填充 + +```java +package com.mashibing.fill; + +import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler; +import org.apache.ibatis.reflection.MetaObject; + +import java.time.LocalDateTime; +import java.util.stream.Stream; + +public class MyMetaObjectHandler implements MetaObjectHandler { + + @Override + public void insertFill(MetaObject metaObject) { + this.strictInsertFill(metaObject, "eName", String.class, "lian"); // 起始版本 3.3.0(推荐使用) +// this.fillStrategy(metaObject, "createTime", LocalDateTime.now()); // 也可以使用(3.3.0 该方法有bug请升级到之后的版本如`3.3.1.8-SNAPSHOT`) + } + + @Override + public void updateFill(MetaObject metaObject) { + this.strictUpdateFill(metaObject, "eName", String.class,"lian"); // 起始版本 3.3.0(推荐使用) +// this.fillStrategy(metaObject, "updateTime", LocalDateTime.now()); // 也可以使用(3.3.0 该方法有bug请升级到之后的版本如`3.3.1.8-SNAPSHOT`) + } +} +``` + +添加到对应的配置中: + +```java + + + + + +``` + +测试: + +```java + @Test + public void testMeta(){ + int insert = empDao.insert(new Emp()); + System.out.println(insert); + } +``` + diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/compiler.xml b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/compiler.xml new file mode 100644 index 00000000..3139e183 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/compiler.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/encodings.xml b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/encodings.xml new file mode 100644 index 00000000..4987ecab --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/misc.xml b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/misc.xml new file mode 100644 index 00000000..4b661a5f --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/workspace.xml b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/workspace.xml new file mode 100644 index 00000000..06668f62 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/.idea/workspace.xml @@ -0,0 +1,813 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + select * from tbl_emp + + \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/db.properties b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/db.properties new file mode 100644 index 00000000..45d17b67 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/db.properties @@ -0,0 +1,4 @@ +driverClassName=com.mysql.cj.jdbc.Driver +url=jdbc:mysql://192.168.85.111:3306/mp?serverTimeZone=UTC +username=root +password=123456 \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/log4j.properties b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/log4j.properties new file mode 100644 index 00000000..d33beed0 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/log4j.properties @@ -0,0 +1,8 @@ +# \u5168\u5C40\u65E5\u5FD7\u914D\u7F6E%n +log4j.rootLogger=DEBUG, stdout +# MyBatis \u65E5\u5FD7\u914D\u7F6E +log4j.logger.com.mashibing=TRACE +# \u63A7\u5236\u53F0\u8F93\u51FA +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/mybatis-config.xml b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/mybatis-config.xml new file mode 100644 index 00000000..aba753a2 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/mybatis-config.xml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/spring.xml b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/spring.xml new file mode 100644 index 00000000..1b5db2d8 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/main/resources/spring.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/test/java/MyTest.java b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/test/java/MyTest.java new file mode 100644 index 00000000..52175985 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/src/test/java/MyTest.java @@ -0,0 +1,127 @@ +import com.alibaba.druid.pool.DruidDataSource; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.mashibing.bean.Emp; +import com.mashibing.dao.EmpDao; +import org.apache.ibatis.session.SqlSession; +import org.apache.ibatis.session.SqlSessionFactory; +import org.apache.ibatis.session.SqlSessionFactoryBuilder; +import org.junit.Test; +import org.springframework.context.support.ClassPathXmlApplicationContext; + +import java.sql.SQLException; +import java.util.*; + +public class MyTest { + + ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring.xml"); + @Test + public void test01() throws SQLException { + DruidDataSource dataSource = context.getBean("dataSource", DruidDataSource.class); + System.out.println(dataSource.getConnection()); + } + + /* + * 在mybatis-plus中,插入数据的sql语句会伴随你插入的对象的属性值进行更改,比较灵活 + * */ + @Test + public void test02(){ + EmpDao empDao = context.getBean("empDao", EmpDao.class); + Emp emp = new Emp(); + emp.seteName("zhangsan"); + emp.setJob("Teacher"); + emp.setMgr(100); + emp.setSal(1000.0); + emp.setComm(500.0); + emp.setHiredate(new Date()); + emp.setDeptno(10); + int insert = empDao.insert(emp); + System.out.println(); + System.out.println(insert); + } + + @Test + public void test03(){ + EmpDao empDao = context.getBean("empDao", EmpDao.class); + Emp emp = new Emp(); + emp.setEmpno(6); + emp.seteName("lisi"); + emp.setJob("Teacher"); + emp.setMgr(100); + int insert = empDao.updateById(emp); + System.out.println(); + System.out.println(insert); + } + + /*delete操作在使用的时候要使用queryWrapper*/ + @Test + public void test04(){ + EmpDao empDao = context.getBean("empDao", EmpDao.class); + //根据id删除数据 +// int i = empDao.deleteById(6); +// System.out.println(i); + //根据id集合批量删除 +// int i = empDao.deleteBatchIds(Arrays.asList(1, 2, 3)); + + //根据map类型的数据进行删除,但是要注意,key为列的名称。value是具体的值 +// Map map = new HashMap(); +// map.put("empno",4); +// int i = empDao.deleteByMap(map); +// QueryWrapper wrapper = new QueryWrapper(); +// wrapper.eq("empno",7); +// int delete = empDao.delete(wrapper); +// System.out.println(delete); + } + + @Test + public void test05(){ + EmpDao empdao = context.getBean(EmpDao.class); + /*查询单条语句,需要添加对应的查询条件,封装在QueryWrapper中 + * + * 注意使用selectOne的时候有且仅能返回一条语句,如果是多条结果的话,会报错 + * */ +// QueryWrapper wrapper = new QueryWrapper(); +// wrapper.eq("empno","8"); +// wrapper.eq("e_name","zhangsan"); +// Emp emp = empdao.selectOne(wrapper); +// System.out.println(emp); + + //查询某一个结果集的数据 +// List list = empdao.selectList(null); +// System.out.println(list); + + //根据id的集合返回数据 +// List list = empdao.selectBatchIds(Arrays.asList(8, 9)); +// System.out.println(list); + + //根据id进行查询 +// Emp emp = empdao.selectById(8); + + //查询结果集合封装成一个list里面的对象是map + //@MapKey 对应的结果是 Map + +// List> maps = empdao.selectMaps(null); +// System.out.println(); +// System.out.println(maps); + + //返回满足查询条件的所有行总数 +// Integer integer = empdao.selectCount(null); +// System.out.println(integer); + + //在使用分页的时候,必须要添加一个插件 + /** + * + * + * + * + */ +// Page empPage = empdao.selectPage(new Page(2, 2),null); +// System.out.println("-------------------"); +// System.out.println(empPage.getRecords()); + + +// empdao.selectMapsPage() + List emp = empdao.selectEmpByCondition(); + System.out.println(emp); + } +} diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/com/mashibing/bean/Emp.class b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/com/mashibing/bean/Emp.class new file mode 100644 index 00000000..68f7bae1 Binary files /dev/null and b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/com/mashibing/bean/Emp.class differ diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.class b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.class new file mode 100644 index 00000000..98fab430 Binary files /dev/null and b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.class differ diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.xml b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.xml new file mode 100644 index 00000000..8d2d772c --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/db.properties b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/db.properties new file mode 100644 index 00000000..45d17b67 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/db.properties @@ -0,0 +1,4 @@ +driverClassName=com.mysql.cj.jdbc.Driver +url=jdbc:mysql://192.168.85.111:3306/mp?serverTimeZone=UTC +username=root +password=123456 \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/log4j.properties b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/log4j.properties new file mode 100644 index 00000000..d33beed0 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/log4j.properties @@ -0,0 +1,8 @@ +# \u5168\u5C40\u65E5\u5FD7\u914D\u7F6E%n +log4j.rootLogger=DEBUG, stdout +# MyBatis \u65E5\u5FD7\u914D\u7F6E +log4j.logger.com.mashibing=TRACE +# \u63A7\u5236\u53F0\u8F93\u51FA +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/mybatis-config.xml b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/mybatis-config.xml new file mode 100644 index 00000000..aba753a2 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/mybatis-config.xml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/spring.xml b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/spring.xml new file mode 100644 index 00000000..1b5db2d8 --- /dev/null +++ b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/classes/spring.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/test-classes/MyTest.class b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/test-classes/MyTest.class new file mode 100644 index 00000000..8d89deb8 Binary files /dev/null and b/javaframework/mybatis/05mybatis-plus/mybatis_plus_helloworld/target/test-classes/MyTest.class differ diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/compiler.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/compiler.xml new file mode 100644 index 00000000..93987a76 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/compiler.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/encodings.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/encodings.xml new file mode 100644 index 00000000..4987ecab --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/misc.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/misc.xml new file mode 100644 index 00000000..4b661a5f --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/workspace.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/workspace.xml new file mode 100644 index 00000000..2ad678ee --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_generator/.idea/workspace.xml @@ -0,0 +1,509 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1585984182946 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + c3p0-0.9.5.4 + + + + + + + + 1.7 + + + + + + + + mybatis_plus_helloworld + + + + + + + + 1.8 + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/mybatis_plus_helloworld.iml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/mybatis_plus_helloworld.iml new file mode 100644 index 00000000..78b2cc53 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/mybatis_plus_helloworld.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/pom.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/pom.xml new file mode 100644 index 00000000..2cbebb44 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/pom.xml @@ -0,0 +1,55 @@ + + + 4.0.0 + + com.mashibing + mybatis_plus_helloworld + 1.0-SNAPSHOT + + + + com.baomidou + mybatis-plus + 3.3.1 + + + junit + junit + 4.13 + test + + + + log4j + log4j + 1.2.17 + + + + com.alibaba + druid + 1.1.21 + + + + mysql + mysql-connector-java + 8.0.19 + + + + + org.springframework + spring-context + 5.2.3.RELEASE + + + + org.springframework + spring-orm + 5.2.3.RELEASE + + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/bean/Emp.java b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/bean/Emp.java new file mode 100644 index 00000000..d87b71fa --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/bean/Emp.java @@ -0,0 +1,114 @@ +package com.mashibing.bean; + +import com.baomidou.mybatisplus.annotation.*; +import org.omg.CORBA.IDLType; + +import java.util.Date; + +//@TableName("tbl_emp") +public class Emp { + + /** + * 在 mybatis-plus2.x版本的时候,如果设置了表自增,那么id必须制定为auto类型,否则插入不成功,3.x不存在此问题 + */ + @TableId(value = "empno",type = IdType.AUTO) + private Integer empno; + @TableField(fill = FieldFill.INSERT) + private String eName; + private String job; + private Integer mgr; + private Date hiredate; + private Double sal; + private Double comm; + private Integer deptno; +// @Version + private Integer version; + + public Integer getEmpno() { + return empno; + } + + public void setEmpno(Integer empno) { + this.empno = empno; + } + + public String geteName() { + return eName; + } + + public void seteName(String eName) { + this.eName = eName; + } + + public String getJob() { + return job; + } + + public void setJob(String job) { + this.job = job; + } + + public Integer getMgr() { + return mgr; + } + + public void setMgr(Integer mgr) { + this.mgr = mgr; + } + + public Date getHiredate() { + return hiredate; + } + + public void setHiredate(Date hiredate) { + this.hiredate = hiredate; + } + + public Double getSal() { + return sal; + } + + public void setSal(Double sal) { + this.sal = sal; + } + + public Double getComm() { + return comm; + } + + public void setComm(Double comm) { + this.comm = comm; + } + + public Integer getDeptno() { + return deptno; + } + + public void setDeptno(Integer deptno) { + this.deptno = deptno; + } + + + public Integer getVersion() { + return version; + } + + public void setVersion(Integer version) { + this.version = version; + } + + @Override + public String toString() { + return "Emp{" + + "empno=" + empno + + ", eName='" + eName + '\'' + + ", job='" + job + '\'' + + ", mgr=" + mgr + + ", hiredate=" + hiredate + + ", sal=" + sal + + ", comm=" + comm + + ", deptno=" + deptno + + ", version=" + version + + '}'; + } +} diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/dao/EmpDao.java b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/dao/EmpDao.java new file mode 100644 index 00000000..6515d282 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/dao/EmpDao.java @@ -0,0 +1,15 @@ +package com.mashibing.dao; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.mashibing.bean.Emp; +import org.apache.ibatis.annotations.Mapper; + +import java.util.List; + +@Mapper +public interface EmpDao extends BaseMapper { + + public List selectEmpByCondition(); + + Integer deleteAll(); +} diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/fill/MyMetaObjectHandler.java b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/fill/MyMetaObjectHandler.java new file mode 100644 index 00000000..7123478e --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/fill/MyMetaObjectHandler.java @@ -0,0 +1,20 @@ +package com.mashibing.fill; + +import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler; +import org.apache.ibatis.reflection.MetaObject; + +import java.time.LocalDateTime; + +public class MyMetaObjectHandler implements MetaObjectHandler { + @Override + public void insertFill(MetaObject metaObject) { + this.strictInsertFill(metaObject, "eName", String.class, "lian"); + + } + + @Override + public void updateFill(MetaObject metaObject) { + this.strictUpdateFill(metaObject, "eName", String.class, "lian"); + + } +} diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/inject/DeleteAll.java b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/inject/DeleteAll.java new file mode 100644 index 00000000..6247d81a --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/inject/DeleteAll.java @@ -0,0 +1,24 @@ +package com.mashibing.inject; + +import com.baomidou.mybatisplus.core.injector.AbstractMethod; +import com.baomidou.mybatisplus.core.metadata.TableInfo; +import org.apache.ibatis.mapping.MappedStatement; +import org.apache.ibatis.mapping.SqlSource; + +public class DeleteAll extends AbstractMethod { + @Override + public MappedStatement injectMappedStatement(Class mapperClass, Class modelClass, TableInfo tableInfo) { + String sql; + MySqlMethod mySqlMethod = MySqlMethod.DELETE_ALL; + if (tableInfo.isLogicDelete()) { + sql = String.format(mySqlMethod.getSql(), tableInfo.getTableName(), tableInfo, + sqlWhereEntityWrapper(true,tableInfo)); + } else { + mySqlMethod = MySqlMethod.DELETE_ALL; + sql = String.format(mySqlMethod.getSql(), tableInfo.getTableName(), + sqlWhereEntityWrapper(true,tableInfo)); + } + SqlSource sqlSource = languageDriver.createSqlSource(configuration, sql, modelClass); + return addUpdateMappedStatement(mapperClass, modelClass, mySqlMethod.getMethod(), sqlSource); + } +} \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/inject/MyInjector.java b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/inject/MyInjector.java new file mode 100644 index 00000000..04907bfc --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/inject/MyInjector.java @@ -0,0 +1,16 @@ +package com.mashibing.inject; + +import com.baomidou.mybatisplus.core.injector.AbstractMethod; +import com.baomidou.mybatisplus.core.injector.AbstractSqlInjector; + +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.Stream; + +public class MyInjector extends AbstractSqlInjector{ + + @Override + public List getMethodList(Class mapperClass) { + return Stream.of(new DeleteAll()).collect(Collectors.toList()); + } +} \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/inject/MySqlMethod.java b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/inject/MySqlMethod.java new file mode 100644 index 00000000..d323e6a0 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/java/com/mashibing/inject/MySqlMethod.java @@ -0,0 +1,39 @@ +package com.mashibing.inject; + + + /** + * 自定义全局删除方法 + */ + + public enum MySqlMethod { + + + /** + * 删除全部 + */ + DELETE_ALL("deleteAll", "根据 entity 条件删除记录", ""); + + + private final String method; + private final String desc; + private final String sql; + + MySqlMethod(String method, String desc, String sql) { + this.method = method; + this.desc = desc; + this.sql = sql; + } + + public String getMethod() { + return method; + } + + public String getDesc() { + return desc; + } + + public String getSql() { + return sql; + } + +} \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/com/mashibing/dao/EmpDao.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/com/mashibing/dao/EmpDao.xml new file mode 100644 index 00000000..20892f21 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/com/mashibing/dao/EmpDao.xml @@ -0,0 +1,12 @@ + + + + + + delete from tbl_emp + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/db.properties b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/db.properties new file mode 100644 index 00000000..45d17b67 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/db.properties @@ -0,0 +1,4 @@ +driverClassName=com.mysql.cj.jdbc.Driver +url=jdbc:mysql://192.168.85.111:3306/mp?serverTimeZone=UTC +username=root +password=123456 \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/log4j.properties b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/log4j.properties new file mode 100644 index 00000000..d33beed0 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/log4j.properties @@ -0,0 +1,8 @@ +# \u5168\u5C40\u65E5\u5FD7\u914D\u7F6E%n +log4j.rootLogger=DEBUG, stdout +# MyBatis \u65E5\u5FD7\u914D\u7F6E +log4j.logger.com.mashibing=TRACE +# \u63A7\u5236\u53F0\u8F93\u51FA +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/mybatis-config.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/mybatis-config.xml new file mode 100644 index 00000000..aba753a2 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/mybatis-config.xml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/spring.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/spring.xml new file mode 100644 index 00000000..fa547e69 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/main/resources/spring.xml @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/test/java/MyTest.java b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/test/java/MyTest.java new file mode 100644 index 00000000..f9937f5d --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/src/test/java/MyTest.java @@ -0,0 +1,173 @@ +import com.alibaba.druid.pool.DruidDataSource; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.mashibing.bean.Emp; +import com.mashibing.dao.EmpDao; +import org.apache.ibatis.session.SqlSession; +import org.apache.ibatis.session.SqlSessionFactory; +import org.apache.ibatis.session.SqlSessionFactoryBuilder; +import org.junit.Test; +import org.springframework.context.support.ClassPathXmlApplicationContext; + +import java.sql.SQLException; +import java.util.*; + +public class MyTest { + + ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring.xml"); + @Test + public void test01() throws SQLException { + DruidDataSource dataSource = context.getBean("dataSource", DruidDataSource.class); + System.out.println(dataSource.getConnection()); + } + + /* + * 在mybatis-plus中,插入数据的sql语句会伴随你插入的对象的属性值进行更改,比较灵活 + * */ + @Test + public void test02(){ + EmpDao empDao = context.getBean("empDao", EmpDao.class); + Emp emp = new Emp(); + emp.seteName("zhangsan"); + emp.setJob("Teacher"); + emp.setMgr(100); + emp.setSal(1000.0); + emp.setComm(500.0); + emp.setHiredate(new Date()); + emp.setDeptno(10); + int insert = empDao.insert(emp); + System.out.println(); + System.out.println(insert); + System.out.println(emp.getEmpno()); + } + + @Test + public void test03(){ + EmpDao empDao = context.getBean("empDao", EmpDao.class); + Emp emp = new Emp(); + emp.setEmpno(6); + emp.seteName("lisi"); + emp.setJob("Teacher"); + emp.setMgr(100); + int insert = empDao.updateById(emp); + System.out.println(); + System.out.println(insert); + } + + /*delete操作在使用的时候要使用queryWrapper*/ + @Test + public void test04(){ + EmpDao empDao = context.getBean("empDao", EmpDao.class); + //根据id删除数据 +// int i = empDao.deleteById(6); +// System.out.println(i); + //根据id集合批量删除 +// int i = empDao.deleteBatchIds(Arrays.asList(1, 2, 3)); + + //根据map类型的数据进行删除,但是要注意,key为列的名称。value是具体的值 +// Map map = new HashMap(); +// map.put("empno",4); +// int i = empDao.deleteByMap(map); +// QueryWrapper wrapper = new QueryWrapper(); +// wrapper.eq("empno",7); +// int delete = empDao.delete(wrapper); +// System.out.println(delete); + } + + @Test + public void test05(){ + EmpDao empdao = context.getBean(EmpDao.class); + /*查询单条语句,需要添加对应的查询条件,封装在QueryWrapper中 + * + * 注意使用selectOne的时候有且仅能返回一条语句,如果是多条结果的话,会报错 + * */ +// QueryWrapper wrapper = new QueryWrapper(); +// wrapper.eq("empno","8"); +// wrapper.eq("e_name","zhangsan"); +// Emp emp = empdao.selectOne(wrapper); +// System.out.println(emp); + + //查询某一个结果集的数据 +// List list = empdao.selectList(null); +// System.out.println(list); + + //根据id的集合返回数据 +// List list = empdao.selectBatchIds(Arrays.asList(8, 9)); +// System.out.println(list); + + //根据id进行查询 +// Emp emp = empdao.selectById(8); + + //查询结果集合封装成一个list里面的对象是map + //@MapKey 对应的结果是 Map + +// List> maps = empdao.selectMaps(null); +// System.out.println(); +// System.out.println(maps); + + //返回满足查询条件的所有行总数 +// Integer integer = empdao.selectCount(null); +// System.out.println(integer); + + //在使用分页的时候,必须要添加一个插件 + /** + * + * + * + * + */ +// Page empPage = empdao.selectPage(new Page(2, 2),null); +// System.out.println("-------------------"); +// System.out.println(empPage.getRecords()); + + +// empdao.selectMapsPage() + List emp = empdao.selectEmpByCondition(); + System.out.println(emp); + } + + + @Test + public void test06(){ + Emp emp = new Emp(); + emp.setEmpno(18); + emp.seteName("haha"); + emp.setSal(10000.0); + emp.setVersion(1); + EmpDao empDao = context.getBean(EmpDao.class); + empDao.updateById(emp); + } + + @Test + public void test07(){ + EmpDao empDao = context.getBean(EmpDao.class); + Emp emp = new Emp(); + emp.setSal(3333.3); + int update = empDao.update(emp, null); + System.out.println(update); + } + + @Test + public void test08(){ + EmpDao empDao = context.getBean(EmpDao.class); + QueryWrapper queryWrapper = new QueryWrapper(); + queryWrapper.or(); + List list = empDao.selectList(queryWrapper); + System.out.println(list); + + } + + @Test + public void test09(){ + EmpDao empDao = context.getBean(EmpDao.class); + Integer integer = empDao.deleteAll(); + System.out.println(integer); + } + + @Test + public void test10(){ + EmpDao empDao = context.getBean(EmpDao.class); + empDao.insert(new Emp()); + } +} diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/bean/Emp.class b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/bean/Emp.class new file mode 100644 index 00000000..c4b4c674 Binary files /dev/null and b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/bean/Emp.class differ diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.class b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.class new file mode 100644 index 00000000..45b1fa95 Binary files /dev/null and b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.class differ diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.xml new file mode 100644 index 00000000..20892f21 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/dao/EmpDao.xml @@ -0,0 +1,12 @@ + + + + + + delete from tbl_emp + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/fill/MyMetaObjectHandler.class b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/fill/MyMetaObjectHandler.class new file mode 100644 index 00000000..65e3b628 Binary files /dev/null and b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/fill/MyMetaObjectHandler.class differ diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/inject/DeleteAll.class b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/inject/DeleteAll.class new file mode 100644 index 00000000..7ad0e2bc Binary files /dev/null and b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/inject/DeleteAll.class differ diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/inject/MyInjector.class b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/inject/MyInjector.class new file mode 100644 index 00000000..47007fc2 Binary files /dev/null and b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/inject/MyInjector.class differ diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/inject/MySqlMethod.class b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/inject/MySqlMethod.class new file mode 100644 index 00000000..825870d9 Binary files /dev/null and b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/com/mashibing/inject/MySqlMethod.class differ diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/db.properties b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/db.properties new file mode 100644 index 00000000..45d17b67 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/db.properties @@ -0,0 +1,4 @@ +driverClassName=com.mysql.cj.jdbc.Driver +url=jdbc:mysql://192.168.85.111:3306/mp?serverTimeZone=UTC +username=root +password=123456 \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/log4j.properties b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/log4j.properties new file mode 100644 index 00000000..d33beed0 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/log4j.properties @@ -0,0 +1,8 @@ +# \u5168\u5C40\u65E5\u5FD7\u914D\u7F6E%n +log4j.rootLogger=DEBUG, stdout +# MyBatis \u65E5\u5FD7\u914D\u7F6E +log4j.logger.com.mashibing=TRACE +# \u63A7\u5236\u53F0\u8F93\u51FA +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/mybatis-config.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/mybatis-config.xml new file mode 100644 index 00000000..aba753a2 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/mybatis-config.xml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/spring.xml b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/spring.xml new file mode 100644 index 00000000..fa547e69 --- /dev/null +++ b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/classes/spring.xml @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/test-classes/MyTest.class b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/test-classes/MyTest.class new file mode 100644 index 00000000..ad4e72dc Binary files /dev/null and b/javaframework/mybatis/06mybatis-plus2/mybatis_plus_helloworld/target/test-classes/MyTest.class differ diff --git "a/javaframework/mybatis/07mybatis\346\272\220\347\240\201\345\210\206\346\236\220/mybatis\346\265\201\347\250\213\345\233\276.jpg" "b/javaframework/mybatis/07mybatis\346\272\220\347\240\201\345\210\206\346\236\220/mybatis\346\265\201\347\250\213\345\233\276.jpg" new file mode 100644 index 00000000..edcc7b40 Binary files /dev/null and "b/javaframework/mybatis/07mybatis\346\272\220\347\240\201\345\210\206\346\236\220/mybatis\346\265\201\347\250\213\345\233\276.jpg" differ diff --git "a/javaframework/mybatis/07mybatis\346\272\220\347\240\201\345\210\206\346\236\220/mybatis\346\265\201\347\250\213\345\233\276.pos" "b/javaframework/mybatis/07mybatis\346\272\220\347\240\201\345\210\206\346\236\220/mybatis\346\265\201\347\250\213\345\233\276.pos" new file mode 100644 index 00000000..072f2c4f --- /dev/null +++ "b/javaframework/mybatis/07mybatis\346\272\220\347\240\201\345\210\206\346\236\220/mybatis\346\265\201\347\250\213\345\233\276.pos" @@ -0,0 +1 @@ +{"diagram":{"image":{"height":1887,"pngdata":"iVBORw0KGgoAAAANSUhEUgAABcYAAAdfCAYAAAAHAioaAAAACXBIWXMAAAsTAAALEwEAmpwYAAAgAElEQVR4nOzdebzVc/7A8ddp39fbXlSShkI1ofkhCdmKCCnUiIrsE4pGUshOWYtE9sjWzBiGmOzaSGQtae9qLy333u/vj3u+zek4595z7lLJ6/l4fB/T+X4/38/n8/2ec8/MvL/v8/6AJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJClF5Xb1BHZz5aJbiV09kXRVherXw9BqUG1Xz0XFrwrUACru6nlIkiRJkiTt9t6Dd9+DdxtD4101h3vg3nvg3jpQO1mb5tB0CkyZAlPiDkWKeXp7rOpQ9Ua4MRMyu8FpRd1/VajeFy5oBvukes5B0Dr8PBT1fAqiGlQLIAgg6AXn7Or5pKMGVFkJKwMIHoSHdvbYfaBPH+gTvW8lC9pXLah0EpxUZJMroGfgmWfgme5wRn5t60KtuTD3QXioLbRJd6yG0CDdc86D3ith5Xh4LN1z8xFpAc0bQf0i7leSJEmSpN2WAcc/gAACgJZwwFz4alfOYT/407cwL1GblvCnOdH5RaA0kHUj3HginHgOnJfsvMKqC7WawX6ptH0f3o/bVer+Yg7wXgKXFPTcalDtG/imNtReDItbQ4uVsKGo5tYH+jwOjwNcBpeOgfvzO+cs6PEcPAsQSeE7aG9oUhbKFmaeeX12qkG11bAa4Bw492l4qjBj7Wwj4ebr4bocyDkE2s2AmTth2BJT4LUwmD0dpreDQ4GcdDuqBXXfgH8cDAf3gLMmwYspnFYhA6rWiG6Vc/+zRgbUrAE1a0LNWpBRF+rWgTp1oe5L8GJ/GJCsw7pQ62dYUgpKjYWx/aF/XhPoD/0ehkcAOkLHd+HdVK+5K3SdBJOGwY2j4NZUz/s73HATDAc4A858ESalem5UiYZQrxHs3Qz2aQNt2kCb1tC6MlR+EB4cCAP3g/3mwtw0+wagOtRZD78U5FxJkiRJkqQiFWbDHgD77+o5NIcWydo0gb3DdkC5htBgASwIINgIG/tDv7z6Lsh2G4zqBeek2j7B8OUKM34Bx0zLhXBh7PUWtr9Yr8KrAQRbYWttqBN7rCN06A8D9oYmsfvPgh7pXNuX8GVx3sO8MsaL+70Nt85wfKr3PIEKP8PPAQTT4L+F6Cdlt8Go+Gt4EB4sSF8NoGE4/82wuRN0jD3eC875Dr5bCkvXwbpsyC7IPZ4O0/Oax0AYGLZtBa3ym/e/4d8BBD/Dz6RZgucZeCYc6xl4htQf/JSYClMDCFbBqlQzvHtBzx/hh62wNdn9yYbsqTAVoDm0KOhnuT5kpHMvJEmSJEmSik0YsGgJf0rxlFJpbDuYB/MSbeEcfoQfEx0HKtSB2mG7WlAJoA7U/gA+iAsi7VBfNxMy47cw0JPsdbgNhb8fDyfOhtnJtrkwN48Aa7k8jhFAsAbWJDoWzivZm1BUgXGgZBhc3gJb0il7ko+Kv8KvAQSTYXL8wfEwPiZwuN2uCox3hA7PwXPPwXOx/e+ugfFT4dTiHjeV+x/vbDg7PP9FeOlqGBS+HgLXFaTPA6HlGlgTQLAO1h0MB4fH2kKbvIK5G2Fj+PpD+PBFeOkReHgEjLwMLj8LenSCjvvl86uQGTAzgOBteDu/+daCuttgWwDBzXBLAS65xD1wbzjvaTCtMtQM+85rOwwO/RV+HQ+PNYCG+bUHaAWtYu/ZElgSvr4ULukAR2RA5XBysYHxVC6mPmQYGJckSZIkSbubEmHAogU0T+WEwgTWChqgqwWVakGl8HV0gblQmWfg2fDYDJhBbqmVPK9hASxI9jodDaBhHkGi30NgnJOhy4/ww1/hryR4oFEQ3eGMcI7HwnHxx+fD/ACCcTAudn+6gfEEyi2EnwIIZsEsUryePtAn0bh5BcabQ4tE2wlwQnjOoXBYsnbhFra9HoYmOk6CxRR3x8B4FzhlC2wJIHgP3iO6qOs4eDTsc0A+JUiSOQqOCjOal8LSJrB39FCJ7nBGZzj+CPi/VtCqKexVHaoCkcPh8HDsBtAwjSHL1IeM+pBxJBwZ9nEunBvuj91iT7wWBoftT4VTD4SWeW1VoXqiCQyGa8N+voVvYz+LRf0eHwPHNIV9gTL5fKcZGJckSZIk/SEUSYBMu5cW0Dwn+tP+0jE/8W8EjXOS/OT/W/gJ+LWwYyerGR0GWPKqMU40iB+BSGWosA5WRfdv7Qm9tsDm3tD7/tw61tsKO9ei9gg8nGh/eSif6FjFaDA02XmJ1IK6K2BpQec4HsaPh/HpnBOB8sDm+P3n5wbZmQNz3oI3Y481g30aRxd7fRVeK+h8ExkMlzeCvXIgp19ueZ2s8FgtqLQVSq+N1gwvrFTq2v8M3y+BzFT6WwbLClIrvwpklIMt6Z6XyF7QfHruw6W0nAU9noKJpaDUHJhzCpxC9HNxIVzUHJodCR0egof3gX2uhsGkUXP8XXj3bzBoNNxXF+qeBt3vgruAnALU0s7XGdD1hQT9PglPJmof+93WF84P//0yvJzfWH3hgkQLZo6C2zbCr/fBvRPgiWQP0YrCf+A/xdW3JEmSJEnSbmEzbE43q7ADHBGeH5sFvA80i9+OhePSzTgN2+dVYxwgLIuQpOxBJL7+cF7jLdjJGeM7I6u3FtQt7vESjF8u/qLrQ6Ow1nMf6BN/PMyEXQfriKufXJiM8YbQYC2sDSAYA6Njj50PfVfCykRlXaBgGePJxGbUppIhG7btCxek0j/smDFOgvegoNLNBobcexe+31/D14lqW1eF6h/BR2Hfr8FrYUmkdEyEidfA1am2L2jG+BnQvSB/h13g5HT/hs6Fc/OaS2s4KK/jbaDtOlj3MXzSE3qleo3JmDEuSZIkSZIZ44raFpN1G/oJFv4A38fvL1mMn5uNsLECVKiUoLQEELwdXRxuNxJshI0AlfIJAob1flfCClLIpN0AG+L3rYSV+yWoFd8fLrwKrloMi4+GY1KdfCkoOQOml4NyD8HD98J9CZr9JlP5Aji/RPTXBxNy677v4HToDlAZKgcJss1DeQXeEmWqj4EHqkCVn+Hn4XB97LEVsCIDMrpBt7Ph7Gfh2WR9K2WlboebB8HVEYjMhFknQedlsDK+4VpY3R46TYFJJ8GJXaDLu/DJBXDhR/BhqgOeC+dRgIcmhdEUGm+F7Pj9p0DXB+CB2H2DYQjAXJjbEtqRZK71odZiWAiwJZ9s/1nwebJj+8F+/4Y3KkPl+lBvNsyOb1MLKp0Apz8JT+Q1jiRJkiRJ0h9JxTCTLwPqxR7IgHrhsXa5AR4g/+zuJNmExZ45nVcWZ0HO3ZxHwDZWftmVqSpIVmuqCpo1ewj8OTwv0QKQSZReCAuT3ZPYz0ch39sdsqTPhXMDCHIgJ9kvB16ElwIIMiGzDtSOPdbHjHEg9WzghtBgGkwL206DadG63vkp9SQ8GZ6XAzmPwCPJ6mznpT5k5Le4ZFfoGo51ELROZTFK2DFjnCQP++J/3XA0HB2+7g5n5DX3RlA/bHsqnBrubw9/mQEzO8T8SieZFtA8/FubDbMTZerXgko/wg8BBPfAvfn1CelljKe7mTEuSZIkSfq9MGN8D1ctZpHKUnFZ4WWhZPjvnATZkmkK8suKzE8EImWgDOSfYZnMT7m10tkb9s6G7EWwKNnrwswVYCI8VZDzxsDojbApnXNmwPR78wh6vQ+fbISNFaHiMXD0E0nqJMc7AjoAZEHWTHg/lXP6wrmNoFGy45fCxQBLYWlLaFEyLjv+BDj9CZgAUBsq5zHU9gcXx0KnsTAW4G64O9kvBwbB306CE2tCzftgdA/okco1aUfHw4lPwoRaUAvgBXjhrNya8ql8brPOg/M+g09vg9vLQ/l+0O9UOPUGGPZIblZzSusZ/Bc+3gf2SXXes2Fmfm2SrYOQghLRmud8AV+8CC/m1Tg75vs15vus9BMwYV/Ydyq89wDcfylcS4L7cRgc+jpMyYCMl+HlftA7E9bHt1sJG+6Eux6AB66Ay1fD6ptgeGyb9+DdI6N/6/Hig+OFuD+SJEmSJEm7j9ia1PHZnk1g7/BYSzgw3B/uSzNjPJnIJJh0DVwdn7GerN+s3AB+WsGZ+AzwAIL5MD/29YK4muOFzRgviqzoVLeX4ZX85vkv+FcAwUSYmMp1AbwGrwUQfJh6qYsS38K3cZndsSqugTUBBDfDLYk6SLfG+GVw6VbYGkCwGlb3hF4D4KIbYNj9cP8kmPQ+vP8j/LAJNsXO7Wg4Ouynz+84Y7y4tvgxG0Pjl+Hl8HgWZI2Hx5pDi4Jsp0G3L+HL2DFXwsqbYERtqPMcPJdoXuF3z/fwfXFdc7oZ42fCmeG/OyYJMsdqDk3D9sdCp3B/BtR7H94Pj82Fua2gVey5veCcjbAxC7KS1FuPAOWrQI2G0GAfaPYmvBn2OQAuim08BaasgTXhtgW2hG1j94eLf1pjXJIkSZIk/e41hsYxAY7yscdiAzctY+pWxwen4qUTNAkXqtsMmxtD47zaVoXqYb9VoEYq1xc75zDQXQsqBRB8BV/FHl+QR2C8oIHEdOcYUDylVOB/pUY2waZU7l9tqBMGnAfnZq3mKzZQmOiehItu5kDOPtAsvz5SGTPsM9UtG7KzICvmM1AaDIzn83kudwMMi32wsAJWxJYOKeh2ELS+EYbHP7RYDasnw+RE54TfPRlQuRpUy2vrDMeH5x0A++fXPrzggpRSORm63AajIPe7jbjv1Fj7wX7huYfD4XGHS4+FseHxdbCubm52fiR8wBVAsBbWfg1f/wg/LoElq2F1KosrZ0FWV+iabG6xJXKSNCkRf7/yEYlpb8a5JEmSJEna9Q6A/cNAJXEBixbQPAyOxAYx44NT8dIJjL8H7wUkzx6OF2Yy7gf7xR+7AYYdDycmOi+ICXSHmfDvx5QGCdjzA+NA2RWwIoDgWhicX+MhcF1AbgmcaFAu3/7DWsaLYFH8PcmAypmQGUDwL/hXsk7SDYxXgRobYWMO5CyH5bNg1hT4xzgYdyPcOAD6d4Wu7aBd9N6Wuh6GhmNcBVfB7y8wfjqcHp5XFarXgkpFsbWFNvH3oQZU+Qa+Cfc/B8+Fn4nCBsYPhJaQW7N8HDwaPrQYCAOrQI0G0DDc8vvuSaSg9fULEhgPPQgPBRA8D88n639/OCA8N3YNh1hXwpVZuaVneof7/gn/TPXeZkHWGlizCBbNg3nTYfp6WB+QuyhwG2gbP2ZtqJMN2UXxnSZJkiRJkrTbagNtAwg2wIb4YwdCyzA40jgmm7uggfHYzM2CbABh4PVYOC6279hFIs+Fc+PnFBvoDjNtn8ytZbz9+IIUAuOJMk7Dhwt5BZEKGzxMcj/SXgPgZrglgGAhLCSmvnwCJebD/ACCp+HpVPqODTb3SRBkPghar4N1AQkzZLdLNzAOEA3S/uZ63oN334N3Y0umwP8CvdfA1TWgCqQfGC+O9zSv7Uv4MnZeZ8PZAdsfahWlCLmLee6woGdLOHA+zO8CpxTxeDtoDi2iWde/ySzO77snkV0RGB8IA8P918PQROceBK3DNrGlquI1hX1jX3eBU96AN26MPvTpBT27wMlHwpEHQetmsE90YdkKifrrE/M5nwrvxB/vDwNiP3cNoUFT2Cs8vgE2FHarDDWTXa8kSZIkSbsLF9/cw9WA6gDrEyzaFokJNGbBtsKOtRE2fAPfhK/DrO/58OPWFPv/Cr5uAk33gSZvxewfGc04nw/zJ8JzefVxHHQGmBaTMZ4N2RmQUQdqL4cVyc5dA+vCOruhACITYoLseRkLY7cV4l6WgJIXwYCCnv8gPHglXNEIGg2FwSNhRKJ2l8LFjaMPQ+6HB/Lrtz40ug6GAEyCSR/Cx/FtPodZh0H7oXD9+yku5JmqZbAy0f5wQcFauYHC7VbBuv1yg6spB993N6WjC9EW5vOURECC+vpfwhdNcn85UtiFePP0LcxL5RcNO1OQ5j1+AB44Bo49FU65CYbPgJlvwD9j25Te8fs16XoGP8J3sa9fh1dfh1fTmU+sCTDhLDjre/ju0gQlki6ECwIIwkU2/wvTNsPm9vB/a2F1RahY0LFDlSHym//CkSRJkiRJ2pnOg94BBLNgVvyxP8MhYdZgnZjAYn5Zm6mUUukJvQIIPoZPiAZgLoVLLoVLiMtUjXUH3BFAcC/cF+7rBB3D8XpCr0TnhRnglaHmBtiwBbbUgrrh8bkwNz5DN1HGeEHLnITn14JKBTk/RrnCZIzD/zK7N8PmRO9hBtRbC2sDCCbBpFT6PBQOC8j95UFjaJzu4nyxCpIxnkzYz1nQI7+2fdLMGM9rUclucFp4zsFwcH6LUMZmFydrszc0iZ3XFXBFQO5ilYW9T78X+Xz3lEu0xdZBbwb7JGsX31lsxngqW/z5VaDGz/BzQG699MZxayh0gCPCc5vA3mneihILYMECWBDfb7g/eq1AwvuW8Nci4Xf+e/BueM4smBWTXZ7Xr0yK9G9XkiRJkqRdzYzxPVzDaKB3MSyOP1YRyob/3gJbi2rMKlDjbrgrB3Iug4FEgyijYQzAS/DckiQZlDNhJkBrODi6q9z98CDAB/DBM/mU/RgPD1eEihPhyZWwLNw/APqNhFvqQB34XzZ7UVuRIDN/Z7sZ7ugDvZtBswkw/i9wFDHv78NwfxWoshE2XgFXptLnJ/DxbJj9OExYAAuSBC7LVstjMcJQpZgSEPkt7rcG1jSFvXKgRF7t6kCtxkkWd10QU0InHd/CvGTH6kcfumRB1myYnWqfy2BZXv3Gqhb9tccv8Eu4rygDkvvBn+Lnkk4Jk8LIhqwf4Pt0zgng1/zafJdHn5E8FoVsCo23JsiUPwW6PpDkFxXrYNX50OdN+E81qDYJJrWD/yP6t1YmmvEPsDHJ910LaN4KDpyUmyEem7Vedu9oMD0S956H+0vkHcROmAE/KFpv/yl4Ovy1xVlw9kyYfhR0fATu7w/98+hXkiRJkqQ9hoHxPVzL6MJ338MP8cdKxwTG1xRhYHwcPFQH6twNd38K09M5dxr8F6ANtAFK3wEjWkCLbMi+JDfbPKkIRFbAilWw6qq4Ug3T4IMO0UAQFG2AMdYdcPuWQpS+KAklhxS+zMSWgXDxG/Dv9tD+GXiiJ/QEgpFw8+lwGsBNMHwxLEq102tg0FswNdnx6+HqZKVbklkNq/M6HoHITPiiKlTNq919MPo+GJ2sj3TmlIqa0RrKa2FtUfcdagD1AXZmxvg38PXOGGc5LK8b84uOXW1+7oPDrPj9v8CqvM57C95+HMb/Fc7/M/z5Dhh5NVwDUCYmS31bksD48XDiPXDPKljVDJqujn6eqsV8N68vou/m1nDQmXDmYlj8FmyvVPUtzLsSrhwLY0+D00bATYsSPEiVJEmSJGlPY2B8D3dQdNG3OTAn/lj5HcsLbCmK8apD1TPhTIAz4IxTEizk9z58mmhBwWbQbBEs/g6+2xf2vRouvyqa4TgKbssvMzeAYCAMvBlGZcLSoriedN0BI1YmWOg0DeWKIDDOm/DW3+GGkTDibOixHJZ/D99dD9cBvAKv3A53pdPnW/B2Yee1p2gWXTBxPswvrjHCzOAFCTLeD4FDvourTZ2q/B5G7O4Og/Y/p5ht3giafQwfFed8roRBJ8CJNaDGwpgHTeVivl9XJwmMt4f2kPurgNUxD1kyYhavjBTRr1BGwC0RiDwAD26LewgwDsbtC80ehIcMikuSJEmS/igMjO/B6kKtP8GfAOYkCCqXiWYlZueWECiSBfeCmOzcRtAoUZsmcbWU470KrwyCq2+D2yMQmQNzhsLw/MYuA2XmpVimoiCuhkFlofzD8GiywPtgGF6YhUxLQMmCz3BHN8PIA6HVmXDmFXB5uP8z+Kxbbq323zycKOx4N8PI/NqdBT2eg2chtWzuarnlbxK2C8trnAfnTUyxXnpROAgOAvgWvi2uMfaNBt9/SPBrj7WwPn6R2KKQ3/tRFarPghlNoMnPsLAtHBpbsmhnWA1rlkBmKm0rQUZxz2ctrP4r9FkJK2dES0EBVIiWDIr+OiXhg8e/wF8A/hP30Kl2dM2HTbCpkA/aAOgOZ5wEJ66H9ffDI1USlDy6Jmahzs1JAvklYkoaJWvzDDxzPpxf2DlLkiRJklTcDIzvwTpApwhE1sLaTxMsvhkGbrYUUbY45NaEThZcC8uXNIBaeQW2noGnB8HVEYhsgA3dczPQY8sJREhQCiUCkeKqHQ6wPxzQB/rsD3+Klib5jTDDfXdxCVx+EpxUESoC5EDOBblBq027eGrpyPfzuTX3YUTCQF0xKNUZjgOYBu8XxwDVoFrjaM30z+GL4hijAEo8C083gSbrYN3JcFKioHgbaDsTZuyKCe4qb8C/4/dVjH6//pqkNnoz2CdcA+Kd3IUvY481B1he+IcOJYES90fXd7gT7loPv1TJZ5HhsjGlXNJtUzqmtrokSZIkSbuzPBe00+9bD+gBMBXeJUFGeIVosDRZ5t+uUgJKZkV/6j8CbopfIPAkOPFj+ORSuCx2/xbYEoFIKltB5hXWlU60kGmoNlROdQ5JtnwXr0zVydDlM/g4DIpDbsbnW/B2H+hDMdTe/iPoC+fVgBoBBP+CN4pjjEPhsPDfn8BnxTFGum6EYSfACVmQ1R3O+AK+jG8zGIbMgOnj4FGK6MFrk2hJmd+bilAJYCNsTHS8A3SE3AeG7+d+R28XXWOBL2FuIaZQbhH8dBuMWAALFsGih1Isn5Ts+6kHnJ1fm3PhnELMWZIkSZKkncbA+B6qDtQ+EU4AeBFeSNQmv4zGIlS+ITQIXxwLJ/aFC66FwXfCnU/CE1PgH0DkQGj5b3izVDSo1gW6xnd2AOx/KBxyeVxgvLjtBXsBLISfd+a46WoH7d6Ct16H18I61U/BUxPgCcgt0/A4PP4FfB6tB19k5Vt2ZxNgQmEejEBukHYU3AbwT/jnT8VUY/w4OBZya5gv2Q0+b73hvBvg7wAD4KK34M1E7cJSGxdA37fgXxlQuTDjdoFTZuaWgfrdZSFXiS4YmywwfnQ0MD4X5i7bcYHVyKnRtRlmxpRmSVddqNwAGlwD174Gr18I/YuiLIskSZIkSdJu7Ra4NYBgfe7CbRUTtbkdbgsg+Bq+jt0fQJDqFnteT+j1BrzxEXz0FXy1FJZuhs2p9tUSDlwGywIIvoVvw/3d4LTYcZ6EJwMIJsPk2Dmnk/ke3z4cK6/s1PWwPoCgMxyfqL+i3kgv4zbSGY5/C96K7WMxLD4DuoeNusFpS2BJbJuF8NNQ+HuDfMorxGoOLRJ9BlJxFvQo6Lnxwn7Oiv46ohpUaw0HdYFTroAr7oF7T4VT8+qjGlQL++mVR7ZrA2j4JXwZfnYOhJbpzrMvXJBC88gCWBBAMCZaAiO+n+bQItWxk80l1T5Og25ZkBVAkEqpoCvginCMWTArA+qlO7eDoPW9cF/4uhHUL8i15/U5PQO6h8f2hwOaQ4v47Sq4qqCf1fEwPoDgc/g8weESK2FlAMG9cF+yeR0EreNPTHQfEu07EFqG+5tGH+qFGkDDglxXUf7tSpIkSZK0q1ljfA/UCOpfAgMBHs0taZAwY/EIOBJgSR6lQdJRGkp2hs6x+zbBpvkwfzksPyxaHuI+GL0UFmfCqlWwai2saQJN34Q36kCd/8B/joVTvoXZ+8K+j8K4T+CzMHP2z/BngBmFyKaMtwk2VYAK+8C+8+Gn+OMtoHmlaGmEb/JY4PMOuH1LIRbfLAklh8DgVNs3hAa94NwLoG8zaBbu3wgb74Z7xsBtsVmiL8PkafDWVXDd5XBZBajQCPYaATcNhxvfh2nPwwuvwauLiuhzUYTK7g3194ZGDaHRXjHBvrvgzkfg4arRLN1Ya2HtK/BKsk5rQJWYlwkXJO0ARzwNzzaI/vLhcrgiUSmRonAcHBNm+j8TXaR0VzkZujwDz5aEksPgxrvh7nxOKfsCPDaRkHEAACAASURBVNUA6g+Cqw+Ggz+DD4+FY75PsIhorNj34d/wrzq5i67yFDz1M6wOjzWAOhtTzHxuEO0jP3OL/r0s0zGaEb40wUK9h8IhGdGFQd+FqeH+htDgPhgN8AF88HmCtSESCSCIQKRMzK8h9o7WqN8G237c/f6WJUmSJEmSit6L8GKY1VofGmVA5b5w/tFwdEs4sCUceBuMCjP/boThseeH+ztChwbQMH7rCB0SZQ3Whjo94KwOcMQ+uUHaion6rR8NCIXOh76/wq8BBJ/BZ7WiAehjoVN4zlyYeyC0PBKODPcdC53i+05ni80Y/ww+CyCYDbOPgP+Lvd420HYqTA0g+DFJcC/sM5x7IZTLL2M8A+r1hwFTYWo2ZMde0zpYdwfcXhdq5TdQbahzB9yxDtbF35scyJkBM26GWxKVw9hZGeNd4ORZMGsFrMiBnFTf20zInA7TJ8Gk06Bb2F9L+FNjaFwVqgNlqkL1R+Dh8LxO0WBmqCpUvxfuC8fOgZyB0YdO6UgnY/w9eDeA4IsEi24W5HOebMsr87o5NB0H48LrXg7Lx8CYx2HCi/DSm/DmR/DRl/DlQvhpFazaCluTjbUEluSXYX8qnBr/Hsb+2qGw1xs/XmxmdkHO7wgd/gLtm0PT6OepHFCqBTSfBJPC866HofHnjoCR4eepCtSA3Idv4S9ltsCWdtAu0X1K9P6FvwKJrrtQAij3MrwSkDhjPVnG+GbYnNcW+x7n1za2fJYkSZIkSVKxuwwuDQMXI2BkdHfJjbAxUbBnPayPL6GRX+CsoEHR8JyYwHjZcfBouP9T+DQ+oBsGkOK3tbCWaI302L4XwIJUtjCwE57fFy5IJTjWHwYAzIN5sVt4/Bv4Jv5YOts38E3YV/yxDKjcBPbeABvi5zUf5l8Ng6pBtXTeE4DqUPVKuDK2fE243Q/3JzpnZwXG94cDEr0Pv8KvX8FXr8Fr98A9l8JlXaFrK2iV18OJN+CNZO/tBthQObrAKkBfOH8VrAqPL4Nlx8Jx6V4vkHJg/Gw4O2x7OpyerJ+i2PIKjF8LgwvabzZkr4JVP8KPn8Pn4f6VsLI1HJRszOkwPWw7FabGl2Ap7PXGjxcbGCfJQ6i8PqvPwLP5jZkJmXWgdvy5X8FXAbkP4gAGwsDwAVUO5PSF85Pdp0Tv3+PweLI53Ag3xveRLDBelJ+vdEozSZIkSZIkFdo9cE9Abo1uYgLHH8Mn8YGLz+Hzw+Hw+D7yC5wVYWC81APwQADBy7mlLiokOC0yBkbHzz0m6L+978LUGAe4Cq6aD/Pjs7A3w+Yv4csB0D/+WnbmFga9z4PeAQRbYevL8MrxcCJFs5BupBN0fBKeXA/rp8E0kgQMd2aN8fEw/na47UK4sBN0jNZLLtACmnfBXYnu7WbYfD70jW3bHv4S1tZ+Hp6vBXULMiaQcmD8LOixBbZMjSmvkaif/eEAct+btLf8/r6jKoZZ+j/Cj1Nh6ovw0jgYdzvcNhiu7QsXdIPTjoKjDoaDm8De1XNL2ezw3gyFv4djRrPgE35WT4NuOZBzB9xOggVhU5z3DlKtMU4BAuODYUhef6+zYXaiGuG1oc4v8EsAwT1wL/xvvYcNsKE7nJHXNSW6D3Wh1svwyibYFB7fCBufzF1wt2x8HwWtMS5JkiRJkrQ7izwJTx4MByc4Vq46VK0MNfPKqq0FlaLHkwUfIzFtUpYgMA7kZsmST2D3eDjxVXh1OkyPBsV3CGRtgA2ZkJnqXDIhcxEsSmf+u5PToFsq5VIKoUK0PERCu8vim+k6EFoOgP79YcDFcPFAGHg6nJ4su/ViuPgoOKqw4/aCc3rBOc1gn/zaHgfH1odGiY6NgJEjYGT831A6Uu2jHbQrzMOAWHfAHTNgRiOon1e7VtAq2bE1sGYNrGkK+6Y6blPYNzwvwbG9wveFJN91GVA5XIgz0bEDoeVfoP0xcMwJcEJX6NoZjm8BzfOZWqQ1HBTzeShxB9yxNzTJ75oOhoOj3++/CXgT/W4mt4xV0odH1aDa/XB/sl+ESJIkSZIkSUosQm5N5XK7eiL63fCzIkmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSJEmSfs8iu3oCe4gSbdu2PT8IgnOB/YGMYhonE/gqEolMnDFjxnggp5jGkSRJkiRJkqQ9loHxwivRpk2bV4GTd/K4r8+cOfNUDI5LkiRJkiRJUloMjBdS27ZtLwiCYFzjZg24aHBPmjRvRIWK5YplrE0bNzP/2595aNQzLPh+MUEQXDBr1qzHimUwSZIkSZIkSdpDldjVE/i9i5ZP4aLBPTmg9b7FFhQHqFCxHAe03pcB154NQCQSObfYBpMkSZIkSZKkPZSB8cLbH6BJ80Y7bcCYsQ7YaYNKkiRJkiRJ0h7CwHjhZQDFmiker2Kl8juMLUmSJEmSJElKnYFxSZIkSZIkSdIfioFxSZIkSZIkSdIfSqldPQFJkiRJkqRkWrdu/UkkEjlkV89Du7cgCN6dNWtWx109D0m/H2aMS5IkSZKk3ZZBcaUiEokctavnIOn3xYxxSZIkSZK025sxduyunoJ2U2379dvVU5D0O2RgXJIKwJ9zak/jT08lSZIkSX8kllKRpAIwKK49jT89lSRJkiT9kZgxLkmFMPb1Gbt6ClKh9evSdldPQZIkSZKkncrAuCRJkvZYlr7SH4UlsSRJktJjKRVJkiTtsQyK64/CkliSJEnpMWNckiRJe7zXx1r6SnuuLv0siSVJkpQuM8YlSZIkSZIkSX8oBsYlSZIkSZIkSX8ollKRJEmSJEl7jDk//kifUaMAiEQiVC5fnj81bkz3I4/k6DZt0u5vykcfMXbKFJb+8guXdOtG786dCzWvaWPGUKFs2aTtlq9axf2vvMJHc+eydsMGKpQrx9mdOjGga9e0xyhMX+lavno1/e+6i8kjRlAiEiny/iWpqBkYlyRJkiRJe5xpY8ZQvkwZ1mzYwGfz5jFm8mT++8UX3NC7d8qB22WrVjF8wgRuufBCjjr4YLJzcopsfgtXrODy0aN5ftgwypQuDUBWdjYX3nknHVu35vlhw6hasSI/r1jBkszMtPsvyr5SUad6dV4ZObJY+pak4mApFUmSJEmStEeKRCJUr1yZ49q144khQ5jxzTe8MHVqyudnrl1LThDQ4aCDKF2qFOXKlCmyua3dsIGFK1bssO+HJUtYnJlJ786dqVmlCqVKlqRJvXr8X6tWafdflH1J0p7IwLgk7SSrMpcz/u6/87dzjqF/13Zc3qMDrz39cErn/vjNHPp1acuWzZsK3Ve6VmcuZ2i/UwmCosmOCa8ldrtx4JlF0ndxi537gFPaceug3ixbtCDl82PvZfx7mmysbVu3FtHsJUmS/tiqVKxIr2OP5aX33tu+b+u2bdz+7LN0vPJKDr/0Uq4bN44Nv/66/XjvW28FoP3AgbTt1w+AT+fNo+eIERx60UV0GTKEj+bOBXLLmLTt149NW7ZsPz/ct3Xbtt/MJyz3Ett3vZo1KVemDKMnT96hn1hrNmzgbw8+SPuBAzl5yBAe/cc/Eo6RSl/5Xf9z77zDcYMG0X7gQO58/vk898df/7asLB585RVOHjKEQy+6iBMHD2bclCnkRLPuw/affPUVPUeM4LCLL+bM4cP5+qefEs5VkoqapVQkaSfIzsrizsEX0rp9R4aNeZ6KlauyYunPZC5fskv7SkX1jDqMHPtKkfc7ZtI0yparUOh+VixZyOjhlzNszPOULsIMnryMmTSNnOwcnrx/BI/d/Xeuv3tiSucV172UJElSavZt0IAFy5eTEwSUiEQYOXEiizIzee6GGyhbujRDxo7lrhdeYFjv3gBMGDyYPqNG8dEDD2wvd7Lx118Zet55NKtfnzEvv8ytTz/Na7fckvZcEvVdpUIFbuvfnxvGj+f9OXPo2akTPTp12qEm+Q2PP87mrVuZcuutBEHAtY88krD/VPrK6/oXrVzJHc89x0NXXUXLxo2Zv2wZQNL98W5+6im++ukn7h44kKb16vHVTz8xeOxYsrKzueiUU7a3mzxtGqMvu4wypUsz9LHHGDFxIs8MHZr2/ZSkdJkxLkk7wZKFP5C5fDGdT+9Nleo1KVmqFPUaNaHVn/9vl/a1J9iwfi0rlizc6eOWr1iJDsefzsLvvy6ybHpJkiQVr6zsbEqWKEGJSITV69fzz08+YXDPntSpXp1qlSpxzrHH8vaMGXn20bF1a5rWq8cPS5ZQqXx5FmdmkpWdXWRzPLxVK169+Wa6d+jAk2++Sfdhw/h20SIAVq1fzwdz5nBF9+7UrFKFjKpVueCkkwrUV37XX7pkSSKRCMt++YUK5cpxQOPGee6PtWbDBqZ89BHX9+pF84YNKVWyJAc2bcqALl2Y/N//7tD2km7dyKhalSoVKtDj6KP59ueft2eVS1JxMjAuSTtBzdr1KFO2HJMnjE5aOmPDujU8ePPfGHh6e4b0PZl/PP9owlIaqfS1betWnn3kdq7s2ZFLzziccXdcx68bN2w//s7rzzHovOMYeHp7nh93Z57740t+ZGVt45WJDzKk78lc1O1QBv/1RKY8N277/3gN2381+xNGXN6Ti7sdxvBLzuSn77/O8x7N+/xTRlzek4u6HcqQvl2YO/Oj7ceCIIc3XpzA9Rd25aJuh3LtX0/c3t+oQX0AGHh6e/p1abv9nFTn+cF/XuPKnkfz/Lg7Wb92FRd3O4w50z/Y3s/WLZu57Kwjd5hPaNPGDVStUYtIpETCexW7b9vWrXmWT9m4fh0P33o1A0//C0P6nszXsz/Z4Xhe72mia5FUcN/8OIcu/drSpV9buvb/M2df0ZG/33sxH858p0D9vf3RFC68viunDGjHS/9+otDz2rwl8Xd/KHPVcu4e/3fO+dsxdO3fjh6Xd+Dp11IrtxU/RmH6Slfm6uX0G1p0pbti38dwG3jj76N0l6TiM2f+fFrstReQu7BmEAScfdNNtO3Xj7b9+nHZmDFs3LyZbVlZSfsYM3kyXaIlTH6KZksXdSC3coUKDOjaldduvpnGdepw3bhxACxftQqAvWrX3t62UvnyBeorv+uvU6MGI84/nwdffZUzhw9n1nffASTdH2vpL78QBAFN69ffYf9edeqwav16coJg+76aVav+b67lyxMEQZE+aJCkZCylIkk7QYVKVeh/7W2Mv+cG5kx/n05de9Kpa48dSok8fs8NbN2ymVsfnUIQBDxy27UF7mvi/SPJXLaIG0Y/R+kyZRl7+xBeePQuel8+jJVLF/Hc2Du4auRDNG7ekmWL5gMk3R/vqftv5qfvv2Lg0Lup16gpP33/FWNvG0x2dhan9Lpoe7tpb0zmsmGjKV2mDI/dNZSJY0Yw9L5nkt6jXzdt5LxLhlJ/72a8/OQYnn7wVm559DUAJj12D59/8h5/vWoETfY9gBVLF1KmbO7/ARh85wRGDerDAy99tEMplVTn+fXsT7j10dcJgoDyFSvRun1HPpn6z+0Z+DM/fJvKVaqxf+vDmP/tl9vPW792FW++PJHjT++d9JrSMeHeYWz+dSO3jMu95vj3P6/3NNG1SCq8SWOmUbZMedZtWMMX8z7jiclj+PSL/3J57xu2PxDLz8pVy7hvwnCuufAWDjv4KLJziu7/6C9ZsZDhoy9nzLDnKVM69/svKzuLwXdeSPvWHRkz7HkqV6zK0hU/szwz/XJbRdlXKjKq12HsyKIvNzVpzDTKlS186a5E91vS78vKNWt4/p13GNSjBwA1KlcG4B+jRlG3Ro2U+li0ciUT3niDScOH07RePT6aO5d/f/YZAGVK5YZYNm/dur1cSWy97oKoUrEifz3hBC665x5ygoDKFXK/zzLXrt0eEF+xZk2B+krl+k849FCOaduW0ZMnc80jj/DWnXfmuT9Uq1o1AH5avpyWTZps379o5UrqVK9OiUgkjbsgScXDjHFJ2klatTucm8e9SocTuvPm5CcZdlF3Fs3/FsgNss6Z/gHd/3oFVarXpGqNDE4664IC9rWaT979Jz0vGkz1jDpUqlKNY089hxkfvg1AydKliUQi/LJyGeXKV6DxvgfkuT/WhnVr+OidKfQaeD0NmzSnZKlSNG1xIF16DeC//5q8Q9tuvS+hao0MKlSqwtEn9+Dn+d/ukElz6RlHbF/I8vlxd9K6fUfq7dWUJQt/oHyFSmQuX0x2VhabNq7nnSnPc96lN9DsTwdFS8c0pWbteknvTzrzPO608yhXoSLlK1YCoMOJ3Zn9ybts/jU3W/LD/7zOEZ1PIxLzP94vPeMI/nbOsWxYt4YKlaoUOkNo/dpVfP7pf+n+1yuoWiPjN+9/fu9psmuRVHiRSISqlatzRLvjuHPIE8z5ZgZTpr6Q8vmr1mYSBDkcclAHSpUqTdky5Ypsbus3rGXJih1LSS1c8gPLMxdzeufeVK9Sk1IlS9GoXhP+3Cr9cltF2deeINH9lrT7C4KAVevX88+PP6bPqFGc1L49ndu1A3Izn9vsuy93Pv88y1etIjsnh28XLeLTefOS9hdmMi/95RfWbdrEs+/879dEjevVo0K5ckz58EMAtmzbxsS33kraV5VokHv2Dz+wbuNGAL5btIhxU6awcMUKsnNy+GXdOl6eNo1DWrSgRCRCw1q12Kd+fcZMnsy6TZtYnJnJxDffTNh/fn3ld/1Lf/mF2d9/TyQSoVGtWmzdto0gCJLuj5VRtSqd2rTh5okT+W7RIrJzcvhy/nwefu01zuvcOc/3TJJ2FjPGJWknqlCxMl17DaBT156MvX0w4+64juEPvsiqlcsBqF1/r+1t8wtuJu9rGUEQcNNlZ//mnKysbdTIqMP5V43gpcfv4z+vPEXPi4aw7wGtk+6P9cuKpQRBQP29mu6wv079vVi/dtUOP3+vWr3m/66lUmWCICA75iep8YtvTn5iDB+89Rr7tDiQ0tEMm5ycHDKXLSYnO5tG++yX5/0o6Dxr1224Q5vmLdtSs3Y9Zn34Ds1bteWHeZ9z4TW37tBmzKRplClbnlUrlzLpsXuZ+cHbXDz0rpTnFy+/9z+/9zTZtUgqWpUrVuHUY3vxr/deosvRudmGW7dt5fEX7+W9T//FtqxtHHLgkVx8znVULJ/7Nzzo1txflZw+sD0Ar4+dwefzPmX8pHtZuOQHalSrzcBzrqPNAe355sc5DBrVZ4cM53DfSw/8tpzToFF9ftN37Zr1KFumHBMmj2bA2dckzJRet2ENY54cwcy5H1KtSk2OO/xUnnr1od+MkUpf+V3/6+88x/+zd+dxVVXrH8e/+yAgKMgoDqiJU+YUhzRtcMoGLcuMvGZOqTk02PDTytTUzLLSNK00p0q7ZqXm3Gg2mamBcklTc8hZwAkHkOGc/fsDOHIEFPAIIp/369WLc9Zee6219+Fy5eHZz/py1RydTT6te1o+pMf/MyTP9guvPz09TZ+tmKmf1q/S8ZMJ8qsQqLtve1BdOvSVxWJx9B/77Af6aNG72nd4t6qGVNezvceodo36eX6Oed1/KaN016Jv5+rbXxfr6PE4+fkGavgTE1W7Rv1c77ekfK/zmV6jNGfhZLVp3kFdOvRR7xc7aPigiY4/NKSknlPPIXfpxQFvOtYD4PLc/vTTMgxDvt7eahgWpuE9euiWBs7JH28OGKDx8+crctQopdlsCqtSRc889FCeY15XqZK6tm2rodOmqaK/v7q2bau1sbGSJE93d43r21cTvvhCC3/+WcF+fmoTHq71W7fmOlaNSpXUuWVLPTN1qsqXLavvJ06Ur7e3onbs0PwfftCZc+cU6Our2xs31ovdujnOGz9ggEZ/9JHuGjJEtapU0cOtWyt29+4c4+dnrItdv81u16tz5+pgQoKqBgXptb59ZRhGnu0XerVPH7331Vd6cvJknTxzRqHBwep9zz2KbNXqIp8aABQdAuMAUAzK+fiq/cOPadKIQTJNu7zLZTzGmHjiqCMgevJYfKHG8vHLeAxy/JyVCgiulOs5N7dur4jb2mnxx1P04fgXNGHe9xdtz+IXECxJijuwVzXrNXS0Jxw+IP+gkHyXFrhQwuED+mbhxxrzwZeqXC1MW6LXaeMv30qSfCr4S5LiD+3LNYs9NwVZp2HJ+Y/4Vu0jtW7NSh1LOKzw5m0da8jOMAwFVqyiNvf9R+8MHyDTtKtM5qP1qSnnHEH/7LXd8+L4zI/HO16fOBrnOJ6fzzSvawHgWtdVraODcf/KNO0yDIvem/eajhw9oCmvLJCHu6femjFMs76YqGd6ZZQ5mvDSx47Adlb5jaTks3qq5wjVqFJbc7+aqg/++4Zmvb6swGvJbezy3r56ccCbmjTnFf0Z+5vuv6Ob7r+jq1NQe9JHrygl9ZxmvZFRuuvND3Mv3ZWfsS52/YcTDmjGgrf12vPTVPe6hjpwJKNEV17tF3rv03HauXerRjz5jqpVDtPOvVv15oyMkliPPnC+JNY3vy7WqMFT5OHuoYmzR2jqvLF6d0Tepbsudv9nfzlJ62N+1vOPjVWdmg10OH6fPD288rzfBVnn5r/Xa9YbGeWuynmVV4vwNlqzfpUjMP579Gr5+vgp/Ibmea4dQP40CgtT1IwZ+eob4OurtwYOLNBYQ7t21dDMciyS1LVtW8frlk2aqGWTJk79u995Z55jDe/eXcO7d3e8DwkI0PTnn7/omsMqV9bcl192vM8eFM8+h7en5yXHutj1hwYHa/Grr+a7/cLrK+vhoSH/+Y+G/Oc/uY6f2/0oyGcHAJeLUioAUAQO/PuPViyYqfhD+2S32XTqxDH9+u1Xur5JMxmGRcGVQ1Wlei0t/mSqks6c0tG4g/pu8bxCjRUQFKI6Da36fOYEHT8aJ7vNpgN7dmhbzAZJGdnUO7duliFDwZWrKS0tVaZp5tmeXYWAIFlvuUPz3h+nA//+I7vNpj3b/9Ky+dN1d+eehb4/Nlu6Y21JZ07px+WfOY75B4WoSbOW+vS9cTqwZ4fsNpv2796uhCMHJWXUXJekXX9v1tnTp1yyzuZt79We7X9p7fdL1ap97hlDpmnqaNxB/bDkU9Wq30SGYVHl0OtU1stbv69eIUlKS03R91/l/jlmV7FyNVWuFqbFH0/V2dNZn/9cx/FLfaYAio7Nli6LxU2GYVHi6RP6af0qDer2koL8Q+Rb3k+d7uyu36NWX3SMFuFtVL1ymPYd2iVvr/KKO3pQ6ba8N3krqKaNbtPMcUvVvlWkFn83V4NGRWrPgYxyW4mnj+vP2LV6LPJZ+fsGKqBCkP5zb96luy4+1sWv390to0RXwrEj8irrrTrXNbhoe3anzpzUj+tW6MlHh6tmaF2VcSuj68Ma69GOA/X1L84lsXo9+JQCKgSpvLev7mvbVXv2O5fuevjp2x2bb878fEKe9/9s0mmt+PFzPd3zFdWv3SSzdEyYKgbmXbqrIOvsfFdPeZct58im79AqUus3/6TkzA2Zf/h9ue6+vXOuWZcAAABwPTLGAaAIeJf31Y7YKP2wdL7OJZ2Rr1+gGje7Xd0Gns/SG/DSeH00abSG9LhLVWrUUut7H9bu7bGFG+vFNzV/2niNGhQpW3qaqlQP00OPPSNJsttsmjvlVSXEHVRQSFX1/b/XZBhGnu0X6vP8q/pq7nua/MqTOnPqpIIrheqeh3qrVYfIQt+fSqHXqW3Hrpr2+lD5B1ZU245dFfvnWsfxvkPGadHH72rSyCeUnHRWlUKv0+NDx2WcW7WGWt7TWVNffUZlvcpr4qffX/Y6vcv5KLxFG+3d+bfqNLTmOP70w7dn9Cvvq0Y33aoeT4+UJLl7eKrvkHH6YuYE/bxqofwCgxXevI22bl5/yTkHvDReH00erSE971TodXXUqkOk9uzYcv74RT5TAEVn+55Y1ap+vaSMjTVN09TgV3Mvc1SmjHuuY3yyeKq+X7tM19dqLE/386WjXKmct48evX+g7r+jm96a8ZLenvmyPhizUAnHM55GqVLxfOmmrEBtwce6+PUHBYTo+T5j9dGid7Xkh081qNswNagTnmd7dvHHMkpiVa/iXBKrSkh1JZ52LonlX+F86a7yXhmlu7L/oeHCzTfzuv9Hjh6UzW5TrWr5L91VkHVWquhc7qph3QhVDKys3zf9qEZ1I7RtV4xeeNy5dBcAAACuHALjAFAEAoJC9Py46RftU7lamF5+53yWcPageFi9RpqxPKOWqWdZ70uO5esXoIHD3sr1WHDlUL06fXG+27PPLUkenmX1n8eH6D+PD8l1/Av7X9iW23FJ6tp/qLr2H+p437bj+cdTy3p569FBw/TooGG5ztn9yeHq/uRwp7bCrDO7A3t2FaDBWAAAIABJREFU5MgWv9Q5ktSkWUs1adbSqe3OB7vnOP/CsapUr6Xh7zhnl992ZyfH64t9pvlZF4DLd/xkgpb/+Ln6d834ueLnk1HmaM74lQoOyLvMUXaHEw5o4Tcf64MxX6pa5TBFb1mnXzZmlI5yL5NRniMl9ZwjkHs2+dLlmC7Gp5yvHm7/mEZMyii3Vc47o3TXicSjjoD4sZP5K9114Vj5uf7WN7fXbRHt9PHiKRr/4QuaN+H7i7ZnCfDLKIl1IG6v6tU8XxLrcMIBBfkXvnTXxe5/BZ+MslmH4vflmsWem4Ks05LLH5vbt4rUmnUrlXDssJqHt3WsAQAKgvIjAFA4lFIBACCbs6cTtWblFzp18phuvfP+4l4OgGJmmqYSTx/Xmj9Wacj43mrb4l61bHq3JCkoIEQN61g18/MJOno8Tja7TXsO7FDMtrzLHGWVjoo/dlhnkk5p+Y/nS0eFVr5OXmW9tfr3jHJMqWkp+ur7vMsxlffOKCX1967NOn02o5TUvwf+0YIVM3Uofp9sdptOnDqmb3/9Sk2uzyi3VTk4VNWr1NIni6fqTNIpxR09qMXf5T7Hpca61PXHHzusrTs3S4ahysHnS3Tl1Z5dQIUg3WK9Q+/PG6d/D/wjm92m7Xv+0vxl09X57ssv3ZXb/Q/yD1GzJi313qfjtOfADtnsNu3ev11HEg7meb8vd51tm9+r7Xv+0vdrl6p9q7w3+wMAAIDrkTEOAEA2Q3vdo4DgSnpixDuODTQBlE4PP327DMNQeW9f1QtrqCd7DFdEg1uc+rw44E1Nmz9eg0ZFKt2WpupVwvTYQ3mXOQqtdJ06tu2q16cNVaB/RXVs21V/xmaUjvJw99SQvuM084sJWvXzQgX6Bat5eBtt3pp7OaaqlWronpad9erUZ+RVtrw+nfi9ynv7KnZHlJb+MF9J587IzzdQzRrfroHdzpfbemnAeE36aLR6DLlLNarU0r2tH9b23TlLd+VnrItdv81u05S5ryou4aBCgqrq//pmlOjKq/1Cz/d5VXO/ek+vTH5Sp86cVKXgUD10T291aFX40l0Xu/+SNKTvOH286F2NnPSEkpLPKrTSdRr6+Lg87/flrrOct49ahLfRzr1/q2GdnKW7AAAAcOWws8tlslqtpiStiCrax5bui+gvSYqOjuYzBIpB1v/2KV+Ba0H/jhGS+P8UXJuyfl4vn8HP67xs3x2rIeN7a9H76+Th7lHcyyl1nn61q+66rZM6tu166c556Nifn+O4tmX9LKdcCPIS0Z8YCYCCI2McAAAAAIrY6bOJ+mXDtzp56pjuvJXSXQAAAEWtxAfGTfML89K9isLuIp0tKuqlrJdFdv179uz6OSxsWOuimg8AAAC4VvUaeo+CAyppxBPvODZbBQAAQNEp8YFxFJ0TJxJb7d79xk8ExwEAAK4d9cIaUWqmGCz+YF1xLwEocbLKZQAA4AqW4l4ASpas4HhxrwMAAAAAUDqYpvlTca8BVz++TwAUFBnjKDAyxwEAAAAARWXTpk1tinsNVxOr1TpK0mhJo6Ojo8cU83IAoMQiMI5CITgOZOjfMaK4lwAAAACgFMkMhhMQB4DLRCkVFBplVVCa8ZgerjV8TwMAAAAAShMyxnFZyBxHacXjnEXDarWakhQdHW0U91oAAAAAAMC1o8QHGkzzC7O411BaREdH53nM37/CzwTHAQDA1SbrD2xAacAfkoHSgRrjAOAalFKBS1BWBQAAXI0oE4TSgu91AACAginxGQVkjBedi2WMZyFzHAAAoHSjDBYAAABKghL/j1UC40UnP4FxieA4ANchuAIAAAAAAK4ESqnA5SirAgAAAAAAAOBqRmAcVwTBcQCuEB0dbZAtDgAAAJxntVpHWa1WM3MTTgBAIREYxxVDcBwAAKD0yQzWUO4QAAAAVzUC40XAZrNr1KiVstudfz9ISkrV6NErlZKSnut5Cxducnq/aNFmpaXZLjrX2bMpeuKJBdq+Pe7yFu0iBMcBAAAAAHCd6OjoMZlPVo4p7rUAQElWprgXUJIsWRKjsWO/znf/qKiXJElHjpzS+vV7ZLE4VwP49NMNSklJl6dn7h/D1Kk/KTIy3Ol9+/Y3yN3dLdf+pim9+urXOnkyWTVrBmrChB+0ZElMrn1/++3/8n0dlysrOM6GnAAKis03AaDk4Wc2AAAASgIC4wXwwANN1LFjI0lSs2Zv6eefn5OXl7vjeG5tkrR//wmFhQU5tR06lKgFC6L06ae9Zbeb6tfvU7311oMKCiqf5/xpaTa5ueWd5D9x4g+KjT2kjz/uIQ+PMhoypJ2GDGlXmEvNldVqvZzTW7lqHQAAAAAAAABwOQiMF4BhyCkwbbEYOQLVF7Y99tg8bd16WIZh6LbbJio5OU0bN76oV19dpe7dm6lKlQqSMoLuEyb8oPHjO6lt23clZZRFadv2XS1c+Ljuvfd9paba1Lr1JMfYaWk2/flnRlb62LFfa/36fzVzZjf99tsuBQeX1+23175i9wIAigJZhwAAAICzzE03R0saTTkVACg8AuNX2Ecf9dCoUSt1883X6c47r9ddd03VW299r40b98pms2vNmu06fTpFZ8+m6tSpZMXEHNCPPz4jSWrVapLj9e+/D9Utt7ytdeuGOsZu2vRNx+t69UL0xBMtderUOU2Y8IPefvvBor1QAAAAQJTBAgAAQMlAYLwIbN8epz59Wigu7rSqVPFTu3b1VKdORYWG+ikoqJwCAsqpQgUvLVv2P82evU5TpjycY4yTJ5Pk5eXh1FamzPnM9C5drEpOTtOgQZ9p4MDb1bTpdbrttolO/ZOT05zKvBRlnXEAAAAAAHD5MrPEyRQHgMtEYLwAIiLGO72//fZ3cvTJ3ta//23q0aOZjh07q+rVA7R69TbVrVtRN91UQzfdVCPHue3bN9Add9RTSkq6du5MUGpqup54YoE6dGioGTN+y1F/3GI5HxhPS7Np6NDF2rXrqCIjw+Xh4ZYj8B0RMV4rVjwhPz+vQl0/ABQ1sg4BoOThZzYAAABKAgLjBRAVlVHPOzXVphYt3taGDS841ROPiBivX399Xt7e5zO7Y2IOysfHU2fOnNO6dXsUEVHd0bdiRR+n8U+eTNIPPwxWu3ZTVL9+JRmGoSefbKUGDSrrzJlzmjx5jSZPXqO+fVvIx6es09yDB3+pgADvK3n5AAAAAAAAAHBNIDBeCAkJp+XrWzbHxpu5adKkqjp0aKBevebqzJkUPftsG0mSh4ebvv76Sae+LVq8rXLlPPXTT8/Kzc2iVq0mqUGDypKkM2dS9MgjNykh4YxefHGJPvigq0zTlJRRIqVLF6tataqjb77Z6uKrBYDiQ9YhAAAA4IzNNwHANQiMF8Iff/zrCFjnR79+tyo6er+2bj2iPXuOqXHjqhftf2HA3W43tWxZrCZPjlRYWJDS0+2SJHd3NyUlper++6fru++elsVC/AgAAADFizJYAAAAKAkunfIMJ7t3H9W0ab/okUduyvc5S5bE6OTJZA0ceJsGDVqg3buPFmjOL7+MVsWKPgoLC5J0ftPNSpV89e23WxUS4ptnUDwpKVV2u6lDhxIlSW5u/H4CAAAAAEBJFR0dPSY6OtogWxwALg8Z4wWwdOn/9M47q9W//2269dZa+Trns8/+1BdfROnDD7upYkUfNW4cqrCwIKWl2fTAA9NzPefIkVPy9CyjMmUs2rbtiN5772dNm9Y1R7/27W/Qa699o8GDW+c5/7hx3zjKq9x883Xy8Smbr3UDwNWArEMAKHn4mQ0AAICSoMT/o9U0vzCLaq4//tgjT88yCg+vluvxDz/8TX36tJC7u5ujbd26Papbt6ICA8s59X3uuYWaNCky17YuXWbryJFT6tixoRo0qKJDh06qX79bc50zPv600yaeUVH7FB5ezZFBnp5uV1qaTW5uhjw8ivfvIIbRpcR/vwEoWgTGAQAAAADAlVDiAw1FGRgvDqYpGSX+U8pAYBwAAAAAgMvD5psA4BrUGL/KXStBcQAAAJQOVqvVzHriBwAAALhaUWMcAAAAAACghMjMEidTHAAuE4FxAMBVixrjAFDy8DMbAAAAJQGlVAAAAAAAAAAApQoZ4wCAqxZZhwAAAIAzNt8EANcgYxwAAACAy7D5JgAAAEoCMsYBAEXNEhER0cc0zR6SbpAUdIXmOSppq2EY86KiouZIsl+heQAAAIAiw+abAOAaJf4RddP8gmyUEsIwupT47zcAl81itVqXSrqviOddHh0d3UkExwEAAAAAgAiMowgRGAcQERHRzzTNmVVr1Fa3QS+pWs26Kutd7orMdS7prPbv2aH508br4N6dMk2z36ZNm2ZfkckAAAAAAECJQo1xAECRySyfom6DXlKdBuFXLCguSWW9y6lOg3A9MvBFSZJhGD2u2GQAAABAEbFaraMy93MYVdxrAYCSjMA4AKAo3SBJ1WrWLbIJq4U55mpQZJMCQCnG5psAAAAoCdh8EwBQlIIkXdFM8Qt5eZd3mhsAAAAoydh8EwBcg8A4AAAAAJeJjo5mXxkAAABc9Up8YLy4N3TMekx0RdSMIp33voj+kvjFAwAAAAAAAAAKihrjAAAAAAAAJQSbbwKAaxAYBwAAAOAybL4JAACAkqDEl1IBAAAAAAAoLdh8EwBcg8A4AAC42rlLMiWlF/dCAFwae+AAAACgJKCUCgAAuFw+kipl+6+iKwcPCwubHxISMvRS/cqVK9ekbt26v2W+dfwbJ7OkA8kAAAAAAAAHfkkEAOAq4OnpWadq1apv+Pj4tLVYLN6nT59ee+DAgcfPnTu3O3s/Ly+v5vXr118XHR3tI+lMQefx8vIKDQsLW7Nly5Z6Xl5ezS42Vra5vGrUqPFB+fLlb/Hw8KiZmpq6J+urJCUkJMwICAjolu1aasXExPhLUqNGjfanpqbuyhyvaXJy8sbM182Sk5M3ZJ1TpkyZ0C1bttTObc2HDx9+OywsbG5cXNwESWl5XVuFChU6p6en75ekSpUqjbDZbCcSEhKmFvQeAQAAXM0yN90cLWl0ZlkVAEAhEBgHAOAqUKFChQdOnz69Zvfu3Y9L8qhdu/ZHNWrU+HT79u23uHKe5OTkA1u2bKlT0PP27t3bR5JuuOGGv7Zu3dow62vW8fj4+HeyXjdu3Pho9nNN0yxzqddZmjRpcjK3+Q3DcGvSpEnChe07d+68/ezZs7GSDH9//5779+9/UpJ8fHzaHD58eGyBLhKAS2RtvElJFQAAAFzNCIwDAHAViI+PnyTJlvX+8OHD79SrV+87SW7Z24vTDTfc8Jenp2ft7F9TU1P37dy5s0Ne56SlpR3ZsWPHbdnbvL29rUlJSdHZ2+rWrbtOkmJiYvwkqXLlysPd3Nx8Dxw48GL2fv7+/o8GBgZ237lzZ/vs7b6+vu09PT2vO3Xq1LeSAsuXL39bzZo1PzFN0yZJDRs23JnV99ChQy8eP37880LeBgAAgGLF5psA4BoExgEAuDo4Bb89PDxC0tLS4i9sz+Lr63t7aGjoRE9Pz7BTp06t3rVrVy9JR3MrtZK9JIqXl9eN2Y5fKCAsLGymr69v+/T09Phjx47Nyn7QMIyy586d++fvv/9ulJUx3qBBg525jCNJuv766/+QZMv86uDl5WVNTk6OzuM0SVJiYuJ31atXnynJKTDu6+t7x5kzZ368sH/lypWHZ760hYSE9Dh27NhH+/bt6y9lZK/+9ddftcXmnUCRIFMcAAAAJQGBcQAArj7uISEhzx07duzDvDoEBQX12bp1axsvL68yNWrUWH7ddddN+ffff7vl1T8/wsLCPnZzc/PZvHlzLUmqW7fuF7l0ywouOwW+GjdunGCaZoqUUfZEkrZt29Y8t3kaNWp0JK9jWZKSkjZKko+Pzy2nT5/+PbPZ18/P78EdO3aMzN7Xz8/vwTJlyjg2/PT39++9f//+3hcbHwAAAABQuhEYBwDgKlO9evUPTNO0HTp06PW8+hw4cGCkpLjk5GTFxcW9VaNGjZmXOW1FPz+/jtu2bWsq6bAkHTly5LXatWt/k9XBMAx3m812WpJSU1OP1K9fPzbb+UZsbGyoJFWsWPH57AOHh4ennD17dmPW+5SUlJ1169b9Leu9p6fndVnnZnf48OGxlStXnnj69OlbJdlDQ0NHJCYmLktOTj6YvV9gYGC/AwcOPFGrVq3vJGnfvn0dkpKSDl3GvQAAALhqsfkmALgGgXEAAK4iVatWnejj49Nyy5Ytt0tKyatfamrqgazX6enpBy0WS3ll1CMvFG9v72qSlJSU9E9WW1paWmL2Pm5ubhUSExNXSdLOnTvvkKTcSqlk34gzi2EYBS5jkpiYuCg4OLh3aGjom6dOnfrR39+/R2xs7I0X9jt06NCA5ORkx/2oVavWhgv7NGrU6N+s1ykpKXt27Nhxe0HXAyB/2HwTAAAAJQGBcQAArhJVq1Z9vUKFCh22bNnSWlL8xfp6eXlVSE5OPiNJnp6e9dLS0g5IshmGkRVM91ZmjXF3d/cKl5rbZrMlSpKHh0fV1NTUrNdOWdzp6elH4+LiJufjUgxJZj76XdLOnTt7NGrU6K/g4OCn//nnn7skxV3YJ3tQXJIuzD63Wq1mbGzsdaLGOAAAuAaw+SYAuAaBcQAArgJVqlQZXaFChQe2bt3aWrkEfy9UsWLFN/bu3fuUp6dn5ZCQkGHHjh2bI0lJSUnbbDbb6UqVKvU6cuTI25K8Klas+H+XGi8lJWXnuXPntoaGho7fvXt377Jly1aoVKnS0Ox9PDw8ql24kWZuAgICHvbw8Kh/5MiRMZKUnp6esH379tZ59W/UqNGB3No9PT1rV6lS5TVJbsnJyVtDQ0MnHD58eERiYuJ3l1oDgOJDpjgAAABKAgLjAABcBSpVqjRKkqxW65Hs7dHR0V5eXl5BYWFhP27ZsuX6rPbk5OQ/GjduvNMwDM/jx4/PO3To0GtZh/bt2/dolSpVJgcFBQ1KTU09ePLkySW+vr53XmoNO3fu7BIWFvZxeHj4keTk5P/Fx8dPK1euXLOs46mpqfu3bdvmVMokq5RK5oab5SWdKVu2rFXSuaw+ZcqUCa5Xr95P+bwV7r6+vncFBQX19fX1vevo0aOzYmNjb5B0pmLFik/XqFFjvs1mO3bs2LH5p0+fXnr27NkYuSg7HQAAAABQepDNcZmyaiiuiJpRpPPeF9FfEhk5AEqWrJ+ZM5ZHFem8/TtGSOJn5uUKDw9PSUlJ+Sd7m2EYZbds2VK7evXq0/z9/R81TTPVNM3k7du33x0WFjZHkry8vMKTk5M35TVu1vETJ04s8ff3f8jd3b3q0aNHZx8+fPh9SUcu6O5dsWLFXgEBAY9bLBavrVu3NpeUKGV8f+X2GWe2u4tSKgAA4BrA5psA4BpkjAMAgHzZuXNnm9OnT/+evc3Hx+cWSdq3b9+gffv2Dcp+bNu2bc0LOkdcXNwsSSck2fLokhQfHz8tPj5+mqSyypaZvm/fvsdzO2Hv3r2PXWQ8AC7G5psAAAAoCQiMAwBKjaxgTVEyTfOnTZs2tSnqea+EC4PiebVdpqMF6Hsu+5ujR4/Oyq3TsWPHPr6cBQEAAFxN2HwTAFyDwDgAAFeQYRiti3sNAFCUyBQHAABASUBgHABQahR1sKY4MtQBAAAAAMClWYp7AQAAAAAAAMgfq9U6ymq1mpmbcAIAConAOAAAAACXyQzW8MQMAAAArmqUUgEAAAAAACgh2HwTAFyDwDgAAAAAl2HzTQAAAJQElFIBAAAAAAAAAJQqBMYBAAAAAABKCDbfBADXIDAOAAAAwGXYfBMAAAAlATXGAQAAAAAASgg23wQA1yAwDgAAAMBl2HwTAAAAJQGlVAAAAAAAAAAApQqBcQAAAAAAgBKCzTcBwDUIjAMAAABwGTbfBAAAQElAjXEAAAAAAIASgs03AcA1CIwDAAAAcBk23wQAAEBJQCkVAAAAAAAAAECpQmAcAAAAAACghGDzTQBwDUqpAC5kmiYbTV2lDMPgsW4AAIpA1sablFQBAADA1YzAOICrTnp6ugzDkJubW3EvBQCA0swSERHRxzTNHpJukBRUkJOzAuT5cFTSVsMw5kVFRc2RZC/gOgGgVGHzTQBwDUqpACiwpKQkHTt2zPHf8ePHXTr+8OHDNXfu3Ev227Fjh/r06SNJstvP/w4dEREhm83m0jUBAFDKWKxW61LTNGdKaqkCBsULKEhSS9M0Z1qt1iXidxQAAAAUATLGARez2+363//+p9WrV+uZZ55RmTKX9z+z2NhY9e7dW7/++qu8vb0LfH5cXJwGDBigxYsXa8uWLRcdK2uudevW6Y033lBMTIwOHTqkKlWqOL5KUufOnfXNN984zjtw4IB++uknSVKHDh0UGhoqSdqyZYsaNGggSfrrr7/UsGFDp3UtXbo01zX37NlTI0eOVI8ePS56/3788UdVqlRJkjR79mz5+Pioa9euBbg7AAAgN5mZ4vfVqFpbg7q9pJrV6sq7bLkrMlfSubPas3+Hps0fr70Hd3YMDw9/bNOmTbOvyGQAAABAJgLjgIvdc889MgxDR48e1dNPP13cy1FISIiWLFlS4PNGjcrYx6VLly764osvHF+zdO/e3fG6bdu2Tuemp6df8nWWVq1a5Tq/3W7XHXfckaN99uzZql27tkzT1MqVK/XSSy9JkjZu3KjHH388P5cGAAAuIbN8igZ1e0kN6oRf0bm8y5ZTgzrhGvjIixo24XEZhtFDEoFxAMhD5qaboyWNziyrAgAoBALj14AC1G9EEZgyZYrS0tLUu3fv4l7KZevSpYv279/v9LVSpUqaMmVKnucEBgZqzpw5Tm3btm3T9ddf79SWdX9+/vlnSRkB77Nnz2rw4MFO/b7++mutWrVKU6dOdWr//fffdejQIbVo0UKJiYnavHmzRo0aJYsl4+nrBx54wNH3wjFReBEREe5RUVFpxb0OAMAVd4Mk1axWt8gmDDs/V4MimxQAAAClFoFxwMWuv/56xcbGunzcTZs2adKkSTp48KCaNm2qV199VX5+frmWWsleEmX79u2O4xc6deqUxo4dq7Vr1yogIECdOnVyOp6SkqJq1ao5ZYxnDzhfqFevXrJYLOrVq5dTe26B8Qs1b95cr732Wo4g9oYNG9S0adMc/WfPzkgks1gsWrlype6//36NGDFCUkaN8aVLl7J55xVgmuYL4eHh9xuGsdDNzW3Rxo0bdxf3mgAAV0SQpCtWPiU33l7lneYGAOSOzTcBwDUIjF8DoqOjjeJeAxyuWPb+smXLNGPGDKWnp+vZZ5/V22+/rXHjxl3WmKNGjdLZs2e1bNkySdKLL76Yo09WjW/TdL60O+64Qx4eHpLOb3z5ySef5DrPnXfemeexLFm1yGNiYtSkSRNJ0tmzZ7VmzRoNGjTIqe+aNWucNvxcvny5Ro8efdHx4RqmaRqGYTST1Mxms70VERGx2W63LzIMY1F0dPTfxb0+AAAAAACA/CAwDpQQgwYNUkBAgKSMzOzXXnvtssY7fvy4fvnlF82bN09BQRmJWf369dNTTz3l6JOenu7IQg8MDFSXLl0cx0zT1Ndffy1J+vTTT53Gbt68uW644QbH+2rVqqlPnz6O94cPH3acm12/fv00adIkzZkzRxaLRbNmzVKrVq1UsWJFp35fffWVhg0bpieeeEJSRvma4ODgQt0HXB7TNG80DONGSWOtVuvfhmEsstlsizZv3hyjK/iHIgAAAAAAgMtBYBwoIbIHhytWrKikpCRHpnZhxMXFSZKqV6/uaCtfvrxTnzNnzui2226TJE2fPl2Sci2lkn0jzixZmeYFcccdd2j58uWaMmWKmjZtqpUrV2rBggU5+g0fPlwhISGO9z179szR57777nO8rlKlSoHXgkKpb5rmCIvFMsJqte6WtMgwjEVRUVEbRJAcAAAAcAk23wQA1yAwDpQQZ86ccWRv7927VyEhIbJYLI5yJufOnXMcP3PmzCXHywqCx8fHO15nBcuz+Pn5qVu3bpccyzRNGYZrKvqMHTtWXbp00eeff67333/fkSWfXfaguKQc2ecRERFasWKFU43xmJiYv1yywFLONM38puaHSRpqmuZQq9Uq0zSnGIax8EquDQAAAAAAIL8IjANFLC4uLkdgNz/ee+89vfjiizp69KjmzJmj+++/X5J03XXXydvbWytWrFDPnj2VkpKiefPmXXK8atWqKSwsTFOnTtWYMWN0+vRpzZ07N8daL9xIMzc//PCD9uzZo/79+0uS/P39NWPGjDz7t2/fPtf2/fv364MPPpDNZlPNmjU1efJkPfHEE2revPkl13Appmk2uOxBUGiGYTwsid1QAQAAgMvE5psA4BoExgEXi4iIcLxu0aKF43VUVJRSU1PVv39/derUSY899liBxm3UqJEeeOABpaam6t5771W/fv0kSZ6enho3bpwmTJighQsXKjg4WG3atNH69esvOeb48eM1evRo3XnnnapTp44iIyO1ZcsWx/GQkBB99tlnTudklVKx2+1KSkqSt7e3tm3b5shcl6QTJ044guSXkp6erj/++ENLlizRH3/8oU6dOmnhwoXy9vbWggUL9PLLL8vPz0/33HOPWrVqpbp16xYqO91isTQq8EnIwW63D5D01CU7Zjgs6Qc3N7clGzduXCLJbrVan7xyqwMAAAAAAMgfAuOAi0VFReV5zMPDQ7NmzdKgQYOUmJioZ5999pLjNWrUyDHmww8/nGufli1bqmXLlk5tWXW/s5+f/bUk1apVK0d2eadOnRyv4+LinDbczO7uu+/W3XffLXd3d5UtW1bvvfeeU3Z5SkpKntd04sQJ9erVS23atNHq1asVHx+vTp06adiwYQoMDHS6hsjISK1YsUKLFy/Wt99+q08++SRHLfT8+PPPPyml4gLh4eFxl/jDxD+maS6StGjTpk1RorY4AAAAAAAynP6IAAAgAElEQVS4ChEYB4pYcHCwpk+frl27dhX3Ui7pww8/VJMmTZzaYmJiJEnDhg3TsGHDnI598sknBZ6jU6dO8vX1lcViyfV42bJlFRkZqcjISKWmpjplpo8cOTLXc0aPHp3neLgi/tL5jTb/EsFwAAAA4Iph800AcA0C40AxCAoKUlBQUHEv45IuDIrn1XY5/Pz88t03e1Bccs5uz65jx46XtSbky9+GYcxLT09fFBMTs6O4FwMAAAAAAFAQBMYBFzIKU/waKFmWp6en//d///vfnuJeCAAAAFAasfkmALgGgXEAQL5t2rQpprjXAAAAAAAAcLkowgsAAAAAAAAAKFUIjAMAAAAAAJQQVqt1lNVqNTM34QQAFBKBcQAAAAAAAABAqUKNcQAAAAAAgBKCzTcBwDUIjAMAcBE33XRTPbvd/pCkpOjo6MnFvR4AAAAAAHD5CIwDAODMsFqtjUzTfMhisTxkt9sbZLZ/WKyrAgAAAAAALkNgHAAAybjxxhtvcnNze8g0zYck1TYMQ6ZpFve6AAAAACeZm26OljQ6s6wKAKAQCIwDAEorS0RExC2ZgfDOkqoTCAcAAAAAoHQgMA4AKDVat25dJjExsZVhGCMltSpgIPwWq9VKjXEAAAAUKzbfBADXIDAOACg1EhMTVxmGcWchT2+U+V9BpRRyPgAAAAAAcIUQGAcAlBqbNm26KyIiopbdbn/JMIzHJLkV4PTfJX1ZiGn/V4hzAAAAAADAFURgHABQqkRFRe2S9Likx5s2bVrNbrd3zqwzfpsk4yKnxkZHR1NKBQAAAMWKzTcBwDUIjAMASq2NGzful/SupHebNm1ayW63P5gZJG+tgmWTAwAAAACAEoTAOAAAkjZu3HhE0jRJ0yIiIoLsdvsDhmE8JKl9MS8NAAAAcGDzTQBwDQLjAABcICoq6qik2ZJm33jjjX6GYXS0WCyW4l4XAAAAAABwDQLjAABcxObNm09Kmlfc6wAAAAAAAK5D9hsAAAAAAEAJYbVaR1mtVjNzE04AQCERGAcAAAAAAAAAlCqUUgEAAAAAACgh2HwTAFyDjHEAAAAAAAAAQKlCYBwAAAAAAAAAUKoQGAcAAAAAACgh2HwTAFyDwDgAAAAAAAAAoFRh800AAAAAAIASgs03AcA1CIwDAIBSxTRNs7jXcDUzDMMo7jUAAAAAwJVGKRUAAIAS7OzZs8W9BAAAAAAocQiMAwAAuMAff/yR4/3Jkyfz7J+UlCS73e54n5qaqqxk9iVLluRrzkOHDql9+/Y6ePBgrsftdrtmzJih+Pj4XI917tw5X/MAAICrB5tvAoBrEBgHAAClzjvvvKN27dqpWbNmevTRRxUbG3vZY7722muO10lJSXr99dfl5uaWZ/+pU6fq9ddfd7wfM2aMfvzxR0nS2LFj8zVnlSpV1KZNG61evTrX4xaLRdWrV1evXr20du1ap2OmaWrv3r35mgcAAAAArjXUGAcAAKVO48aN1a9fPxmGocmTJ2vIkCH65ptv5Kry2gsXLlR8fLweeOCBHMfmzZunqlWr6umnn1bXrl315ZdfqmPHjtqwYYNiYmI0adIkSdJ9993nOKdv376qVauWnnjiiRzj2e12rV69WjNmzMhx7LffftM999yjatWqqVy5curWrZsSEhKc+tx5552O199//32hrxlXl5tuuqlDenr6yc2bN/8hyX7JEwAAJQabbwKAaxAYBwAApU67du0cr9u3b68VK1bINM1CBcYfeOABmabpCIQPGDBAK1as0M8//yxPT0+nvh06dFCZMhn//PL29tbrr7+uwMBALVy4UPfff7+efvppSVJERIRWrFiRY67ffvvN8bpp06b69ttvFRAQkOfa/vnnH+3YsUP33nuvJGn+/PmOYzabTc2aNSMYfo2y2+33WyyWAVarNU3ShxaLZVHNmjV//fLLL23FvTYAAADgakBgHABQalitVrO414Crh2maiouL02effaaHH35YFkvhKswtXbpUMTExGj58uJYuXarRo0erR48estlsGjlypEaPHu0oqZKamuoULG/YsKEkqUaNGmrbtm2+50xLS5Pdbpe3t/dF+6WmpmrChAk6cuSI+vbtW4irwzXAXdJTdrv9qV27dsVbrdYlhmEskrQmKioqrbgXBwAAABQXAuMAAKDUWb9+vaMsye23367Bgwdf1niLFy/WqVOnNGbMGD355JMKDg7WzJkz5eXl5ZSFnhUYnzt3rj777DN5eHho6dKlmjBhgtN4oaGhTmVYgoKCNHv2bMf7lJQUSc6Z79nNmzdPNWvWVIMGDTR9+nQNHTpUDz744EWzy1EqVJTU3zTN/pJOWK3WpZIWnTp16vudO3emFPPaAAD5lLnp5mhJozPLqgAACoHAOACg1IiOjnZNAWmUdObNN9+sjRs36t9//9Xo0aM1ZswYjRs3rlCD7dmzR3v27JGvr69q1aqlefPmqXv37lq+fLk++OAD9ejRQx999JE8PDwcgfFHHnlEkZGRuuOOOyRlZJ137txZNlvOKhdubm5OQXFJio+PV9WqVbVs2bIc/Vu0aOGUSV6vXj0tWrRIiYmJTvXEs1zYZrVa78vRCSVRjUsc95fUW1JvX1/fJKvVus0wjE8kzYqKikq64qsDAAAAihmBcQAAUCpZLBaFhYVpwIABev755zV27NgCl1Ox2+0aM2aMevbsqcmTJ6t79+5KSUnRsGHDNHjwYIWGhqply5b66KOP1L9/f5mmKYvFIovFInd3d6ex9u/fr40bN+aYo2nTpjnaYmJiVLdu3RztaWlpSk1NlY+Pj1P7rFmz1KVLF0c98bi4OEVGRmratGlq1qyZU9+IiIjlBboJuBZ4S7KapmmV9IbVas1Z4B4AcNVg800AcA0C4wAAoNQrU6ZMoWqMWywWNWnSRO3atdPkyZMlSatWrdLatWt18uRJzZkzR2fPntWxY8fUrl27HJtxFtaSJUsUGRmZoz0xMVHu7u5OGeNxcXGaN2+eevXq5Wh788039fDDD6tZs2basGGD3N3dFR4ennV4pUsWieLWSFL1Ap5zSNKY9PT0JWXKlOlyBdYEAAAAXDUIjAMAgFJl9+7d2rFjh9q0aaMTJ05o1qxZTuVE4uLiFBISku/xnnvuOaf3bdq0Uc2aNRUcHCxfX1+VL19ev/76q1JSUuTl5eXol5aWc9/D++67dBWTZcuWKSEhQXfffXeOYwkJCfLz83NqW7NmjVN5lSVLlujUqVN68sknJUmenp4aOXKkFixYIG9vb0VHR1NK5RpgtVqnSxpwiW4pkr4zDGNRamrqstjY2BPZzr+i6wMAAACKG4FxAABQqnh5eWnu3LkaNWqUvL291a5dOz3//POSMjbH7N+/vzp16qTHHnusUOP7+fnpxhtvlCQdP35caWlpatmypVatWuUIuB8/flwvvPCCwsPD9f777zvqkDds2DDHeH/99Zfj9fr16/XWW2/p7bffdtQsT0hIUGBgoNzc3LRy5UrVqOFcWvrbb791ZJd///33mjt3rqZNm6bExESdOnVKpmmqbNmymjRpkoYPH16oa0aJkmQYxiq73b7I29t75dq1a08X94IAAAXD5psA4BoExgEAQKlSuXJlzZ8/P9djHh4emjVrlgYNGqTExEQ9++yzlzXX888/r9jYWBmGocDAQI0cOVKS9N1336lVq1Z69NFH9cknn6h3795KSkpy1CB3c3OTzWZTamqq0tLSVKlSJQ0bNkzPPfechg0bphYtWkiSzp07pwcffNCxaWdQUJDeeustx/wHDx7U1q1b1bJlS0nS66+/ruTkZPXs2VMBAQHy9/eXv7+/brrpJi1atCjXLHRcE05JWi5pkWEY37K5JgAAAEBgHAAAwElwcLCmT5+uXbt2XfZYH3/8sWw2m0zTVJky5//ZFRkZ6Xj/2GOPOWWnp6WlKT09XZJkGIYMw3AEyz/55BPVqVPH0dfX11cbNmxQSkqK0tPT5e3tLcMwHMe9vLz0yiuvODbjXL58ucqVK+fUJ0vt2rUVFBR02deMq8YxSXMsFsuikydPrt65c2dKcS8IAOAabL4JAK5BYBwAAOACQUFBBQ4Sr1ixItd2Nze3HG3Zg+QXcnd3l7u7e67HsgfFs/P09Mx1Y8+AgADde++9jvfly5fPc97OnTvneQwlT3R0NHVxAAAAgIsgMA4AAEoVI7d0aQAAAABAqWIp7gUAAAAAAAAgf6xW6yir1WpmbsIJACgkAuMAAAAAAAAAgFKFUioAAAAAAAAlBJtvAoBrkDEOAAAAAAAAAChVCIwDAAAAAAAAAEoVAuMAAAAAAAAlBJtvAoBrEBgHAAAAAAAAAJQqbL6JImeaplncawCuJYZhGMW9BgAAAABFg803AcA1yBgvhcLDw2sU9xoAnGeapg4dOlTcywAAAAAAACg1yBgvJaxWa23TNB+S1NkwjGaSijXD9M8//1SNGjUUHBzs1G6325WUlKQTJ07o2LFjOnjwoOrXr6+wsLBiWilw5aWlpaljx46Kiopyav/hhx80f/58TZs2TZ6ensW0OpRkPKEDuBZP6AAAAADXDgLj17Dw8PAbLBZLZGZAvPHV9Lvchg0bNGvWLE2bNk2GYahNmzZyd3dXmTJlVLZsWZUvX17+/v4KCAiQr6+vQkND1aJFC5UvX/6SY585c0Y//fST/v33X/Xu3VuSZBiGfHx8VL9+fUVGRqpt27YFXvOKFSs0Y8YMHT58WE899ZR69epV4DEkKTY2Vr1799avv/4qb2/vPPvFxcXpvffe07p165SYmChvb2898sgjGjhwYIHnuJyxCiouLk4DBgzQ4sWLZbFc/kMpWdeSXa1atfTFF19c9thXs7Vr12rkyJHy8fHJcf3PPvusbr755uJZWCkWHh5eY9OmTXuLex0ACs80TR0+fFhVqlQp7qUAAFBomZtujpY0OrOsCgCgEAiMX1uMiIiI8KzMcEnXX63Jgv369VPXrl31+eefq2vXrkpLS9OaNWvy7J+amipJ+v777+Xh4XHRsSMiIpze//rrr/Ly8tLJkye1ceNGTZ06Vb/88oteeeWVfAdujxw5ojFjxuj1119X69atZbPZ8nVefuzbt0/PPPOMPv/8c8e1paen6/HHH1ebNm30+eefq0KFCtq/f3+hym24cqz8CAkJ0ZIlS1w+7qX+kJBfud3vK8Vut+vWW291aktNTc2RGZ6daZr673//q6VLl2rBggWqUeN85aMdO3bo9ddfV6NGja7YmuHsanvapjB4Qgc4jyd0AAAAAGQhMF7yWaxWazPTNCMtFktn0zRrFveC8sPDw0MjR47MVwa4KxiGIX9/f911111q3ry5Hn30UX3xxRfq2rVrvs4/evSo7Ha7WrVqJXd3d7m7u7tsbYmJidq3b59T265du3Tw4EH16tVLAQEBkqSaNWuqZs2Cf7yuHOtakNv9vlIsFoumT5+uevXqqWzZsoqLi1OvXr3Ur18/bdu2LUf/W2+9Vddff71iYmJUpUoVDR061HEsOTlZ586dk4eHh3r37q1z585p2bJlRXIdpc3V/LRNYfCEDk/o5BdP6PCEDgCgZGDzTQBwDQLjJZDdfj4L3Gq17pNU1TAMFSQ73Gq1FnsqeXh4uKSMDNlz586pffv2OfrEx8fr66+/lp+fn1N7RESEKlas6NTvYlm42fn6+urRRx/VokWLHIHx1NRUTZ48WV9//bXS0tLUsmVLvfzyy47AUFZQpkWLFpKkqKgobdiwQZMnT9auXbtUsWJFvfzyy2rRokWugZistnXr1uVYT9Yv4dnHrly5ssqWLaspU6bohRdeyDWgc/LkSY0dO1a///67AgMD1alTJ02bNi3HHPkZ61LXv2DBAs2ZM0enT5/WQw89pCFDhuTZfuH1p6WlaebMmVq1apUSEhIUGBioBx98UH379pXFYnH0/+CDD/Tuu+9q9+7dql69usaMGaP69evn+Tnmdf+ljEzYuXPnavHixYqLi1NgYKAmTpyo+vXr53q/JeV7naNGjdLkyZPVoUMH9enTRx06dNDEiRMdmeHnzp3TXXfdpTfffFMtWrTQzz//rOXLl2vEiBH6+++/1aBBA02cODHH/W/RooXWrl2r9evXa+zYsU5B74MHD6pPnz769ttvHcGv++67L897gwIrMU/bFAZP6JzHEzr5wxM6PKEDAAAAlAYExks4wzBK3N5qs2fP1ty5c5Wamqp169bpzJkz8vf316xZs+Tv7+/4ZXzTpk0aO3asgoODlZaW5jSGxWLR119/7XjftGnTAq2hTp06+vfff2W322WxWPTaa6/pwIEDWrBggTw9PTVs2DBNnDhRo0aNkiR9/PHHjsB21i/3Z8+e1YgRI1S7dm1NnTpVb7zxRqEyeHMb29fXV2+++aZeeeUV/fbbb+rWrZu6du3qFKh45ZVXdO7cOa1YsUKmaerFF1/Mdfz8jHWx6z9w4IDefvttTZs2TQ0bNtSePXskKc/2C40bN05bt27VO++8o7CwMG3dulUvvfSS0tPTNWjQIEe/xYsXa8qUKfLw8NCIESM0duxYzZ8/P8/7drH7P2nSJP38888aO3asGjRooH379snLyyvP+12Qda5fv17Lly+XaZoqX7682rRpo1WrVjkCMqtXr5afn5+aN28uSRo0aJB69uypn376Sb/88otuvfVWrV+/Xh9//LGmTp2qMmWcfwxnZSZ26dLF0Xby5EmlpqY6PeGQkJDgeN20adNKed6oq4wrg5yXqUQ+bVMYPKFzHk/oFC2e0AEAAABwNSMwXgJZLOcf64+KiqoRERHR1DTNSMMwHspvcCc6OrrYagP07dvX7Nu3ryNj9+DBgwoMDNTGjRs1b948jRgxQjfccIPeeOMNDR48WFeijEF6errc3NxksVh04sQJrVq1SvPnz1dISIgkqXv37ho2bJgjMJ6bNm3a6Ny5c9q1a5fKly+vgwcPKj093WVrvO2227R06VL997//1dy5c7Vw4UJNnjxZdevW1fHjx7V27VrNmzdPgYGBkjKyQp966qkCj3Wp63d3d5dhGDpy5IiaNWumBg0aSFKe7dmdPHlSK1as0OzZs1W3bl1JUuPGjTVw4EBNnTrVKeD81FNPKSgoSJLUtWtXDR48WHa73XH89ttvd7x+5JFHNGTIkFzvf3Jysj7//HN98MEHatKkiSRdsmZyQdbZs2dPlStXzvE+MjJSgwcPVlJSkry9vbV8+XJ17tzZ8X3r7u6usWPH6qmnnlJ6erqeffZZlStXTu+//76mTp2q5557Lsd6nn32WbVr104xMTF69913dfToUc2bN0/VqlWTJJ06dUorV6509LfZbIcveoFwCA8Pb5lZJqWzCvG0TRar1Tpd0gDTNAdt2rRp+tXalu26JfGEDk/o8IQOT+gAAK4FbL4JAK5BYLzks0dFRa2XtF7SCzfddNONdrv9IUkPSbq+eJeWP3/++acaNWqkTp06qX79+ho+fLgMw9BNN92k1q1bX5E5Y2Njdf31GbfnyJEjMk1TjzzySI5+aWlpeWYrTp06VcuWLVPjxo0dG3VlD+S6go+PjwYOHKhu3brppZde0ssvv6yFCxcqLi5OklS9enVH30tlg+Y11qWuPyQkRGPHjtW7776rTz/9VMOGDVN4eHie7dkdPnxYpmnmCExXr15dx48fd7pfWQH+rLWapun0h4YLH+3P6/4fPHhQNptN9erVu+j9KOw6Q0NDnfpERESocuXK+vHHHxUREaGYmBi98cYbTn1q166tiIgI7dmzR76+vpKkUaNGqXv37rrvvvscj++npqZq7dq1io2N1bRp01S5cmUNGDBAn376qQYOHKhp06Zp9erVWrRokR588EHH+KZpxuX7YouZYRghxTy/abfbTYvFUuKetikMntBxxhM6GXhCJ0NhntABAAAAcO0gMH5tMf/8889NkjZJGpG5gdxDmXVzmxTz2nKVmpqqhQsXasyYMY73lv9n787Do6ruP45/7pCQDQKYhCA7AaGURTMpWH4iCmIVBUVBGyhCEEWoC2gFRFFZBBdwQawsIlKoCBUEZKulVFwoBU3CroKAQEKAQEhC1kky5/cHzJgQshCykvfrefI8mXPvPefcmeGS+c73fo/NJm9vb+3Zs0fHjh1zZ8nm5nQ682Q8Xk5AOj4+XsuWLXNn4blud1+3bp0aNCheRYqYmBgtXLhQn376qUJCQrR161Z98cUXkuT+8J+RkeEOhqSkpBR7fpfi7++voUOHauTIkXI6napdu7ak8yUHXAHxU6dOlaiv4px/r1691LNnT3cW5MaNGwttdwkKCpIkHTlyRO3bt3e3x8TEKDg4uMSLxRX2/NerV0/S+dq2l8piv5TLmeel7mDo37+/1q1bp7i4OPXo0cM9B5eff/5Z27dvV8OGDbV+/XrdddddatmypVavXq369eu7azp7eHho8+bNat26taZPn67vv/9e06ZN03333afAwEBFRES4g5q5X6vo6OgqU0qlotc3iIqK+kbSN5KeLsndNrn6GSFpRGVv4w6d4uEOHe7QKe4dOgAAVAYsvgkApaNkUSlUCdHR0fsiIyOnREVF3WBZVitJ44wx2yt6XtKvi7t99913atOmjTw8PDR27FhNmTJFY8aM0aJFi9SnTx9FRERo27Zt+Y4fMmSINmzY4P5x3XpfEGOMEhIStH79ekVEROjuu+/WHXfcIen84mV2u10zZszQyZMnlZOTo/3792v79oKfKldAJi4uTsnJyfrkk0/c25o3by5fX1+tXbtWkpSZmanFixcX2Jcrg3jHjh1KTk6WJB04cEAffPCBjh49qpycHJ05c0YrV65U586dZbPZ1LhxY7Vs2VKzZs1ScnKyYmNjCxyjqL6KOv+4uDjt2LFDlmWpSZMmcjgcMsYU2J5bYGCgbrvtNk2dOlUHDhxQTk6O9uzZozlz5mjw4MGFvmaFKez5Dw4OVrdu3TR16lTt379fOTk5+umnnxQbG1vg832l87z77ru1Z88erV69Wv369cuzLSkpSWPHjtWoUaM0bdo0zZ071/1FSe7yFNL5oPstt9yi/fv369FHH9WPP/6oN954Q3Fxcfr5558VGBio0aNHa+nSpSV85pCLMzIycltUVNSYyMjIljabzS5pqqT8xYivIrnv0Jk2bZqmTp2qQYMGKSwsrNzv0AkLC1NYWJieeuoppaam5stUz23WrFnq06eP5s+fryNHjkgquzt0Pv/8czVv3lzPP/+8JF3RHToX91XU+bvuxHn//ff14IMPKjo6WpIKbM+ttO/QiYyMVGRkpJ599tkCn/+KvEMnLi5OO3fu1L333ptnH9cdOvXr15e/v79q1Kihl19+Wf/4xz904MAB934Oh0Nffvmldu/erX79+umDDz7QY489pnbt2mnEiBE6evSoPvroIw0cOFBpaWn5zsNut8+x2+0mNDR0xNXalu+kAQAAgKsMGePVRGRk5EFJb0h6IzQ0tFlFzuXs2bN65pln1LhxY/3vf//Ts88+q71796pnz57q2bOnOzv3wQcf1G9+85s8wQiXp556qtDHud18882yLEv+/v5q3769XnjhBf3f//1fnn1ef/11vfbaa+rfv7+ysrIUEhKiUaNGFdhn8+bNFR4erjFjxqh+/foKDw/Xli1bJEleXl6aOnWqZsyYoeXLlysoKEjdu3e/ZIBfkpo1a6b7779fo0aNUq1atbRx40b5+/srMjJSS5YsUUpKigICAnTzzTfnuX3/tdde08SJE/WHP/xBLVu21AMPPKDdu3fn6784fRV2/jk5OZo8ebJiY2PVqFEjvfLKK7Isq8D2i02ePFnvvfeeHn/8cSUmJqpx48aKiIhQ//79C3x+i1LY8y+dv01/5syZ+vOf/6zU1FQ1b95cU6dOLfD5vtJ51q5dW927d9cPP/wgu93ubk9MTNSf//xnderUyV2j9sknn1R6erq8vb2VlZUlb29v7d+/X97e3rIsSz/88IM6dOigoUOHatOmTRo9erR69+6tuXPnqm/fvrr55pu1YsUKffrpp3rggQdK/Bwijyp3t01JcIdO8XCHTl7coTO/2O9VAAAAAKhW7Ha7sdvt5rj5vlx/XONW9PmXxMcff2xmzZplMjMzzbvvvmv69Oljbr/9dnPHHXeYXr16mbvvvtv06tXL3H777aZ79+5mwIABJjMz09jtdtOzZ88if+x2u0lOTjbVza5du4zdbjeZmZkVPZVq6Y9//KP55JNP8rQlJSWZt956y+Tk5OTb/9ixY+5/xzfeeKOZO3euSU9PNytXrjSjRo0yPXr0MK+88oo5ePCgycrKMitXrjQRERHGGGPOnTtnBg8ebMaPH2+MqVqFsl3n/H2sKdefkl4zw8LCWtrt9rGhoaHbquI11xhjMjMzze9//3vz7bffmrFjx5o9e/aYMWPGmAceeMBs377dGGPMsmXLTI8ePcz//vc/9/XWdS2ZOXNmnvdu7seu663r+pOammqcTqc5c+aMWbdunbnrrrvM22+/nef4Rx55xPzlL38xJ06cMNnZ2eann34y27Ztc2+/+Fp2+PBhY7fbzbfffmuSkpLMk08+6d6ekZFhunbtav72t78ZY4zJyMgwI0eOdG/PPS9jjPnll1+M3W4327ZtM0lJScYYY/bv32/mzZtnjhw5YrKzs83p06fN+PHjzciRI91zeuCBB8wzzzxjkpKSTExMjBkyZMglxyhOX4Wd//Hjx010dLTJysoyy5YtM926dTNOp7PA9ovPb8yYMSY8PNzs37/fZGdnm927d5u7777bfW26eP+Ln+9LbS/s+TfGmNGjR5sBAwaYn376yWRnZ5sff/zRxMTEFPh8l3SeLsnJyaZr167m7rvvNpGRkXm2JSYmmvvuu8+sWbPGxMTEmHvuucecO3cuzz6u97fT6TSbNm0yL730kunRo4eZNGmS+fHHH820acQQakgAACAASURBVNPMoEGDzAMPPGC+/vrrfO/fiv43XZ5c183Y7025/lTlv3EBoLzY7faXL1wvC65FBwAoEhnjKHf9+/d3Z/k9+eSTevLJJ93bcnJylJOTI2OM+8dVm7Z379568cUX8y2edTFXnVagPCQlJemLL77QmTNndM899+TZ5u/vf8mattL5EgH//e9/5XQ65eXlJZvNppycHB04cEC9e/fW66+/rhMnTmjEiBFyOp269tpr3Vn+tWrV0oIFC3T8+PEyP7/qrjLdbVMS3KGTF3foXD7u0OEOHQAAAOBqVfqrbFUzroyWtZHzynXc3mHDJUlRUVFV7jWsbhlX5WX37t2KiIjQ1q1b3V88oOx16dJFDRo00OTJk9WhQ4cKmYNVFismlhHXNXPemshyHXd4nzBJVfOaeSU+/vhjk5CQoOHDh2vu3LnauHGjMjIyZLPZ3D9Op1PZ2dnKzs5WgwYNtHDhQnXp0sVd9qMwCQkJ2rx5s7vcSHXB9bZihYeHq2/fvgoPD3e3JScn68MPP9SoUaPylY2JiYlx1yL39PTUww8/rMGDB+uf//ynNm/erN27d6tHjx4aMGCAmjZtqrVr12r16tX66KOPlJKSoscff1yNGjXStGnTqtT19kq5rtdr5pXv9brP8Op5vQYAAED5I2Mc5a46faisCF5eXhU9hWpp1apVFT0FIB/u0MHVhDt0AAAAAJQmAuMAAFylCstmrlGjhmrUqHHJba4FOotS3P2A0nDnnXeqQYMGeuutt9yLrRbXxV8a16hRQ2PGjHE/btasmTZs2HDJY2vUqHHJhWkBAAAAVG0ExgEAuEpxh07Z4g6disEdOgCA6u7CopsTJU2MiooiUwEASshW9C4AAAAAAAAAAFw9yBgHAAAAAACoIi5kiZMpDgBXiIxxAAAAAAAAAEC1QmAcAAAAAAAAAFCtEBgHAAAAAACoIux2+8t2u91cWIQTAFBCBMYBAAAAAAAAANUKi28CAAAAAABUESy+CQClg4xxAAAAAAAAAEC1QmAcAAAAAAAAAFCtEBgHAAAAAACoIlh8EwBKB4FxAEB5Oi1JGWmp5TZgelpKnrEBAAAAAABYfBMAUJ72Sep27PB+XdcutFwGPHZov+vXveUyIAAAAFCGWHwTAEoHGeMAgHJjWdZiSVoy+zXt3xOVO5u71KWnpWj/nih9Mud1SZIxZnGZDQYAAAAAAKoUMsYBAOUmMjJygd1uvzf2yM+9Z4x/tDyHXhMdHb2gPAcEgCrutKTAtIxU+Xr7lcuAaemUvgIAAED5IWMcAFCenFFRUfcaYx6R9JXKNvhxWtJXxphHoqKi+koyZTgWAFxt9knS4WP7i9qv1Bw6RukrACgOFt8EgNJBxjgAoLw5o6OjP5T0YUVPBABwaZZlLTbGdJu95DWNGDBOIU1ay9enVpmMlZaeokPH9mvOJ5S+AgAAQPmxKnoCVZ3dbjeStDZyXrmO2ztsuCQpKiqK1xAAAAClzWa321dL6l3O466Jioq6V9zlAwAAgDJGKRUAQKV14RZRgiMAUP4ofQUAAICrGqVUAAAAAFwKpa8AAABw1SIwDgCotCgXBQAAAOR1YdHNiZImRkVFTarg6QBAlUUpFQAAAAClhjJYAAAAqArIGAcAAAAAAKgiLmSJkykOAFeIwDgAoNJyZRxSUgUAqg6u2QAAAKgKKKUCAAAAAAAAAKhWyBgHAFRaZB0CAAAAebH4JgCUDjLGAQAAAJQaFt8EAABAVUDGOAAAAAAAQBXB4psAUDoIjAMAKi0W3wSAqodrNgAAAKoCSqkAAAAAAAAAAKoVMsYBAJUWWYcAAABAXiy+CQClg4xxAAAAAKWGxTcBAABQFZAxDgAAAAAAUEWw+CYAlA4C4wCASovFNwGg6uGaDQAAgKqAUioAAAAAAAAAgGqFjHEAQKVF1iEAAACQF4tvAkDpIGMcAAAAQKlh8U0AAABUBWSMAwAAAAAAVBEsvgkApYPAOACg0mLxTQCoerhmAwAAoCqglAoAAAAAAAAAoFohYxwAUGmRdQgAAADkxeKbAFA6yBgHAAAAUGpYfBMAAABVARnjAAAAAAAAVQSLbwJA6SAwDgCotFh8EwCqHq7ZAAAAqAoIjAMAAAC4FFtYWNjDxpiHJP1WUmAZjXNa0j7LshZHRkYukOQso3EAAAAAN2qMAwAqraioKIvMQwCoEDa73b7aGPOBpG4qu6C4LvTdzRjzgd1uXyU+owBAoex2+8sX1nN4uaLnAgBVGRnjAAAAAPK4kCneu1mjVho58Dm1aNJavt5+ZTJWWkaqDh/br9lLXtOR2J/7hIaGDo2Ojv6wTAYDAAAALiAbAwAAAEAeF8qnaOTA59TuutAyC4pLkq+3n9pdF6oRA8ZJkizLeqjMBgOAq0BUVNSkC3dWsgAnAFwBAuMAgErrwi2ipqLnAQDV0G8lqUWT1uU2YMivY7Urt0EBAABQbREYBwAAAHCxQEllmil+MV+fWnnGBgAAAMoSNcYBAJUWC28CAAAAeV1YdHOipImUUwGAkiNjHAAAAAAAAABQrZAxDgAAAAAAUEVcyBInUxwArhAZ4wCASovFNwEAAAAAQFkgMA4AAAAAAAAAqFYopQIAqLRYfBMAUNZ8fHx+37Zt2625206fPj336NGjIypqTqXBx8enSf369afVqVPnDg8Pj4CcnJxz8fHxM48fP/5yGYzVOCQk5Mu9e/e2keQshf7yvSYZGRl79+3b1/5K+77MsU1OTk5iamrq96dPn56TmJj4WRmPXW6vGao2Ft8EgNJBYBwAAABAtRcVFVVbUkpFz6OUeLZs2fKrs2fPrty1a1dHSWdq1qzZytvbu0VZDJaenh6zd+/e60q734p8TS6MnSop8JprrunRqFGj1/z9/fscPXp0mIoR/Pfy8rquVatW6/bu3dtRUkYxhizX1wwAABAYBwAAAICrip+fX7uaNWu2iI2NfUPSSUlyOBw/OByOHyp4alWNkRSfkJCwLCEhYWO7du0ig4KCnoiPj3+3qANtNluAl5dXsb8s4DXD5WDxTQAoHdQYBwBUWiy+CQCoompee+21r7Rv3/6X0NBQR/v27Y82aNDgJUk1pPPlOux2u/H39+/129/+dl9oaGhGq1at1ksKzNWHd5MmTWZ17NjxzA033JASEhLyiaQ6uY+vU6fO7W3bto0ODQ3NbNu27W5fX98wSUpNTT3idDrTmjZt+pqkWgXMscD+JSkoKOipDh06xF1//fXpjRs3fqewdtd8co1VrPMvaP4FcR13zTXXDO3YsePpXPMq1ngBAQERHTp0iOvQocNxPz+/24KDg5/u2LHjmQ4dOpyoV69enyJe04RTp069HRQU9Jirwc/P77YL83e0a9fusL+//x2uba5yLHa7PT333zIFHVPM16xY55n7+Fxt3oU8f7YGDRqMa9eu3cHQ0FBHhw4djuV6LQp9nwAAUJURGAcAAABQ7dnt9nPXX3994oXAX2CRBxSiadOmc+vWrXvv4cOH742OjvY7ePDgHwMDAx9p2LBhnlrRgYGBD+/bt6/7jz/+2NLDw6NB8+bN3ZnIzZo1m+fj4xN64MCB63fs2NG8Ro0aQc2aNXs79/EBAQHDf/jhh7uio6MbOByOo02bNv3gwqazhw4derBu3bp9OnbseCg4OPh5XRRsLax/Ly+vlk2aNJl56NChQTt37qyfkJDwcWHtJT3/QuZfKH9//567du0KiYmJeflyxvP29m6/e/fu686dO7exZcuWS7y8vNrs2rWrWVJS0uqGDRu+VdS46enpu7y8vNrowudoT09P/yNHjjwaHR3tn5ycvKpp06azXfv+8MMPXSQpKirKJ/eaKYUcU+RrVtzzvNznr0mTJm8GBAQMP3r06ODo6Gi/n3766Q6n03laKt77EACAqorAOACg0oqKirJYgBMAUJbS09O/j4qK8ouKivI8cOBAdy8vr9+0bNly4RV0GRgYGDgkJiZmRGpq6k5JWenp6VuPHz/+cmBg4GO5d4yJiXlR0sn09PTYU6dOvV63bl1X1nJQQEDAoNjY2MfT09NjJJ0+efLkW3Xr1u2X+/jY2NjxkuIknY2Pj5/l6+t7gy5kDycnJ6/btWtXq9OnT89u0KDBmPbt2+/z8/O7vjj922w2hyTj5eXVVNK5tLS07wprL+n5FzZ/6fyXFa67x3JnrZ86dWqGpGRJSZcz3pkzZ96TlBIfH7/Yw8Oj/qlTp16TlJKQkLDUy8urlYooNVqjRg1PSTm6UGM8MTFxZVpa2j5fX992OTk5STVr1mwhybOwPgo7pojXrNjnWZSLnr+6gYGBTxw5cuSRc+fObZGU5XA49mVkZBxRMd+HKH92u/3lC/82WJgVAK4ANcYBAAAAVGfZF36UlpYWHRsb+0LLli1X63wSUZGLLF7M19e3mSTr3Llze3O3Z2VlHfDw8KivXMlJDocjJtf24zabrZakGr6+vk0lWW3atNlxiSFqun7JzMw8kev4REmWzgdZcy40Jx4/fvzl48ePz7zuuuuWNWvW7JN9+/b9tqj+09PTjx0+fPihxo0bvxEcHPxMTEzMn8+dO/dNQe0lPf9C5i8p/+KbPj4+v5ektLS0gyUZLyMj47QkOZ3OlAuPT0hSTk5O+oVdCv187Ovre2NqamqU63HDhg1fDQwMfDg1NXWrMcbVRw1JWQX1UYxjCnrNin2eRbno+QuxLMsjJSUl+hLnW9T70FHcMQEAqIwIjAMAAADABTabzcsYk6ESBMUlKS0t7bgk+fj4tElPT9/maq9Zs2bLrKysmNz9+vj41ElPT0+RJC8vrzZZWVmxknKMMack6YcffmiWnp5+9ApOxyUhLi7u1datW/9bkq04/Z89e/bjs2fPftqkSZPXmzdv/unu3bsbFNZekvO/Au4+ymk8+fr6NgwKCnry2LFjo6TzZWUaNGjw3J49e9o5HI59/v7+d9StWze8sD4u85g8r1lxztOyrEzXdHXhCwVPT89L1QN3Pyeu94Kvr+91F98BUAbvQ5QSFt8EgNJBKRUAQKXF4psAgLJWt27d+729vVtI8vDx8bmxUaNGr58+ffpD13YfH58ml9llXGJi4opmzZrN9fPz6+jq99prr5104sSJ6bl3rF+//quS/L28vNoEBwePP3369EJJSk9PP5aSkvL1tdde+86F8T38/Pyu9/Pzu604E/Dz8+vYoEGDl7y8vK7T+WSoBvXr13/03LlzmyQ5i+rf29u7We3atbtKMhkZGT/bbDZvSVZB7SU9/1JSluNZkurXq1dvUEhIyNaEhIRFZ8+eXSpJxhhP6fxzJaleUFDQU7kPdDqdZyXJz8/vJknXFHVMUa9Zcc4zLS3tx5ycnHMNGjQYcqFbn/r16/+lsBNMT0+PSUxMXNO0adO5F8q2ePj5+d3g7e0dcqXvQwAAKjsyxgEAAABUW7Vq1fp9s2bNFthstlpZWVmxCQkJC48fPz7lwmbvkJCQL0+fPv3hyZMnXy1un4cOHRrcuHHjaSEhIV94eHgEOhyOQ6dOnXo9Pj5+du790tPTt3bs2PGAZVneCQkJH8fFxU12bdu/f/+DISEhf23Tps0+y7Jqpqen7z127NjY4ozvdDrP1qpV65bg4ODRNpvNPzs7+2RSUtLaQ4cOPVGc/o0xHk2bNp1fs2bNEIfDcfjQoUODzjdfur2k519aymI8u91+TpLJzs5OSE1N3Xb06NHHkpOT/+na7nA4fjx16tS7ISEhK7KysmJPnTo1q06dOne5tmdmZv50+vTpea1atVprjEnetWtXcGHHFOc1K8Z5ph89evRPDRs2fCcwMHCkw+GITUxMXOXv7397Ec/fn5o0afJ6y5YtN9aoUcM/PT39x0OHDg2Urux9CABAZceCZlfIlcm4NnJeuY7bO2y4pPML05XrwAAAALjquf7GXTMvslzH7TM8TFLl+hvX19e3YfPmzf+dnJy8LiYmZkxp9Onj4/P7tm3bbr24hjYAFMeFRTcnSpp4oawKAKAEyBgHAAAAgAKkpaUd37dv321+fn7tKnouAAAAKD0ExgEAAACgcHGpqalxFT0JAJBYfBMASguBcQBApeW6lb8y3VIPAMCVSk9P/x//twEAAFQsW0VPAAAAAAAAAACA8kTGOACg0iKbDgAAAMiLxTcBoHSQMQ4AAAAAAAAAqFbIGAcAFMoYYyp6DsjPsiyy6QEAAKohFt8EgNJBxjgAAAAAAAAAoFohMA4AAAAAAAAAqFYIjAMALsvw4cMVFhamtLS0ip7KFTt58qRefPFF9ezZU506ddItt9yiOXPmlNlYffv2ldPpLJP+AaAwHTt2rB8aGnq9JMowAUAVZ7fbX7bb7ebCIpwAgBKixjgAoNi++OIL/fLLLxU9jVKRnZ2tRx99VN27d9eyZctUp04dHTt2TMePHy+T8YKDg7Vq1aoy6RsAiuLh4REiaavdbj9qWdYnOTk5K3bs2PG9JNaRAICKZQsLC3vYGPOQpN9KCryMYyfa7faJxdz3tKR9lmUtjoyMXCCJbA0A1R6B8auA3W7nAw2AMpeenq6ZM2cqIiJCb775ZkVP54odPHhQsbGxGjJkiK655hpJUosWLdSiRYsKnhkAlKmmxphxNpttnN1uPyrpM8uyVkRGRv5XBEkAoLzZ7Hb7amNM73IYK1BSN2NMN7vdfk9UVFRfcd0HUM0RGAcAFMv8+fPVqVMndejQoVT6y8rK0gcffKD169crPj5eAQEBuu+++zRs2DDZbDbt3r1bERERevfdd/X2228rNjZWnTp10uTJk1W3bl1JksPh0DvvvKMNGzYoKytL3bp10/PPP69atWq5j3///fc1c+ZMHTp0SE2bNtWkSZPUtm1bXXvttfL29ta7776rsWPHytfXN98cC+tfkpYuXaoFCxbo3Llz6tevn5599tkC213z+eabb+Tr61vs8y9o/gBQCppKGm2MGW23208YY1ZKWlGnTp2vkpOTK3puAHDVu5Ap3rtVo0Z6buBAtW7SRH7e3mUyVmpGhvYfO6bXlizRz7GxfUJDQ4dGR0d/WCaDAUAVQWD8KhAVFUWtSABlyRw9elSrVq3SP/7xj1IrNTJ16lTt27dPb731lkJCQrRv3z4999xzys7O1siRI937ff7555o3b56ys7M1evRoTZ8+XVOnTpUkvfLKK4qJidHSpUvl5eWl8ePH680339TLL/9abvGzzz7Tu+++q5o1a2rChAmaMmWKlixZIn9/f73++ut66aWX9O2332rgwIEKDw/PEyAvrP+YmBhNnz5ds2fPVvv27XX48GFJKrC9pOdf0PztdnurUnkhAFQLxpjGllXon4wNLMsaKWlkcnJyYjlNCwCqtQvlU/TcwIEKve66Mh3Lz9tbodddp3EDBujRGTNkWdZDkgiMA6jWCIwDAIo0Y8YMDR06VAEBAaUSGE9MTNTatWv14YcfqnXr1pKkjh07asSIEZo1a1aewPDIkSPdpU4iIiI0ZcoUSdLZs2e1fv16LVmyRMHBwZKkQYMGafz48XkC40888YQCA8+XagwPD9dTTz0lp9Mpm82mrl27avXq1fr444+1aNEiLV++XO+8845at25dZP+enp6yLEsnTpxQ586d1a5dO0kqsL2k51/Q/CUduOIXAkC1UURQ/GJ1y2oeAIA8fitJrZs0KbcBc42V/49UAKhmCIwDAAr11Vdf6fjx4woPDy+1PuPi4mSMUUhISJ72pk2bKiEhwRX4lSTVr1/f/XtQUJDS0tLkdDp14sQJGWM0YMCAfP1nZWW5fw8ICHD/Xrt2bRljlJ2drZo1a7rbRowYoYEDB+q5557T888/r+XLlxfZf3BwsKZMmaKZM2fq73//u8aPH6/Q0NAC20t6/gXNX9LBSz23AFAAb0mNKnoSAIA8AiWVWfmUS6nl45NnbACozgiMAwAK9fnnn+vEiRO67bbbJMkdtO3Vq5dee+01denS5bL7DAoKkiQdOXJE7du3d7fHxMQoODhYNpvN3ZaSkuIub3LkyBHVr19fNpvNnUW+bt06NWjQoGQnl4u/v7+GDh2qkSNHyul0Fqv/Xr16qWfPnu465Rs3biy0vSTnX5CoqChKqQAoNrvd/ntJW4uxa4qktZJK79tQAAAAoBIiMA4AKNSbb76Z57FrUcgNGza4A9YnT550lxspjsDAQN12222aOnWqJk+erJCQEP3www+aM2eOBg8enGff9957T+PGjdPp06e1YMEC9enTR5IUHBwsu92uGTNmaMyYMQoMDNTBgweVmJiozp07FzmHAwcOaPPmzbrjjjvUqFEjJSYmauXKlercubNsNluR/cfFxenkyZNq3769mjRpIofDIWOMTpw4ccn2kp4/AJSDs8aYzy3LWuHv779x8+bNGXa7vUID43a73RS9V+kyxmyOjo7uXt7jAgAAoGIQGAcAXBGHw6Hhw4erb9++Gjp0aLGPmzx5st577z09/vjjSkxMVOPGjRUREaH+/fvn2a9jx47q27evMjMz1atXLz366KPuba+//rpee+019e/fX1lZWQoJCdGoUaOKNb6/v78iIyO1ZMkSpaSkKCAgQDfffLPGjRtXrP5zcnI0efJkxcbGqlGjRnrllVdkWVaB7SU9fwAoI/GSVlqWtULSl1FRUVlFHXC1syzr1oqeAwAAAMrPZa3Cg/xc2SxrI+eV67i9w4ZLkqKiongNAZQpc3G68yXEx8dr5MiR6tq1q0aPHl0q47oy07/55ht3Zjp+ZV3mSnoAqrcLpVRWWJa1wul0rmjVqtW3n376aU4h+xtJWjMvstzmKEl9hodJKv+/cV3ny9/WAMqT69oTOa984wlhw4knAIBExjgAoBQEBQVpzpw5OniQ9SABoDLKzMyM2rt3bxNJTkmKjo6u4BkBAAAAFYvAOACgVAQGBiowkMXtAaAy2rt3r6Oi5wAAAABUJgTGAQCFqsiSHXa73dx8883c5gkAAAAAAEqVraInAAAAAAAAAABAeSJjHABQaZEpDgAAAAAAygIZ4wAAAAAAAACAaoXAOAAAAAAAAACgWiEwDgCotOx2u7Hb7aai5wEAAAAAAK4uBMYBAAAAAAAAANUKi28CACotFt8EAAAAAABlgYxxAAAAAAAAAEC1QmAcAAAAAAAAAFCtEBgHAFRaLL4JAAAAAADKAoFxAAAAAFeFBx54oEbHjh0bV/Q8AAAAUPmx+CYAoNJi8U0AQFHCwsI8nU7nLTabrd/PP/98n4eHxypJIyp6XgAAAKjcCIwDAAAAqFJatWrlVadOnZ7GmH5Op/Ney7KuMcbIsvg+FQAAAMVDYBwAAABApRcWFuZrjLnTGNPPsqzexhh/SQTDAQAAUCIExgEAlZZr4U1KqgBA9XTjjTf6OxyOuy3L6meM6SXJl0A4AAAASgOBcQAAAACVit1uj5DULysrq3cJAuGP2e32x0p/VgAAALiaEBgHAFRaZIoDQPVkWZYxxpjyHNMYs708xwMAAEDFIjAOAAAAoFKJjIz8m6S/3XTTTbXT0tLuttls/Ywxd0nyLcbhc6OiokaU8RQBAABQxREYBwAAAFApbdmy5ZykpZKWXlh88w5J/ST1keRfoZMDAABAlUZgHABQabH4JgDAJTIyMk3SSkkrW7Vq5VW3bt3bnE5nP0n3Sgqo2NkBAACgqiEwDgAAAKBK+fnnnzMlrZe0/tZbb30sKSnpFp3PJL+/BIt1AgAAoBoiMA4AqLTIFAcAFGXz5s3ZkjZJ2vTAAw88+dNPP11b0XMCAABA5UdgHAAAAMBV4dNPP82RFFPR8wAAAEDlZ6voCQAAAAAAAAAAUJ4IjAMAKi273W5cC3ACAAAAAACUFgLjAAAAAAAAAIBqhRrjAIBKi8U3AQAAAABAWSBjHAAAAAAAAABQrRAYBwAAAAAAAABUKwTGAQCVFotvAgAAAACAskCNcQAAAABAiRlj+BK7krAsi/VZAAAoJgLjAIBKi8U3AQDA1Sw1NVV+fn4VPQ0AAKolSqkAAAAAACqdM2fOKCoqqlzG+t///pfvcWJiYoH7p6Wlyel0uh87HA65EudXrVpVrDGPHz+uXr16KTY29pLbnU6n5s2bp1OnTl1y2/3331+scQAAwKWRMQ4AAAAAuGIHDhzQm2++qV27dqlmzZqaMGGCevbsWeL+Tp06pXHjxumFF17Qrbfeqk6dOqlhw4aSzgeGbbZf87zOnTun//znP3I4HOrSpYtq1aqVp6+UlJQ8bSkpKdq+fbtq1KghSXrllVe0du1aSeeD3tOmTdPHH39c4NxmzZqlrKwsTZgwQZI0adIk9ejRQ7fddpumTJmivn37Fnl+DRs2VPfu3bVp0yYNHjw433abzaamTZtqyJAhmjBhgm666Sb3NmOMjhw5UuQYAACgYATGAQCVlmvhTUqqAABQucXExGj48OEaMmSI3nrrLaWkpCgzM/OK+mzbtq2mT5+uTz75RLfeeqtq166t1atXS5Juv/12bdy40b1vjx493L/bbDZ99dVX7sc5OTnq3LlznrawsLACx12+fLlOnTqle++9N9+2xYsXq1GjRnryyScVHh6uTz/9VH369NH27du1c+dOvf3225Kk3r17u48ZNmyYWrZsqT//+c/5+nM6ndq0aZPmzZuXb9u3336rO++8U02aNJGfn58GDhyo+Pj4PPvcfvvt7t9zPx8oe507dw7Izs6ebLPZPm3RosU3n376aU5FzwkAcHkIjAMAAACoVFxfjKLqeP/999W1a1dFRERIknx9fUul3xtuuEE33HCD+/H69eu1cOFCJSUl6cEHH5Qk/eMf/yhx//fee6+MMe5A+GOPPaa1a9fqq6++kpeXV55977rrLnl4nP8I7evrq2nTpikgIEDLly/XPffcoyeffFLS+aC7K/s8t2+//db9e6dOnfTFF1/ommuuKXBuBw4c0P79+3X33XdLkpYsWeLetuvCcAAAIABJREFU5gr2EwyvOMYYT0l/djqdfz548GC83W5fJWlFZmbml3v37nVU9PwAAEUjMA4AqLTIFAcAoPLLycnR5s2bNXPmzFLr85///Kdmzpwpf39/LVu2zN1+11136a677tLtt99eYEDc6XTmySB3uVTb6tWrtXPnTr3wwgtavXq1Jk6cqIceekg5OTl68cUXNXHiRHe5FYfDkSdY3r59e0lSs2bNLtl3QbKysuR0Oov88sDhcGjGjBk6ceKEhg0bVuz+USGCJD0q6VEvL6/EsLCwz51O54o6der8a/PmzRkVPTkAwKURGAcAAABQqfDFaNUSExNjMjMzdfLkSd177706deqUQkNDNXHiRNWvX79Efd55552688478wWcXVniuTPGp0+fnmcfm82m//znP+7Hruzq3G25S6l89tlnSk5O1qRJk/T4448rKChIH3zwgXx8fGRZv74VXYHxRYsW6ZNPPlHNmjW1evVqzZgxI8/4jRs3zlOGJTAwUB9++KH7savETEH11xcvXqwWLVqoXbt2mjNnjsaMGaP77ruv0OxyVCp1jTGDLcsanJycnGK329dZlrUiIyNjw969e1MqenIAgF8RGAcAAAAAlFhqaqokaefOnVq8eLGysrI0btw4TZo0SX/9619Ldayiyqbk5OTI09Oz2P0dPnxYhw8flr+/v1q2bKnFixdr0KBBWrNmjd5//3099NBD+uijj1SzZk13YHzAgAHq37+/brvtNknns87vv/9+5eTkLzFdo0aNPEFx6fyioo0aNdLnn3+eb/8uXbrkySRv06aNVqxYoaSkpDz1xF0ubrPb7ROLffK4Ik6ns1bRe6mWpD8aY/7o5eWlsLCwdGPMcMuy1kRGRiaV9RwBAIUjMA4AqLRYfBMAgMrPx8dHkvTYY4/J399fkhQREaGnn35aTqdTNpvtisdwOp3ukib9+vVz/163bt08C1dmZmbK4XAUK4jsdDo1adIkDR48WO+8844GDRqkzMxMjR8/Xk899ZQaN26sbt266aOPPtLw4cNljJHNZpPNZssXfD927Ji+++67fGN26tQpX9vOnTvVunXrfO1ZWVlyOByqXbt2nvb58+frwQcfdNcTP3nypPr376/Zs2erc+fOefYNCwt7OV/HKBPGXP5SCMYYH0mLjTEpYWFh40rSBwCg9BAYBwAAAACUWJMmTeTr66uUlBQFBgZKkizLkpeX1xUFxZ1Op5xOpxYsWCAfHx93wDgzM9O9uGWvXr3yHJOcnKw2bdro448/drddaqHKsLAw2Ww2XX/99erZs6feeecdSecX99yyZYsSExO1YMECpaam6syZM+rZs2e+xThLatWqVerfv3++9qSkJHl6eubJGD958qQWL16sIUOGuNtef/11PfDAA+rcubO2b98uT09PhYaGujZPKpVJokiWZdUyxvzlMg9LkzTcsqy1kZGRSXa7vXRvqQAAXBYC4wCASotMcQAAKj8PDw/dc889euuttzR58mRlZWVp/vz5eYLWJ0+eVHBw8GX1Gx0drXPnzuk///mP+vbtqxYtWkiS4uPj3fXFLxYbG6tGjRoVe4ynn346z+Pu3burRYsWCgoKkr+/v2rVqqVvvvlGmZmZ7sx46Xx298V69+5d5Hiff/654uPjdccdd+TbFh8fr7p16+Zp+/LLL/OUV1m1apWSk5P1+OOPS5K8vLz04osvaunSpfL19VVUVNTEIieBUtGpU6cGOTk5RQXGUyStNcasyMnJ2bBr167U8pgbAKB4CIwDAAAAAK7IqFGj9MYbb6hPnz6qUaOG7rjjDj3zzDOSzi9aOXz4cPXt21dDhw4tdp+tWrVSv3799Oyzz2rSpEn6v//7P0lSUFBQgbXGd+zYoXbt2pX4POrWrasbbrhBkpSQkKCsrCx169ZN69evdwf2ExISNHbsWIWGhuqvf/2ruw55+/bt8/W3Z88e9+/btm3TG2+8oenTp7trlsfHxysgIEA1atTQunXr1KxZszzHf/HFF+7s8o0bN2rRokWaPXu2kpKSlJycLGOMvL299fbbb+uFF14o8XmjVCUaY1ZblrXC399/4+bNmzMqekIAgEsjMA4AAAAAuCI1a9bUhAkTNGHChEtumz9/vkaOHKmkpCSNHj26WH3WqVNHzz//vLZt26bvv//eHfh1lVHJzs6Wh4eHEhMT5eHhoezsbK1bt07vvffeJfszxignJ0dnz56VzWaTZRV+Y9ozzzyj3bt3y7IsBQQE6MUXX5Qk/etf/9Itt9yiP/3pT/rb3/6miIgIpaWluWuQ16hRQzk5OXI4HMrKylKDBg00fvx4Pf300xo/fry6dOkiScrIyNB9993nXrQzMDBQb7zxhnv82NhY7du3T926dZMkTZs2Tenp6Ro8eLCuueYa1atXT/Xq1dPvfvc7rVix4pJZ6Cg38ZJWWpa1QtKXUVFR+W8pAABUOgTGAQCVFotvAgBwdQgKCtKcOXN08ODByz528eLFmjhxYp7a29L5BT6PHj0qy7LUr18/7du3T40bN1bz5s3z7GdZlnx8fOR0OtW1a1dlZ2era9euRdY/X7hwoXJycmSMkYfHrx+d+/fv7348dOjQPFnwWVlZys7Odo9rWZY7WP63v/1N1113nXtff39/bd++XZmZmcrOzpavr2+eYL2Pj49eeukld231NWvWyM/P75IB/VatWrnru6N8WJaVJemvNptteYsWLb759NNPcyp6TgCAy0Og4Qq5gjZrI+cVtWup6h02XBLBIgBXNwLjAFAxXNffNfMiy3XcPsPDJHHdr2qMMaYs+3c6ncVexDMlJUW1atUqcLsxRtnZ2fL09Cyt6VUqVlFp8KhUXNfayHnlG08IG048AQAkMsYBAJUYf6wDAFD5EYwFAABVUfG+dgcAAAAAAAAA4CpBYBwAAAAAAAAAUK0QGAcAVFp2u924ai8CAAAAAACUFgLjAAAAAAAAAIBqhcU3AQCVFotvAgAAAACAskDGOAAAAAAAAACgWiEwDgAAAAAAAACoVgiMAwAqLRbfBAAAAAAAZYHAOAAAAAAAAACgWmHxTQBApcXimwAAAAAAoCyQMQ4AAAAAAAAAqFYIjAMAAAAAAAAAqhUC4wCASovFNwEAAAAAQFkgMA4AAAAAAAAAqFZYfBMAqgBjTHXPmq7u518pWZbF4qgAAAAAgCqJjPFqKDQ0tFlFzwEAUPGMMTp+/HhFTwMAAAAAgHJHYLyasNvtrUJDQ8eFhoZusyzrl4qeD4DL9/333ys+Pj5fu9PpVEpKio4dO6YdO3Zo3bp1OnToUAXMEFVNVlaW+vTpk6/93//+tx5++GFlZmZWwKwAAAAAACh7lFK5ioWGhv7WZrP1N8b0k9SRO96Bqm379u2aP3++Zs+eLcuy1L17d3l6esrDw0Pe3t6qVauW6tWrp2uuuUb+/v5q3LixunTpolq1ahXZd0pKijZv3qxffvlFERERkiTLslS7dm21bdtW/fv3V48ePS57zmvXrtW8efMUFxenJ554QkOGDLnsPiRp9+7dioiI0DfffCNfX98C9zt58qTee+89bd26VUlJSfL19dWAAQM0YsSIyx7jSvq6XCdPntRjjz2mzz77TDZbxX5nvWXLFr344ouqXbu2+73gMnr0aN14440VMzEAwCVRbg2VEeXWAABVAYHxq4sVFhYWeiEQfr+k3/B3MnD1eOSRRxQeHq5ly5YpPDxcWVlZ+vLLLwvc3+FwSJI2btyomjVrFtp3WFhYnsfffPONfHx8lJiYqO+++06zZs3S119/rZdeeqnYgdsTJ05o0qRJmjZtmm699Vbl5OQU67jiOHr0qEaNGqVly5a5zy07O1uPPvqounfvrmXLlqlOnTo6duxYiUqFlGZfxREcHKxVq1aVWn9Op1M33XRTnjaHw6HIyMgCjzHG6OOPP9bq1au1dOlSNWv2a9Wt/fv3a9q0aerQoUOpzREAAFRexhjFxcWpYcOGFT0VAADKDIHxqs9mt9s7G2P622y2+40xLSp6QgDKRs2aNfXiiy8WKwO8NFiWpXr16ukPf/iDfv/73+tPf/qT/vGPfyg8PLxYx58+fVpOp1O33HKLPD095enpWWpzS0pK0tGjR/O0HTx4ULGxsRoyZIiuueYaSVKLFi3UosXlXxZLs6+KYLPZNGfOHLVp00be3t46efKkhgwZokceeUQ//vhjvv1vuukm/eY3v9HOnTvVsGFDjRkzxr0tPT1dGRkZqlmzpiIiIpSRkaHPP/+8PE8HAC5LaGhos+jo6CMVPY/y9P3336tZs2YKCgrK0+50OpWWlqazZ8/qzJkzio2NVdu2bRUSElJBM0VV4Sq3dvGX6v/+97+1ZMkSzZ49W15eXhU0OwAASgeB8SrI6fw1C9xutx+V1MiyLJUkO/yGG264wWazRUvaGRUVdQNttNFWOdtcQkNDJZ3P4snIyFCvXr10sVOnTmnDhg2qW7dunvawsDDVr18/z36FZRDn5u/vrz/96U9asWKFOzDucDj0zjvvaMOGDcrKylK3bt30/PPPuwP3rrIpXbp0kSRFRkZq+/bteuedd3Tw4EHVr19fzz//vLp06XLJUimutq1bt+abj6vER+6+r732Wnl7e+vdd9/V2LFjL1lyJTExUVOmTNF///tfBQQEqG/fvpo9e3a+MYrTV1Hnv3TpUi1YsEDnzp1Tv3799OyzzxbYfvH5Z2Vl6YMPPtD69esVHx+vgIAA3XfffRo2bJhsNpt7//fff18zZ87UoUOH1LRpU02aNElt27aVJH311Vdas2aNJkyYoB9++EHt2rXTm2++me8cunTpoi1btmjbtm2aMmVKnqB3bGysHn74YX3xxRfuOwV69+596TcJAFQgu93eynXXpGVZnSVVqzIOlFuj3Fp5oNwaAOBqQ2C8irMsi7KCQDXw4YcfatGiRXI4HNq6datSUlJUr149zZ8/X/Xq1XN/EIyOjtaUKVMUFBSkrKysPH3YbDZt2LDB/bhTp06XNYfrrrtOv/zyi5xOp2w2m1555RXFxMRo6dKl8vLy0vjx4/Xmm2/q5ZdfliQtXLjQHdh2lTtJTU3VhAkT1KpVK82aNUuvvvpqibKPL9W3v7+/Xn/9db300kv69ttvNXDgQIWHh+f5kPzSSy8pIyNDa9eulTFG48aNu2T/xemrsPOPiYnR9OnTNXv2bLVv316HDx+WpALbLzZ16lTt27dPb731lkJCQrRv3z4999xzys7O1siRI937ffbZZ3r33XdVs2ZNTZgwQVOmTNGSJUskSSNHjtTgwYO1efNmff3117rpppu0bds2LVy4ULNmzZKHR94/AVwfZh988EF3W2JiohwOR567BC61ACwAVATW0/kV5dZ+Rbm1wlFuDQCAXxEYr4Jstl//6I+MjGwWFhbWyRjT37KsfpdbSmXHjh07dFFGDW200Vb52oYNG6Zhw4a5M6RjY2MVEBCg7777TosXL9aECRP029/+Vq+++qqeeuoplUVwIDs7WzVq1JDNZtPZs2e1fv16LVmyRMHBwZKkQYMGafz48e7A+KV0795dGRkZOnjwoGrVqqXY2FhlZ2eX2hy7du2q1atX6+OPP9aiRYu0fPlyvfPOO2rdurUSEhK0ZcsWLV68WAEBAZLOBxKeeOKJy+6rqPP39PSUZVk6ceKEOnfurHbt2klSge25JSYmau3atfrwww/VunVrSVLHjh01YsQIzZo1K09g/IknnlBgYKAkKTw8XE899ZT7iwtPT09NmTJFTzzxhLKzszV69Gj5+fnpr3/9q2bNmqWnn34639ijR49Wz549tXPnTs2cOVOnT5/W4sWL1aRJE0lScnKy1q1bV9KXBwCuFOvpFIBya7+i3FrhKLcGAMCvCIxXfc7IyMhtkrZJGvu73/3uBqfT2U9SP0m/qdipASgr33//vTp06KC+ffuqbdu2euGFF2RZln73u9/p1ltvLZMxd+/erd/85vxl5cSJEzLGaMCAAfn2y8rKKvAD7qxZs/T555+rY8eO7rqUTqezVOdZu3ZtjRgxQgMHDtRzzz2n559/XsuXL9fJkyclSU2bNnXvW1QAoaC+ijr/4OBgTZkyRTNnztTf//53jR8/XqGhoQW25xYXFydjTL76r02bNlVCQkKe58sV4HfN1Rij7Oxsd4Zcq1atFBYWpsOHD8vf31+S9PLLL2vQoEHq3bu3O+PL4XBoy5Yt2r17t2bPnq1rr71Wjz32mP7+979rxIgRmj17tjZt2qQVK1bovvvuyzOv0NDQnpZleXt5eW3aunVrOm200XZ1tKnyYD2dYqLc2nmUW6PcGgAAxVWxRcpQ2sz3338fHRUVNSEqKqqtMaadZVkvSdpZ0RMDUHocDoeWL1/u/vDhcDhks9nk4+OjPXv26NixY5c8zul0qlevXu6fywlIx8fHa9myZe5AsCtDat26dYqMjMzzU1BQPCYmRgsXLtTcuXP15ptvqk+fPu5trkBuRkaGuy0lJaXY87sUf39/DR061F3+pXbt2pLOZ6m5nDp1qkR9Fef8e/XqpTVr1ujGG2/U2LFj3X0V1O7iWjjtyJG868bFxMQoODj4suqL/vzzz9q+fbs8PT21fv16SVLLli21evVqXXfdde79PDw8tHnzZtWvX1/Tp09Xt27dNG3aNIWFhalz586KiIjQ2rVrNX/+fA0bNizPGJZlLZS0JjU1NYA22mi7etpUwUJDQ7uFhYW9e2E9na2WZf2lJEFxu90+x263m9DQ0BFXa9uHH36oW265xR0Izl1ubcWKFdqwYYM2bNigadOmXXKBTunXcmuun8utZZ273Jp0vtzYjz/+qKVLl2rt2rU6e/ZsnsDrwoULJUlbt251B+Bd5da++eYb3XrrrXr11Vcvaw6F9e0qkfb111/rnnvu0YIFC5SWlpbnuJdeeknnzp3T2rVrtXDhwksG3YvbV2Hn7yqr9sorr2jTpk3uLzAKar/Y1KlTtXnzZr311lvasmWLXnvtNa1cuVJz587Ns5+r3Nq//vUvNWjQQFOmTHFvGzlypPbu3Zuv3NrIkSMveSdf7nJrrp+hQ4cqMzNT4eHh7rZLlVur6H8flb0t3xMGAChXBMavYtHR0fsiIyOnREVF3WBZVitJ44wx2yt6XgBKxlUP9LvvvlObNm3k4eGhsWPHasqUKRozZowWLVqkPn36KCIiQtu2bct3/JAhQ/J86C1qkStjjBISErR+/XpFRETo7rvv1h133CHpfL1Lu92uGTNm6OTJk8rJydH+/fu1fXvBlxjXB624uDglJyfrk08+cW9r3ry5fH19tXbtWklSZmamFi9eXGBfruznHTt2KDk5WZJ04MABffDBBzp69KhycnJ05swZrVy5Up07d5bNZlPjxo3VsmVLzZo1S8nJyYqNjS1wjKL6Kur84+LitGPHDlmWpSZNmsjhcMgYU2B7boGBgbrttts0depUHThwQDk5OdqzZ4/mzJmjwYMHF/qa5ZaUlKSxY8dq1KhRmjZtmubOnev+siF3VqB0/pb4W265Rfv379ejjz6qH3/8UW+88Ybi4uL0888/KzAwUKNHj9bSpUvzjWNZ1iZJ6zw9PTNoo422q6dNFcyyLON0Oo1lWQSOijBs2DB99dVX7se5y6099NBDio6OVmZmZrmXW3vuuecUHBysunXratCgQdq0aVOhfXTv3l0hISFlXm6tf//+WrRokfr376/9+/dLkrvc2ujRoxUQEKDAwEA98sgjJeqrqPPPXVbN19f3kuXWcrfn5iq39sILL6h169by8PBwl1v77LPP8uzrKrfm7++v8PBw7d+/3/3Fhavc2v+zd+fhUZXnw8e/CSCorMomoCJYShVUQFzagkVxqaKionUvalWEothixUILboiCP6yKLahoXRCFigvF7UVBQKwaUCmLiCgguCH7Tsh5/yAnPRlmJhMyIRny/VzXuS5yznOe5zmTEPGee+57yJAhvPvuu3Tu3Jljjz2WjRs38tBDD8V95j59+vDCCy/Qv39/qlevTm5uLk8//TQvvPACL7zwAo899hh9+vQp5ndFkqSyVXE71KRJ+C7vxJxRe3TdLu2uA2DWrFnF/h62adPm0NmzZy8peqSk8mLVqlXBH/7wBzZs2MAJJ5zAlVdeydy5c9m2bRudO3culNn16aefcsghh7Dffvtx4oknFmpQmUi7du2YMmUKX331VcFHkLOysqhZsyatWrXi4osv5uc//3nsnhgyZAgzZ85k+/btNGvWjJtuuqkgqyj6Medw/aFDhzJhwgTq16/PxRdfzNChQwuuv/vuuwwbNgzYmTXdqVMnhg8fzsyZM/nss892+Rj13XffzcSJE6levTpvvfUW3333HQMHDuSzzz5jw4YNHHjggXTo0IHf//731KpVC4DFixczaNAgFi5cSPPmzbnwwgu58847d1lj/fr1Rc6V7Pm//vprbrzxRpYvX07jxo25+eab6dChQ8LzsR+T3rJlCw8//DBvvvkma9asoUmTJlx66aV069at0Gub6GPlmzZtomfPnrRu3ZrbbrsNgP/3//4fRx99NHXq1GH79u1Uq1aNuXPncv311zNjxgxGjBhBgwYNOPbYY5k8eXLBpxKuuuoqunbtyptvvkmfPn34xS9+wYUXXhj+jPjvCGkvFf4b99VRqZXTSJezr9vZ6DHyb9zs3emnszv/Rs5UQf47rOF/85955hmWLFlC//79+eyzzwqVWwubTodlMsL/Brdv354PP/ywYM7o17H/Roj+tyf02GOPMX36dJ588knmz5/P5ZdfHnev77//PlWqVIn7b4TYcmtvvPFGwn8DRO+PvR5v7ljr1q2jX79+fP/994wfP75gz1OnTi0od5JsjVTmSvb8r732Gn/729+oWbNmobJq8c5H/5u/ZMkSLr/8cqZMmVLwSTjYmShwzTXX8OGHHzJ37tykr1f0Nenfvz9ffvllQePuL774gssvv5ynnnqKQw89tOBnZMaMGXz88cdMnz6dgw46iCuuuIJnnnmGxYsX71JuLfxkmf9GSE34uzZn1J6NJ7S7bvfjCZK0N7HGeAVkUFzKPK+99hrt2rXjuuuuY+TIkVxzzTVs2bKF7OxsHnjgAbKzs8nLyyM3N5fc3FwaNmxY8FHis846K+V1WrdunXJN0QMOOID77ruvWHPdcssthZo2RZt0dezYkY4dOxYaH/6PZby5+vfvT//+/Qu+btCgAf/4xz+S7rlZs2Y89dRTBV/PmTMn7n7322+/IudK9vxNmjTZJXMr2fnY56tWrRp9+/YtqDla1PjYc1u2bKF9+/bcdNNNBdc7d+4M7Pyo9rnnngvszBi7+uqr2bJlC40bN2bKlCn8/e9/5+STT2bEiBEccsghTJw4kcaNGwM7Pxreq1cvZs+ezeDBgxO+NpKURvbTKYaw3Nrtt99e8HV2djbVqlUrKLcWNlSOCsutRb9OVVhuLfxvVrTcWMOGDVOaIyy3Nm7cOJo1a8bMmTN54403gMLl1sJAb7rKrd1www27lFsLA+PFLbcWzpXK8//617+mc+fOBXXK33rrraTnQ9Fya61atSo4X5Jya40aNWLSpEmceeaZBeXW6tevX/BJxbDcWosWLRg6dCgfffQRgwcP5rzzzqNu3bp07969oHRPqt9vSZLKCwPjkpQBunXrVvA/hr1796Z3794F13bs2MGOHTsIgqDgCD/O3KVLF/7yl79QuXLyX/cDBw5MWBtcmadmzZrcfPPNca81adKE9957j7y8PKpWrUp2djY7duzg888/p0uXLtx77718++239OjRg7y8PA466KCCDMPq1aszevRoVqxYsScfR5JCwUcffTQbmA0MaNOmzRHZ2dkXBEFwAXB0Ge+tTCUqt/bVV19xyy230L59e1544QW6d+/O4MGDd2n8/Nvf/pYbb7yx4OsHH3ww6XpBELB69Wref/99RowYkbDc2i233ELdunX54osvWLNmDccdd1zc+aLl1urWrZuw3NqVV15ZrHJrLVu2pGbNmnz++edMmTKF008/ncaNG7NmzZqE5dYGDhzI+vXrk5ZbSzZXUc//zTff8N1339GqVatCZdW+/fbbuOejouXW7rjjDpo1a8b8+fNLVG6tTZs29OzZk44dO1K9evWE5damTp3K6NGjOemkk7jvvvt48cUXC8qt9e7dm7Fjx1pKRZKUcQyMS1IGSFYKpVKlSlSqVCnutTBjrCipjtPeoWrVqoW+rlSpUqFM/kMPPZTXXnst7r2VKlWKm20oSXva7Nmz5wHzgDvbtWvXPAiCC4IguCArKyt+9HUvtXr1av7whz/QpEkT3n//ffr27cvcuXPp3LlzoXJrF110ES1btuSQQw7ZZY5oUDze11EdOnQoVG6tf//+u5Rbu/feexkyZAjdunUrVG4skaZNm3LxxRdzyy23FJRbmzFjBrDzv1l33303w4YNY/z48QXl1uL1U4Gd/w07//zzuemmmwrKrdWsWZOcnBzGjBlTqERa+MYvwJAhQxg0aBCnnXZaQbm16CfLQqnMlez5d+zYwR133FFQVu2uu+4iKysr4flYd9xxBw8//DC9evUqKLfWvXv3gnJrRVmzZg09e/akffv2BY3ce/fuzebNm6lWrVpBubWFCxdSrVo1srKymD9/Pq1bt+aqq65i8uTJ9OnThy5dujBy5Ei6du1Khw4d+Ne//sW4ceMKyq1JkpQJrCdVQplYY1ySJElKphzVGC+2itZP59lnnw1WrVpVUG7trbfeKii3Fh7xyq2deOKJBWU/klm1atUuNa0rglRqlWeidevW8fjjj3PTTTftUnolXrm1K6+8ktdff50pU6YwZ84cTj75ZC655JKCcmsvv/wyTzzxBBs2bKBXr140btyYwYMHW2M8RdYYl6SyZca4JEmSpL1GRQqKg+XWVDyWW5Mk6X8MjEuSyq0wi8ZsFkmS4rN4YyJCAAAgAElEQVTcmtLJcmuSpIrEwLgkSZIkZShLVpSu2ECxJEnaexgYlySVW2aKS5IkSZKk0pBd9BBJkiRJkiRJkvYeBsYlSZIkSZIkSRWKgXFJUrnVtm3bIGzAKUmSJO1lVgJs3LJljy24YfPmQmtLUkVmYFySJEmSJGnPmwewcNmyPbZgZK25e2xRSSqnDIxLksqtWbNmZdmAU5IkSXujrKyspwGGjBnDrIULo9ncabdh82ZmLVzIvc89B0AQBE+X2mKSlCEql/UGJEmSJEmSKpqcnJzRbdu2PXfR8uVdrh02bE8u/ers2bNH78kFJak8MmNckiRJkiRpz8ubNWvWuUEQ/A6YSunW/V4JTA2C4HezZs3qCtjHR1KFZ8a4JKncChtvWk5FkiRJe6m82bNnPw48XtYbkaSKxoxxSZIkSZIkSVKFYsa4JKncMlNckiRJKqxt27YDgUHAoFmzZt1extuRpIxlxrgkSZIkSZIkqUIxY1ySJEmSJClD5GeJmykuSSVkxrgkqdxq27ZtEDbglCRJkiRJShcD45IkSZIkSZKkCsVSKpKkcsvmm5IkSVJhNt+UpPQwY1ySJEmSJEmSVKGYMS5JkiRJkpQhbL4pSelhxrgkqdyy+aYkSZIkSSoNBsYlSZIkSZIkSRWKpVQkSeWWzTclSZKkwmy+KUnpYca4JEmSJEmSJKlCMWNckiRJkiQpQ9h8U5LSw4xxSVK5ZfNNSZIkSZJUGgyMS5IkSZIkSZIqFEupSJLKLZtvSpIkSYXZfFOS0sOMcUmSJEmSJElShWLGuCRJkiRJUoaw+aYkpYcZ45Kkcsvmm5IkSZIkqTQYGJckSZIkSZIkVSgGxiVJ5dasWbOybMApSWViJcCmLRv32IKbNm8otLYkKb62bdsOzP9k5cCy3oskZTID45IkSZJizQP4ctnCPbbg4v+tNXePLSpJkqQKy8C4JEmSpEKysrKeBvj7mCH8d+GsaDZ32m3avIH/LpzFP567F4AgCJ4utcUkaS8wa9as2/M/WWkDTkkqgcplvQFJkhIJG29aTkWS9qycnJzRbdu2PXfJ8kVdbht27Z5c+tXZs2eP3pMLSpIkqWIyY1ySJElSrLxZs2adGwTB74CplG7d75XA1CAIfjdr1qyuQFCKa0mSJEmAGeOSpHLMTHFJKlN5s2fPfhx4vKw3Ikn6n/ymm4OAQZZTkaTdZ8a4JEmSpLRp27ZtEJbCkiRJksorM8YlSZIkSZIyRH6WuJniklRCBsYlSeWWzTclKfP4O1uSJEmZwFIqkiRJkiRJkqQKxYxxSVK5ZdahJEmSVJjNNyUpPcwYlyRJkpQ2Nt+UJElSJjBjXJIkSZIkKUPYfFOS0sPAuCSp3LL5piRlHn9nS5IkKRNYSkWSJEmSJEmSVKGYMS5JKrfMOpQkSZIKs/mmJKWHGeOSJEmS0sbmm5IkScoEZoxLkiRJkiRlCJtvSlJ6GBiXJJVbNt+UpMzj72xJkiRlAkupSJIkSZIkSZIqFDPGJUnlllmHkiRJUmE235Sk9DBjXJIkSVLa2HxTkiRJmcCMcUmSJEmSpAxh801JSg8D45Kkcsvmm5KUefydLUmSpExgKRVJkiRJkiRJUoVixrgkqdwy61CSJEkqzOabkpQeZoxLkiRJShubb0qSJCkTmDEuSZIkSZKUIWy+KUnpYWBcklRu2XxTkjKPv7MlSZKUCSylIkmSJEmSJEmqUMwYlySVW2YdSpIkSYXZfFOS0sOMcUmSJElpY/NNSZIkZQIzxiVJkiRJkjKEzTclKT0MjEuSyi2bb0pS5vF3tiRJkjKBpVQkSZIkSZIkSRWKGeOSpHLLrENJkiSpMJtvSlJ6mDEuSZIkKW1svilJkqRMYMa4JEmSJElShrD5piSlh4FxSVK5ZfNNSco8/s6WJElSJrCUiiRJkiRJkiSpQjFjXJJUbpl1KEmSJBVm801JSg8zxiVJkiSljc03JUmSlAnMGJckSZIkScoQNt+UpPQwMC5JKrdsvilJmcff2ZIkScoEllKRJEmSJEmSJFUoZoxLksotsw4lSZKkwmy+KUnpYca4JEmSpLSx+aYkSZIygRnjkiRJkiRJGcLmm5KUHgbGJUnlls03JSnz+DtbkiRJmcBSKpIkSZIkSZKkCsWMcUlSuWXWoSRJklSYzTclKT3MGJckSZKUNjbflCRJUiYwY1ySJEmSJClD2HxTktLDwLgkqdyy+aYkZR5/Z0uSJCkTWEpFkiRJkiRJklShmDEuSSq3zDqUJEmSCrP5piSlhxnjkiRJktLG5puSJEnKBGaMS5IkSZIkZQibb0pSehgYlySVWzbflKTM4+9sSZIkZQJLqUiSJEmSJEmSKhQzxiVJ5ZZZh5IkSVJhNt+UpPQwY1ySJElS2th8U5IkSZnAjHFJkiRJkqQMYfNNSUoPA+OSpHLL5puSlHn8nS1JkqRMYCkVSZIkSZIkSVKFYsa4JKncMutQkiRJKszmm5KUHmaMS5IkSUobm29KkiQpE5gxLkmSJEmSlCFsvilJ6WFgXJJUbtl8U5Iyj7+zJUmSlAkspSJJkiRJkiRJqlDMGJcklVtmHUqSJEmF2XxTktLDjHFJkiRJkiRJUoVixrgkSZIkSVKGsPmmJKWHGeOSpHKrbdu2QdiAU5IkSZIkKV0MjEuSJEmSJEmSKhRLqUiSyi2bb0qSJEmSpNJgxrgkSZIkSZIkqUIxMC5JkiRJkiRJqlAMjEuSyi2bb0qSJEmSpNJgYFySJEmSJEmSVKHYfFOSVG7ZfFOSJEmSJJUGM8YlSZIkSZIkSRWKgXFJkiRJkiRJUoViYFySVG7ZfFOSJEmSJJUGA+OSJEmSJEmSpArF5puSpHLL5puSJEmSJKk0mDEuSZIkSZIkSapQDIxLkiRJkiRJkioUA+OSpHLL5puSJEmSJKk0GBiXJEmSJEmSJFUoNt+UJJVbNt+UJEmSJEmlwYxxSZIkSZIkSVKFYmBckiRJkiRJklShGBiXJJVbNt+UJEmSJEmlwcC4JEmSJEmSJKlCsfmmJKncsvmmJEmSJEkqDWaMS5IkSZIkSZIqFAPjkiRJkiRJkqQKxcC4JKncsvmmJEmSJEkqDQbGJUmSJEmSJEkVis03JUnlls03JUmSJElSaTBjXJIkSZIkSZJUoRgYlyRJkiRJkiRVKAbGJUnlls03JUmSJElSaTAwLkmSJEmSJEmqUGy+KUkqt2y+KUmSJEmSSoMZ45IkSZIkSZKkCsXAuCRJkiRJkiSpQjEwLkmSJEmSJEmqUAyMS5IkSZIkSZIqFAPjkiRJkiRJkqQKxcC4JEmSJEmSJKlCMTAuSZIkSZIkSapQDIxLkiRJkiRJkioUA+MllwuwY0feHlswslbuHltUkiRJkiRJkvYSBsZL7nOA1SvX7rEFV/2wJvzjwj22qCRJkiRJkiTtJQyMl1AQBB8AvPnS9D225lsvzwj/+MEeW1SSJEmSJEmS9hJZZb2BTNeuXbtDgHlBEOx/ZJufcFiLJuxffd9SWWvjhs18ufBr5s7+nKysrI3Z2dk/+/DDD5eVymKSJEmSJEmStJcyMJ4Gbdu27ZCVlfVYEAQt9tCSn2VlZf0uJydnz6WpS5IkSZIkSdJewsB4mhx++OFVa9Wq1T4IgiODIKhXGmtkZWX9kJWVNXft2rUfLlq0aGtprCFJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkpRmNeEAYP+y3ockSZIkSZIk7ZXGwJgxMKYbXFjU2IZQby7MfQT+3g7a7u6afaBPH+gDZCUb1xN6DoC/tIQWu7tWSTSDn6yBNWtgze7c3wQaF/eeK+G3P8APo+Hx3VkziayW0OJgaJTmeSVJkiRJkiQpczSEetthewDBSBhZ1Pjr4boAggCCX8GvdnfdcA6gcpJh2UthaQDBI/D33V2rJFpAy8hei+UcOGcrbO0HtxXnvr/AX8M1U3mzIo7sJtD4RPj5FXDFcBg+Faaug3UBBCNgBMBP4ae5kLs7Rw04cDf2JUmSJEmSpPIiDECFR2fovJtT7bcaVkfnSutGtYvY71145ELuSlj5AXxwP9zfCn5W1nstr3pBr/B1aw2tixr/BrwRQLAMlgHZu7tuKoHx0+DUcFwbOHp31yqJkgTGx8CY8N4xMAaomuKt2e/AOwEEq2BVqhnel8Gli+GLbbAt0d+NHbDjHXgn9tmKezSCusV9PSRJkiRJklSOxAZ8xsO/dmeea+Ha2LnSvVcVlmoQLw/yhsNwoEpZ77m8yYFZAQSTYXJRY+tBwzC7/G4YXJJ1UwmMT4CXAghmwIySrpPoGA/jAdbAmt0NEjeGJgmWzx4OD4TjpsG0MNO6HjRMdpwAx2+GzaPh8cbQpKjxAK2hdTQAvgJWhF/3ht+fBB3qQo1wc8UN+jeCugbGJUmSJEnas5J91F5Kq3PhnIOh0TJYUZz7ekGv0tqTktsCW26LlKvYF/Y7GA4+DU5tDs2zIKsP9KkLda+AK8pyr+XAPo2gJsDhcERbaAPwJDwZL9i5AlaGf74aulfO/338IXxwFLRKttASWL4WVu/OJn8KPz0XzgF4BV5tDoeneu8PsGodrCrOegthYc381yVqH9jnMDgM4DP4LHaPRUybdzP0+Q6+uQeG/BJ+mQMzj4PjvodvUtnXVXD1VXB1UeOyIGsOzDkVTl0MSxbDksZQ/+udmf08BA+nsp4kSZIkSZIqiDADchksC//8VxhYnDk6wC/Ce5fDcjPG94zwdU7SGDGrJ/TcATvCsWfA6Xt0k+XMhdCtONnQ0XsXwsLi3Hs1XJNoH0VljI+Gx3c3g/sv8NdwnkZQN/ZoDa1XwaoAgt/Axcler2RZ1SlkjBfoDTfmQd6foX/03nQd8dZsDE2SXTdjXJIkSZIkqQILAz2L4Yu5MDeA4Gv4GqiU6hxj4Lnwvo/hYwPje0YKgXEAhsGwcOw4GLen9lce7W5g/GzoUtxgbTQ7fwtsiR7hmOi5lfnZ6UfCEbmQu7tB4n5wa5KXoMo0mBZAMApGFfV6pSswDlBUnfS20G4drHsf/nMpXJbKnMkYGJckSZIkSVJCYaDnG/jmXhgSfn0+nJfK/fWgYdjsbjg88CV8aWB8z0g1MN4cDg/H5jeNrLCigfHD4NDG0CT26Ak9Y3+GZ8CMAIL/wn+BfYFq8Y5GcHB470VwUXh/KgHtDbABYBJMCiBYBItIvWElr8FrAQR9oE+iMQ/A3wIIPoVP85+DBbAg0bEYFof7i70Wnl8Ei8Jz98P9xfqG5Psp/PQH+CGAYCksPQKOjB1TD6pfCb9NdU4D45IkSZIkSUooDPSshJWHQ/M8yAsgeBPeTOX+AfCXcI4W0PJ7+D6FYNM+F8FFY2HsIli0ATZsha1LYckYGHMsHJfKnqMB4VOg03gYvxSWbIWtK2DFeBh/Kpyyp+bKV7k7dH8H3l4Nq3Mh9wf4YRJMuhC6FWcvzeCQcTBuLawNIBgEg4raeyLhmxfbYXtJ1w2dDCePhtELYMEm2JQLud/D95Ph/+XXnN8v9p5GcPAG2BCu+Uv4ZaI9PwqPheNuhzuuhx7h19Pg3aKeORr4nAkzoXBgnARlTH4DF0d/hk+Gk8Ovu8GFydY8GBqFY7tC13hjjoQjEu3hHDgnvHY2dIlcqlbU874DbwcQXA894l2/DC4NA/Ct4Gfh+d3NTI93jIWxACfCz3Ng1knQoah9t4QWS2FpAMHH8PHB0Ch2TD2ovhi+CN+AK2pOKF5gvLiHgXFJkiRJkqQMFwZ6Vuc3CQyzTvMgL4WGf5W/hq8DCCbDZIDVsDpZMKottPsyklUe79gBO3rADUXtOT+QmxUtFRLvGA7D98RcjaHJh/BhsvsnwEskCHJG99IQ6kXrvpc0ML4VtgYQbIbNJV23IdQLs5qTHUthyfFwQux6t8KfwjHTYXq8/baCo8La6AtgAVC1NtQOy5DsgB31oGGyZx4Et4fr9IDrYbcC49mzYXYAwSfwCZCVbM1oxviv4dfxxtwIvePtoRbU+Qa+CSB4BV6J3LLPMlg2Hv4VL5M6FGa1XwVXxV47ClpthI0BBMXJut7NUipVwnrseZD3EDxIfnZ6rBPg+DBT/EV4sS7USLSXaCZ/vD4IU2FKqoHt2GczMC5JkiRJklTBxAZXo7WUh8GwZPdGg4wXwAUAa2BNssD4NfC78PrH8PFD8OCt0O92uONT+DS8th22HwWtitpzGGRdCStHwah+cOu9MGQezIsGsv4Et5TmXDXgwEWwKBzzGXx2H9x7K/zpUXh0HawLr42EfxS1l5EwMoDgVXi1H9w6DIbFvlmQamA8mjk7D+aVZN0acOB8mB/esxW2ToAJf4WB/eC2J+CJsLFjwM7s5KOhTcySVf4L/w3HdIGzY/f0JrwZBlY7wUnh+efh+fC+/Kz0hMJyH5thcx2oBcUPjF8EF4V/ju4jkRbQLByf6BMGL8PL8fZwNpy7FbauhJXRoP9v4crwtYhmesf6CD4KILgELomerwO1wkD1U/DPop4h5nl2q8Z4XThoOkwPx8yFua2hdXTMZXD5RtiYC7kJ/n5mAfvWhAOaQOPmcHj4c5H/Zkehvw8TYeIaWBMe4ZtB4c929Cjq2eKxlIokSZIkSdJeJE5wNfvL/IzuH+FHkpRweAfeCSho1lkZUguMvwPvHAfHxrlceSL8O7z/EXgk2Z5zIXcbbJsEk2pD7Zhhle6H+8Oxm2BTvAzjdM01HsbHvKFQqHlpMzjkK/gqHBOvEWF4bQts2Qgbb4ab4z1/7PiiAuO3QN9wbH727m6vOx7+FQ12NoOfxI6pBXXCTx4EFNTlLvR6dISO4fU5MAfIDq+dAWeG1x6Fx6L3/Rp+HV57B95JtM+joU04bgyMCc/vTimVLnD2vTAEdr5xRILsZ9hZKzu8N16ZmLpQYzNsDsfcDYOj9fyPglanwmnRe8KM9RfhxUTrAsyBOQEE58H5kdNZE+ClAIL5MB/YP9kcsUrYfLPKKBgVjlsH6xpCPSAr+vOxFtbOh/mLYfEKWLEaVkcblCY6ciH3HDgn0d7DJqNJAt/ZtaF2nL/viWRFxif95IAkSZIkSZLKuXjB1Wipi9/ClfHui9ZJjpY1KCowXh8akCSodBwcGxNQTbjnSLAvUaAyaxq8G47tB7eWxlxtoV14Pr9USlwXwAXhuAfgb8n2MhWmJJondnyywHhbaBdmq2+DbfEC2amu2x7ah+NWw+om0DjJ9vaLNm6MCdYC8BQ8FV6PlPeoNBfmBhB8C9/Wgjoxt1VaASsCdpZTyf952sV9cG84dzTQvDuB8dAj8PcAgufh+UQPfQQcGd7bHtrHXr8SfhsvwHs9XBdvvvCNgB2wIzbjOlaYFX4WnBWeqw21iwowQ+G/t8U9kgTGAbgZbs6F3GgJl1RK8URfnzWw5mv4egEs+Ag+Wg/rAwg2wsa20C52zfrQICzFkyQwLkmSJEmSpIoqXnC1BhwYZmyGTQtjjYARATtLntSFg8LzRQXGU1BpO2wPM0yT7TmA4DK4NNlk58N54dg34I3SmOsB+Ft4Pl6QLmL/sLlpDuQk28vF8Jtke4mOjw2M14Uax8JxQ+G+aHbyLdA32TxFrfsQPBiOG5SgIWdUb/h9OP5ZeDb2egOoH9akXwpLgH16wA3hPb+Bi+PNOxTuC8ckqkX/Zf6nHpbBMiLZ6CUJjPeCXuH5/jAg3r3RTPVWcFTs9Xfg7Wg29G3w5/DPf4b+sePDciTh6/dL+GWiEjJLYUn+GwEFJVxSDYx/AB8sgAWxR/TNjdhrqQbGAWLfkDkbzn0dXh8Eg3rA9ZfBpWdDl47Q8Whoczg0bwD1idPAFaA7dA/Xfwfejr0ebdQaQNAEGjeDQ8LrG2BDSY8acGBRzy1JkiRJkqRyKlFw9Sn4Z3jtGDgmeq0u1AizkMfBuOi13QiMV2kJLc6Cs26Emx6Ch8LAeKI5ogGvmnBAsslrwgHh2OWwvDTm+hg+Dt8k6AN9kh1h3eP8MjUJ93IwNEq2l9jxyY4dsKMf3JbKPMnWDUt6JAr6xmoGPwnHfwafxRsTbah4K/T7Hr4PIJgEkxLNG/20Qtj0NerncGJ4/S64O3otGhhP5YidOyxLsgN2nAFnxl4/Fo4L720JLaLXjoFjAnY21owG52+Gm8Ov85u7ZgGcAacH7CxxcygcdigctgN2bINt8RrjfgvfBsQv4RLrVDgtYGdWfrJxyUqpXA89roceFLM8S7q8Bq8lauz5EXwUvgkVQLAYFs+DeeEnEIrzM5DosM64JEmSJElSBksUGI8G+EbCyOi1aCbwKdApei2VwHhzOHwYDPsUPs2F3OIEJqN73ggbU3nGMEN3M2wujbmijTWLE6xOtJdtsC2VvaSyxhvwxrFwXCrzFLXuWlgbsLMJJAmyrWNkheUsNsCGBGOyP4QPo/veABsOg0OTTfwBfBCws8xGft3qAtEM/thM5ZIGxmvCActgWcDOcjJNoWn0+knQIbw39hmehmcCCC6Fy6KBcYD+MCA/MP5A+NrlQE4AwVC4LzLH0wEE42F87N7Cv3sx9fv37wpdO0LH6NgwM38avJvkZS52g8piyv4KvvoKvmoa8zqG5w+H5uG5cB8toGX+qSrxJg1/d02FKeE94Zs67+zMLo97XyjRJwYkSZIkSZK0F0kUGAcIA5YbYMMBUDM8Pw/mBRDMg3mx9xQVGO8FvbbBtmjwcQtsWQALJsLE4fBAtPxHcfccTzhfssB4SeaK1jIuSdC1uHsJx2+GzWFG+o1w0/XQ42zokl+KIuV5ilo3fM71sD6VeWFnyYpEbwSEwuzl8IgEhxOKZprH1OfO/ga+CSCYATNi74sGxg+DQxtDk9gjOneC/Z4SXv8QPgT2iXctWv/8CDgyF3JXw2pg39jAOEBX6Br+OQyefwff1YFa4fmm0DT8+3Mi/Dy6r/Bn8yhoFZ6bCBMDCCbAhOjYkTAygGAk/COVcivF/VmOagktLoRu7BqQLngdYt9EiBMEj3sunrEwNoDgWrg2ek/4sxj7Rl8sA+OSJEmSJEkVQLKg6FVwVXg9rGt8MpwcnusNN8bekywwfhqcGpY32AAbboM/t4KfEakBXdQcRe05jv3C8d/AN6UxV5gxvgW2pDBHQrsbGE91fEnnCQOv+UHuhA1UIwoyxtfC2kSDxsO/okHWH+CHospU1IQDwuz9t+Ct8Hz05/Ma+F3sfSWpMR41Gh4Px0Qzus+Cs8Lz0YD26/B6AEF+6Q+S7aEeVF8OywMIroKrYq+PglEBBNNheuR0VjhnNMs6bPa5ETbWhRrh+U/h0wCCy+DyulAjXn3xomqMR49ErxNAH+gTsLN8UPQ1iQbko30Koq9PcQPjbeDoPMj7Gr5uCk2j38cwUP4D/JCscayBcUmSJEmSpAqgiKDovj/CjwEEn8AnAGNgTBjYjga5QsmC2m/AG+G1aHZsrLAOd1GB8fzSH0kDtCfA8eH4eGUj0jHX5/B5eL4kDfnKe2D8M/gsHPtT+GlR8zaHw8PxOTAr3piL4KJwTDRA/hQ8VdT842BcwM7a7uHrHgaNN8LG6KccQukKjNeCOt/AN1tha/QNogvggsi9VQGaQOPwZyzMjE62h9EwOqCg8e0uP5NNI1njZ8FZ+aerhXNGg771oHpYAqcHXA/QDA4JxzaCgxM9I6SnlMrz8HwAwUJYGD1/ODQP564H1aPXdjcwPhH+HbCzqWljaBK79/vg3qYxZVtiGRiXJEmSJEmqAIoKig6FoeGYk6DDRtgYQDAKRsUbnywwvhpWBxBsha1ApXj3t4KfRbOHk+05gOBoaJPs+e6GweHY++De0phrDDwXnu8GFyabI5nyHhiPNmS9Ff5U1LxhHesAggfgb7HXG0HdsNnm5/A5sE+YWR1A0Bk6J5s/mp2dnx1eZSWsDCB4Gp6Jd0+6AuOwszlmO2gbPXcFXBFQUIe9wEfw0Uj4R/h1oj38H/xfeG0BLJgG0z6ED+fAnEWwaDksXwNrwk9ezIbZQFa0MWxsE9n74f4AgkWwCKj0J7glgOAD+CDZ80F6AuNhTfZH4O/R82GT1Hj1/XcnMN4NLgwgWAfrasCB8QLjUVtgS7wjWuop0ZjRMHp3Xw9JkiRJkiSVA0UFRVtAs7AcxnyYH44/Bo6JNz5ZYDzMBM/Pzt4nzu08An8vTmB8DDyX6NkaQr0wGB9A0Bpal8Zc0WaKH8FHFN2Yct9kz1VeA+Onwxnh2O/guyJqmFeLZtLHBpDhf7WgAwjOhi4AR0GrsCFrfiA37muVr1JYT/wNeOPX8OuigurpDIzH0wOujxfsvRquiX6aINEe7oS7oj+T8Y5cyP0RfgyD47+Bi8Os9Pw5C71mB0OjsL72LdA3LI/SB/okK6NSnFIqC2DBqXBa7OsRzQqPfdMoLPOyGL6Iva+YgfFKQJVv4dsAgr/CQICiAuNFvc7JjkRvvEiSJEmSJClDpBIUnQSTokGh9+C9RGOTBcYXwsLwWryM42iGcXECWvmBsEJ1yhtCvffgvXDMq/BqKc5VNcyKDQPssaUh8lW+Aq6YDJOT7aW8BsYBpsP0cPxsmH0oHBY7pg7UegVeSfaGw/lwXnh9EkyKXou+OXIvDEm2n2EwLGBnA9Kw7vdSWELM9zBU2oHxP8IfAwi+h++TjUu0h/rQYDpMHwEjesONv4GLT4NT20HbptA0v3xRFsAr8Mom2HQj9G4JLQJ2zVQP9YcBATvrwwfsrPleG2qno/FmeOQ32CzkGvhduK+GUC967QH4WwDBK/BKotcnhcB4ta/h6xhsCNgAACAASURBVHthyPvw/jJYFv7dKyownoilVCRJkiRJkiqAVIKi0ZIVATsb9iUamywwfjvcEZ1nIvy7H9w6CAa9D+8HEIyDcak239wAG3IgJ4BgLswdDPfcCn8aBaNWwapw3HfwXaJayuma61Q4LQw6Buxs8DcaHr8V+v0Z+j8BT4QNFf8L/93d70VJxqdjnqbQNMzMDdhZamI8jB8Af7kV+o2Gx8NyJgEE82BeLagTnaMmHBBmem+DbbH1yhtB3fBnYDtsbwVHJdrPUdAqXCv8RMIdcGei8aUdGA9/xr+EL5ONK2oPqWgBLcN64u2gbfhznGB45eibO9GGoUWtUZIg8bPwbADBHJgTcynrK/gqgGAQDIq9L9XAeEOoF57/M/Q/A84MrxkYlyRJkiRJUkIpBkWzw5IK+ZmwVRMNLCKovd8MmJEo4/R9+E8dqJVqYHwNrDkUDlsMXySaczEsPgKOTOX5SzrXZXBpWIM90ZEHecNheFF7SbRGScana55m8JPZMDvZcwYQvAlvxmYJAzwNT0cCtEPjrRFmXoc/FyTIAIed9buj6x4OzRONjQbGj4AjW0DL2OMP8IfdDYyGjTPDZrWJpCMwHhWWkVkKSxONeQKeDNf9Fr49Hc4oat4SBsazf4AfAnatMR/9PsSr7Z9qYDz6xkgzOCQ6h4FxSZIkSZIkJZRqUDRs2FdUaYuigtpA1T/BLTkwaxNs2gpbP4VP80urVE1ljtg914bad8JdC2DBZtj8I/z4Hrz3R/gjyWtUp3UugEZw8FC471P4dBNsCutBvw//uR/uT5b9nCmB8XyVLoFLXoaXl8Py7bB9G2z7Er4cA2MSBV2jnz74Fr49AGommH+faI3y3nBjoo30ht+H46bBu8k2HQ3IpnIU4/UA2OdL+DKA4HV4PdnAdAfG74K7AwimwtR412+BvuGaYUZ/HuSNh/Enw8mJ5i1JYPx4OCG8tyt0Dc83gcYrYEUAwXSYHu/eeEHwsKZ6K/hZeO5s6BJQ0LegUENfA+OSJEmSJEnaq6QrIJzuuVQ2+kCf8Pt4DVydbGxJA+Od4KSfw4ktoFl+iZhqQOWW0GIcjAvv6w8Dku2juIHxztC5I3RsCS0aQV3ym9fWhtpXwm/DTyoMgttj770Grg7L/DwBT9SCOhPgpehzLoWlz8Pzt0Dfs+HcTnBSGzj6cGh+GBzaGJo0gcaNoUkjOLgpNG0Oh7eAlq2h9XFw7C/hl53gpHDdsJFoHuTVhAMAWkKLsNfAVtjaHtone32igfEwmJ7/Jkk2UC18jngZ+okC41tgS7JjG2wL7ytqbFjKRpIkSZIkSSp1BsYVNQ/mBRBshI11oUaysSWtMT4GnisqmL4SVjaA+sn2UdzA+FgYG7tOmEEdHj/Cj3XhoMhtWYPhnvB6DsxiZyAfgK7QdRq8W5w3Coo6noVnw/nD78vH8DFAL+i1DtaFe0/2Jka8wPgT8ESidQfFqVOeKDCezudtDE1S+f5JkiRJkiRJJWZgXKFOcFL4PXwCnixqfEkD4/3gtmSB0o/h43g1s2MVNzDeD25NtOYO2PEOvN0Gjo7ecxgcGpYlmgtzE2U3t4Kf9YAbnoZnPoKPFsMXq2BVmD29HbbnQm5sID7eEe6hPjT4EX4MIBgODwDcB/cG7GwQ2g0uTOX1iW20OQFe2gSbwusbYeNT8E/i9D3Y3VIqkiRJkiSp/Mgq6w1I5UkY6FoLa2tD7fIyl/a8l+Hlc+AcgPZw/EfwQbLxzeCQE6EjQH528y5B07pQ44D8IPJCWBB7rREcWh1q7Af7V4EqVaDKVti2BBYvgIWp7Dv8ucuCKkBuCrfs2wIOqgr77wtVK++8j/WwYQ58AWyKd9MZcPpAGHQ6nLUOVqWytxRlsbOcSVbMsTU6pg0ctR42LNq5x+yhcO/D8MgS+DLZ5MfAMQAfw/yYOQGy6sH+P+x8DTeRIPBdG2rfBXcB/B5+X/xHlCRJkiRJksoRM8YFhTO7X4PXyno/5Vh2WW9AkiRJkiRpd6T0UXtJ2ttNgJcWwoIW0PLc/EzxjbCxtxnByeSV9QYkSZIkSZIklZAZ4xVXbE3rTbDpdDijrPclSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSXuJrLLegCRJkiRJUqZq06bNf7Kyso4r632oQvpk3bp1xy9atGhrWW9EykTZZb0BSZIkSZKkTGVQXGXo6Fq1ajUo601ImapyWW9AkiRJkiQp0+XkjCrrLagCOfXUP7Jq1Xqys7O3lfVepExlYFySJEnSXs9SB0rBWuD8WbNmvV3WG5EkSaWvwgfGg+CFoKz3UJa+/PKLqc2a3farst6HJEmSVJoMiisFtYC+gIFxSZIqgAofGK/oVq9ee9LixfdMMTguSdqbmBmqFJgZWkHljJpY1ltQOTR83OM889YEsrKy/J0gSVIFYfNNFQTHy3ofkiSli0FxpSDMDJUkSZJUAZkxLsDMcSVn5qVSYOalyqVRo3LKegsqh8aNG85bbz1jZqgkSZJUgZkxrgJmjisRg+JKgZmXkiRJkiQpY5gxrkLMHFcyo3KsyaldjRv+OG89Y01OSZIkSZKUOcwY1y7MHJckSZIkSZK0NzNjXHGZOS5JkiRJUumZM2cx3bsP4aijmvHEE/3ijrn00jv57LNlzJw5gn32qbKHd5hcuH+ArKwsateuTseOR3HzzRdSo8Z+ZbqfUPPmjXjhhUF7fC+SMoMZ40rIzHFJkiRJkkrX558vZ/78Jbucz8lZyLJl35fBjopn2rSH+OCDf/Doo31ZvPgbBg58osz3k5MzipycUSUKii9d+j3nnTeAbdu2p29zksoVA+NKyuC4JEmSJEmlp127Fowdu2u7nueem0ybNj8pgx0VX3Z2FocddhDXX38206fPIS8vKOstldjatRtYurT8vzEhafcZGFeRDI5LkiRJ/zNn8QLaXdeFq4b0TTjm0jtvpN11Xdi2fdse3Flqwv2HR8cbL+LWkfewat2atMz/3eqVdB1wLXlB5gfGpD3hwgt/xZtvfsjq1esLzq1Y8SMzZszhnHN+UWjsBx8s4NJL7+T442/g7LNvY+bMucDOMiLt2l3HjBn/pVu3gZx4Yk9uvPFB1qzZkNJ1gG3btnPffc/RqdPN/PKXvfnznx9lw4bNhe5/5ZUZnHzyzQwb9nzcZ9m6dTv77luV7OyshPds357LI4+8RJcut3H88Tdw5pn9ePTRieTl5QEwbtwUOnW6mXXrNgHw8ceL6NChN/PmfcUJJ/Rkxow5Bett2bKNjh1vLHgd4kn0mgHk5QU8+eTrnHNO//y93FqQvR+WZTnxxF60a3ddwT1F7T/ec69atX639i6pdBkYV0oMjkuSJEmFfb78K+YvWbTL+ZyF/2XZ9yvKYEfFM+2h8eSMmsjYgQ+xcu1qBjw+LC3zNqhTl5fuepTsrKyk45Z+v4LzBlxXLt88kPaktm1b0LRpQyZMmFZw7vnn3+akk46hQYM6hcZu3LiZAQOuZNq0B/nVr9pwzz3PFrr+yiszGDXqj7z88mBWrlzH0KFjU75+111Ps2DBMsaO/SsTJ97D6tXruf/+Fwrd/5//zOfVV++hR49zCp3Py8tj3rwlPPLIS/zmN52S3nP33c8wZcon/N//9WLGjIcZMuQ6JkyYzsiRrwLQrdtJHHZYQx57bCJ5eQH33fccvXqdxxFHNKVTpzZMmvSfgrknT55F7do1OOGEIxK+vsles+HDx/Hii9O4886rmDHjYR5+uA+1a1cH4Mknd9Z9nzlzBDk5owruKWr/8Z77gANq7NbeJZUuA+NKmcFxSZJ2lZu7nTfffJo77riEXr1+Ts+eJzBgwHksXbogrevMnDmR/v3PoUeP9rz00ggGDOhKEOSldY2SWL36u3K3J6m0tWvRmrFvv7rL+ecmv0ybn7Qqgx3tnkYHNuDaLpfw4YJP9miW99oN61iaAW8gSHvCJZecwvjxU9mxI4/Nm7fy8sszuOSSU3YZ16lTG5o1O4gvvlhB9er7snz5SnJzdxRcv+GGcznggJrUr1+b7t1P5913Pyl0f6Lrq1evZ9Kk/9Cv36U0aFCH2rWrc/nlpzJ5ck6h+6+88jT2378a1avvW3CuQ4feHH98TwYMeIzzzuvADTecm/CeNWs2MHHiTPr3v4wWLZpQuXIljjqqGT16nM2LL74L7GzkOWDAlUyYMI2HH36R/fevVhBs79btJKZM+ZhNm7YA8Oqr73H++R3IirwR16FDb9q1u4527a5j2LDnE75m69dv4vnn3+avf72So48+nMqVK9Gs2UEcdNCBCb9Pqew/0WuVyt4l7VmVy3oDyixhcLxZs9t+VdZ7kSSprG3btoUHHuhJXl7AxRf35bDDWrNjRy6LF8+hatV9i54gRatWfcuTT97OtdcO5phjfkVe3g66du2VtvmL6/vvl/LggzcxcODzVKmyDwB16jTgrrteKrM9SWXhwl+dyS1/H0yfbldTp0YtAFb8+B0z5nzEndf0ZcZ/PyoY+8GCT3hg3ON8sWIp9WsfyJ8v78WJR7ZlzuIFdB/SlwdvHMTwcY+z/Idvad/yaO64+g/Url6zyOsA27Zv44Hxo3ntg6lsz91Ox6OO48+X96L6vvsX3D/wt314YPzjnHlCJ05v33GXZ9m4ZRP7Vt23IMs72ZwAazas486nHuS9ubOoW7MO53U4nREvPcXMES/y2bLFdB/Sl2kPjWe/qtUY+/YrjJ40jvWbN3JBxzPo+5udJQm655eiObHX+QDkjJoYd79Xn3kRZ97anftvGMAvWh8LwJZtWzmt7xXce30/TjyybWl8e6U96owzjuehh17knXdms3r1eg4+uB5HH92cOXMWFxr30EMv8sorMzjqqOZUrVoFoKCEB0D9+v/LMK9XrzabNm1N6fq3364iCAIuueSOXfa2fXtuwZ+bNKm/y/Vp0x5iv/2qJny26D3ffPMjQRDQrFmjQmMOOaQBq1atJy8vIDs7i2bNDuKUU9rxz3++waOP3lIQPG7XrgUHHXQgb789m3btWvDJJ19wzz3XJt1Potds+fKV7NiRx09/enDCvcdKZf/xnjvVvUvas8wYV7GZOa6iLJ6zgOvadeG6dl24/tiz6dPpYh7o+Rdmvf3ebs03c+Jk+p/zO3q0P4c3/vmvEu9ra/479Ims+m4lo/9yP3/sfBnXtz+bm076Da/849mk9yRaoyRzFdfq71YyoOu1BHtBoxspU0yY8DDbtm2lb9+RtGjRjipV9qFatf044ojjadDg0LSts3btSoIgj6OPPonKlauwzz7V0jb37tiwYS3ff7+0TPcglQdtW7SmacMmTJj2RsG559+eyEnHnECDOoUzDjdu3sSAK3sz7cEX+FWbE7jn2RGFrr8y4y1G/fEeXh78GCvXrWbo2JEpX7/r6YdZsGwxY//6EBPvGc3q9Wu5/4VHC93/n/kf8+o9j9PjnMsKnQ+CgEXLv+KRl57mklPOSXnOgU8MZ/3mjbw6+DFG3zqUaZ9+EPc1+vqHbxg6dhR3/a4vk+9/ll8f/78SC0/221m6ZeaIF8kZNTHhfg+oUZtObU5k0n/eKbg+edYMateoyQlHtIm7rpRp9tmnMuef35EJE6bxr3+9Gzdb/Ouvf+DJJ19n5Mi+3H9/T84+++e7jAlrggMsWfId9evXJjs7u8jrBxxQA4B//3sIOTmjCh1Vqvwvp3J3spuj99SrV7tg7dhna9CgDtnZWQVfT536Caec0pbRoycVGtut20n8+/+zd+dhUZbrH8C/g+ybCAOICuK4i8KZdzKaMk1cEhMyxUIyQ01c6qjnpKbpyZPIcc8FjxqmcUpT01BxOampmRJpP8DCpSj1gKCgbLIqMLy/P5CREQYGFAac7+e6ui54n+d9lhmY8J577udwLA4dioWPjxxt2thonbu2x6zyvvocsKnr+h/dd0PWTkSNj4FxahAGx0kX4Wf2YvPP0QiN+hQvjByKqPBIRP5zbb0Ct9npdxD58Vq89te3seHHKAx8Y8QTW9/tlJtY+FoISkse1rVUlZVh1eQPYGPfGot2b8DG2H2YF7kKnfp0r/f4T3IsXbRxlmLJ/i2QGPGjeERNQaUqw9mzBzBixGQYG5tq7VdWVor9+zdi/vwRmDbNG/PmDcehQ1vU2VvXriUiJESBy5fPITQ0CNOnP4ePP34dyclX1GMsXfo2AODdd5UICVGo77l/v+JQqoKCXGzc+D7efVeJ+fP9cOTINoSEKFBaWlKtb9U5q7bHxETjb3/zwe7dFYGq3347j9DQIEyb5o358/1w6VKs+v5ly4I11lN1zMp5nsS+iVqCsYNexd7TR6AqV6H4/j0ciDmmEWCuNFCuhMzFDVdvpsDawgppmRkoUz3Mwpz26luwt7WDk50Dgl8OwA+/nNO4X1t7Tv5dHDl3CvOCpsG5jRR21rYYN+Q1nIjTTEgYP/Q1WJlbqjO+AeDFvwbgmSl+GBs6A2MH+WPaq+N0GjMn/y7OJv6MmaMnQtraHo529pjsN7bGx8eklQkkEgnSs+7A0twCHu5ddXpcH11vwIBX8P2Fn1B0ryKod/DHExj14jCWIKCnypgxLyE+PgnZ2XkYMuSZau2VJVNu3cpCXl4Rdu48Wa3Phg1RKCy8h+TkdGzb9t9qwXNt7c7O9hCErli1ajcyMrKhUpUjKSkV588/2dJwUmlrDBokICzsS/zxRypUqnJcvHgdmzdHY/z4lwFUZHP/4x9b8frrL2HRomAkJd3A/v1n1WO88spzuHjxOg4ciMHo0QNqna+2x8zZuQ369/dCWNh2JCVVrOX3328gLe0OAMDW1hIAcOHCVeTlFeq8/trUZ+1E1PhYSqWJqVTlWLz4v1i0aLjGO4lFRSVYseI45s9/GWZm1Z+WvXsTEBDwMBvim28uwN+/D0xMWmmdq7DwPubM2YeZMweie3fnGvsIwmN97JCv4lQniUQCmzat0Xfoi+j13F+w5M1ZOPX1QfgEVv8HY03uZmZDLBfhNcAbxibGgMmTe9kquJuH2ymadS1vXk1BZloGXn47ALb2FdkALp1c4dJJ94/XNcZYRNT83L6dgvv3iyCT9am13/btYUhOvox33/0ELi4yJCdfRkTEPKhUZXj11WnqfmfORGHGjPUwMTHF1q0L8eWXoVi48CsAwLx5kVi2LBj//ncsTExMce1aosYcn3++CCUlxfjXvw5CFEVs3jy33vu5cuUcli6tuB8AiosLMX78QrRr1wX79oVjx46l+Ne/omtcT2Ptm6glGOY9AOFRkTiV8BNy8nPh6tgOXp17IvGaZjApPOo/iI45Ds/OPWD24PdGo7xBG6n6a0c7exTdv6dTe3r2nYryB4v/Wm1tpWVVyh84uVRrPxO+F4XFRfj4P2sR9cO38H9+MExNTOscMz27ImjU0flhKQGbKgH3qpztpQid+D7WfbMN27/bh/lB0yHv6lFj36oeXa+iW2+4ODjhZMKPUHTrg1+uXsHSyfV/rSNqziqCrgq4uTlpZGlXcndvi8BAH8yZswlOTm0QGOiDmBjNvwk8PTtj5MgFuH+/FL6+3pg8eYTO7cuXT8GyZV8hIGARSktVkMnaYebM0U98n4sXT8SGDfvw7rtrkZtbgA4dHBEcPAwBARUhhs8//xZZWfmYNGk4TE1NMHNmAJYv/wpKZS84O9vDxsYSAwfKceVKMgSh9jfb6nrMwsImYd26bzB9+hoUFhbD3b0twsIqypt07NgWo0b1x8yZ4bC2Nsfx46t1Wn9t6rN2Imp8DIw30P79vyA09L8694+LqzjNOD09D+fOXdcIigPA9u3ncf9+WY1BcQAID/9eIzAeHv49fH17aQ2MiyKwePF/kZtbjE6dHLBq1XfYv/+XGvuePfu+zvsgehxWtjYY8uarOP3Nt+rAeGlJCfau3Ybz/z2NstJSePZ/FuM+fBcW1hX/uFr6dsXP57vKitqTEXGH8Nv5X7Bn7VbcvJoCOycHjPvwXXgoBVxL/A3Lgmcj/MxemFlWlBmovPbv2Khq61kWPLva2A4uTjA1N0PU+kiMnTtVPU5VBbl5+CJ0PS79GA9bBzv0GzkUBzZtrzaHLmPVtf+Tu6JxZNseFOcXov/oYXhjdojW64/uv6y0DIe27MS5I6eQeycbrR3s0O+1lzF80hswMjJS95+1MRTfrPsct66lwNmtPYI//hs69uxSz2eXyPCUlpYCAFq10v7nVEFBLmJjD2HOnK3o0KEbAEAm84Sf31RERYVrBIhfe+09tG5dEfjy8QnE+vUzUF5ervHx55rk5+cgMfEsPvzwC/X9fn6TsW5d9YBWbYYOHQ9z84eBLbl8IEpK7uHmzauwsLBGZmYaVKqyWvfblPsmai5MjU0wqv8w7DvzLbLycjB+aPUgUuqdW4j8dg/2fLwRMhc3xF6Kx9GfNQ9pKyguhKVZxd8KyRmpcLJz0Cx/oKXd3qbizffDyz5HW3tHreuUSGr+nXK0s8fSyR9gzD+nYVP0DswcPaHOMSuzuG/nZqm/zsjJ0jq3r/dLGKzoh/VRn2Pup0txfNV2rX1rW2/AAF8cjj2JW1m34SNXquu6E7VUffrIEBcXoXFtyZJJtfaZMycQc+YEqr8PDPTR6D98+HO1Bmhra7e3t8WKFVN1XmtN13RpNzc3xezZb2D27DdqvG/SpOGYNGm4+vtXXnkOr7zynEafpKTUahnX2uar7TGztDTH/PlvYv78N6vdBwALFozDggXj6rX+uh6XmtZORPrBf3E00KuveuH8+bk4f74iS+H06b+pv6/pWqUbN3Igk0k1xrp58y527YrDX//6EsrLRUyc+CUyMwtqnb+0VIVWrbQ/fatXf4fExJtYuzYApqbGmD17MM6efb/G/4iaUvuunZDxv1R1OZUvl2zAjd+u4aNd4Vh6aBvyc+7i69UP61fOi6z4SP+/Y6MQEVdRe7K4sAjjF/4V6898DflLz2HH0n9Xn0gHNY1taWuNKcvn4ZcfzuFD/0k4su3rajXJP//oExTnF2Lpoa2YF7kKl2Ljaxxfl7Fq2/+d1FvYtTIC7yyZjdUndsDbd2Ct1x+1PWwDfvn+J7z7yT+wIWYvQpbNw9l9R3HwU81MzDNR32LG+n9i1bHtsG/riC9Dw+v5SBIZJgcHF0gkEqSm/qm1T1bWLYiiiHbtZBrXnZ3dkJ+fDVF8mA3auvXDesQWFjYQRRGqKmUWtMnOTn8w5sOa5hYW9a9X6eTUQeP7qKhwzJ/vh8OHP0N6ejIAzezW2jTFvomakzEvDUd80kVk593FkGderNZepnrwUf6s28grKsDOk9HV+myI+g8K7xUhOT0V2/67B37PD9ap3dleCqFrb6zaHYGM7EyoylVISr2O87/VnBRTExtLK3z45nvYfnwfriT/WeeYrk4u6Ny+I8KjIpFXmI+0O+n44ujeGse+lXUbF/68DIkEcHV0QUlpqfqTKbaW1gCAC1evIK8wv851vvLcIFy8/jsOxBzH6AG+Ou+PiJ4ed+8W4uuvTyErKw/+/i/oezn10pLXTvS0YmC8gSQSoFUrI3Vw2shIov6+pmsAMGHCl5g5cw/i42+gX7/VUCiWobxcxOLFRzBu3LNo1641jIwkePVVL6xa9R0AwMdnHXx81qGw8D58fNYhO7sISuVK3LtXipdeWgOlciWUypV45pll6rWFhv4X33//B7ZsCcLZs1dx5oz2f7ATNTVVWRmMWhlBYiRBfs5dnDtyCkHzpqGNsxTWdrYYMu41xJ2o/ZBO+UAlXGRuuHk1BRbWVshMy4Cq7MkFUfr064uwA59hQMBwHPviGywKmIrUpOsAgPzsXCTG/B8CZk2ErUMbtJba45V3Ahs2Vh37b2VSUZMzK/0OzC0t4O7RtdbrVRXk5iH20Am8ueBddOjWCa2MjSHz7AG/qePwQ9S3Gn1fey8YraX2sLS1hk+gH24kXdM5+EVkyKysbNGzpzeOHfuP1j52dhWZlhkZyRrX79xJRZs2zlozOOvDwqIisJSb+/DgqJychwdCVdY/Lyl5+MZccXH1N+Cr1um9cycV334bidmzP8X06avx/PN+9VpTU+ybqDmRtrbHIMULCBjgCxPjGsoftO2AQB9/zNn0L4z/19/wvEf1coaenXtg5IIQvPWvv0PZS8DkEWN1bl8+ZR6MJEYIWDQVL7w3Gv+MXKsOPuuqv9ezeLlvfyz+zzqoylV1jrk8ZB6y8nIxdM5bmBexHK+9OAwAYPzIp0pU5Sos/mI9XngvALtOHsSSSe+rX286tu2AUf2HYWb4xxj90TTUxcbSCgPlz8PC1BxC19712h8RPR2GDZuDnTtP4JNPpsPS0kzfy6mXlrx2oqcVS6k0oc8/fwuLFh2Gt7c7hgzpgaFDw7FixXH8/HMyVKpynDr1O/Lz76OwsAR5ecX45ZdUnDw5EwAwYMAa9dc//jgHzz+/ErGxc9Rj9+27XP119+7OmD69P/Ly7mHVqu+wcuVrTbtRolpcT/wdbj0qynRkp1fUr1w8tvrH/ctKyypqitcgKvw/iIk+js6ePWBiVr1G55NgaWMF/6lvYlCQPyLmLceWD1fg472bkJ2RCQBwcntYU9PC2rJhY9Wxf3tnKSaGvo9v1m3Dd9v3IWj+dHSVe2i9XlXWrdsV2ZqyjhrXnd3aIT87V+MA1NYObR7uxcaqIluzrAxGptoPEySiCkFBH2DZsgnYvHku/PxC4OLSCffuFeL33+Pg7OyGdu06QxAG4csvwzBx4mK0aydDcvIVREdvmcxJZAAAIABJREFUxssvj38ia3ByckX79p0RFRWO4OCPUVSUj6NHv1C3u7i4w9zcEj/+eAgvvzwepaX3cfz4l7WOWZmxnZV1C61bS3Hy5E6NdktLWwDA1asX4OraA1ZWthrtrVtLG33fRPrUR9YDcRGHNK4tmTS71j5zAkMwJzBE/X2gj+Z5K8Of80HAgOHQprZ2e1s7rJg6X+e11nTt0T3UNiYAdHJxxRfzP1F/f/DH7+BsL4WRkZHG+JaOLohavFnrOAvGvYcF496rc22VklKvMVucqAYNLWvS0sTGbtT3EhqsJa+d6GnFwHgT+/33DEycqERGRj7atbPD4MHd0bWrEzp0sINUagV7eyu0bm2B6OhfsXVrLNavH1NtjNzcIlhYaAasjI0fZl69/rqA4uJSTJu2E1Onvoi+fd3Rr99qjf7FxaWwsDBRf8+SKtQUcu9k4+TuQwh8UCfb5sGBlMsOfw77ttprYlZ1J/UWvo3cg4/3bISLzA2XYuPx89GKGp3GphU/0yX37qnreRcXFD3Wmq1sbeA7YQzWTFsIsVyEpU1FHc27mTnqOuC5t7XX1KxtLF327+37EhSD+yFq/ef4dO5SrDq+vdbrlewc7QEAGcmp6NS7u/r6ndRbaOMsheSRcw6IqGGcnNywcOEOHDwYgXXr3kNeXhZMTS3g6toNb731DwDAxImLsW/fBqxd+y4KCnLh6NgBw4YFY8CAgCe2jpCQ5YiMXIQ5c4aiffuu6N9/FP73v0to1coYRkZGmDQpDF9/vQqnT++FnZ0j5PKBuHz5nNbx2rZ1h49PIDZtmoM2bZzg4xOIxMSYKu0d0b//KISHz4S5uTVWrz5ebYym2DcR6c/J+B/R3VWGtg6OuJL8JyIO7sSrLwxttPnuFubj6PnTyMrLhf8LQxptHiIiIjIcDIw3kEKxTOP7F1/8pFqfqtdCQvrhrbeeRVZWIdzc7HHixG/o1s0JzzzTEc8807Havb6+Hhg0qDvu3y/Dn3/eQUlJGaZP34Xhw3sjIuIspFJrjf5VD+YpLVVhzpwoXL2aiYAAOUxNW1ULfCsUy3Do0HTY2Vk0aP9EuhJFEQU5d3HppwTs//cXUL7ig74v9wcA2DtL0VXojd2rIvDGnCmwk7bBzaspKMjNQ49nvWocT1VWUaMz69ZttJba4+TOhzU6XdxdYW5pgR8PncDL40ej9H4Jjn+5T+vaLG0rfo+uXrgC1x4yWNnaIPWP/+HC97F49uUBkLZ3RkFuHs7sO4oez3pBYiSBYwcXtOvshqjwSAQvmoWi/EIc0zJHXWPVtf+sW7eRk5GJTr27wdHVBaUlFTU5s9Pv1Hi9qtZSewiDXsCXYRswcfH7aCdzRfKVPxG9eQdeHj9K9yeQiOpkb98Wb7/9kdZ2U1NzvPHGbLzxxuwa22WyPoiIiKv1Wl3fu7h0wvz5D7PEf/zxIOztndV/H3h59YeXV3+NOYYMGad1fgAIDJyDwMCHn07z8dEsGzVu3AKMG7dA65qexL6JqPlKzkjDil2bkZOfB2nrNhihHIR3Xqn5ILonYdic8Whr74hPpi9UH0JKRERE9DgYGG+guLh5AICSEhWUypU4f36uxmGYCsUynDnzd1haPszs/uWXNNjYmKGg4B5iY69DoXBT93Vy0jwkKze3CN99NwODB69Hz55tIZFI8O67A+Dh4YKCgntYu/YU1q49hUmTlLCxMdeYe8aMPbC3r720A1FT+OuLAZBIJLC0tYasd3e8teA9eDyv0OgzZfk8fLVsExYFTIWqtAztZB0xeuYErWO2de8An0B/bJrzL7RxcoBPoB8SY/4PAGBiZopJYXPw9aoInN57BHaODpAPVOLyuYSax+rYAf1HDUP4zI9hbm2J1ce3w9LWGklxF/HdVwdwr6AItg528HzxWQR98LDu5ZRl8/D5P9dg9tBxaNe5I14a8wquJf5WbXydxqpl/+UqFb5YvB530tIhbe+MSUsqanJqu/6oiYv/jn0b/oO17/4DBbl5cOzQFsOCAzAgQPvHtImoZYqPPwlX1+5wcGiL5OQrOHgwAi+88Kq+l0VEOqirdEhd7foywXcMJvhW/3RrY4ndqD3ZgYiIiKghDP6z9KL4df1OpXlEWlouxo2LxKlTszSu1xQYB4DPPovBkSOXUFBwH998Mxk2NuZQKjXrhQNQX1OpytGqlREGDFiD06f/ph6jsLAEd+4UIDu7EBs3BuLFFz/BmTN/R3FxKX766ToGDOiKvn2X17iGyvWdODHzsTPGJZLXDf5nyBAIgiACQERc8/tHWXNwLfE3LAuejX/HRsHEAOty71mzFce374NEIpkTFxe3St/rIQKqvG4ZSPbxf//7OU6d2o38/By0bi2FUjkCfn4hMDJqpe+lNUt79qzB8ePb+bplYCpfF5pjkJn0b82erdh+nH/PUMOoX1+eghre1HIMGfI+srPz0apVK5eff/45Xd/rIWqJmDH+mH766X/w8HDRuf8777yA+PgbuHw5HdevZ8HTs32t/atmggNAebmI6OhErF0bAJlMirKyigMHTUxaoaioBP7+m3Hs2F9hxPrBREREBsPXdwJ8fbV/2oaIiIiIiIg0MTD+GK5dy8SmTT/g449f0fme/ft/QW5uMaZO7Ydp03bhyy/frtece/bEw8nJBjKZFMDDQzfbtrXF0aOX4exsqzUoXlRUAnNzE6Sn5wEAWrVi8JyIiIiIiIjoSVAoQvS9BCIiqgcGxhvowIFf8cknJxAS0g8vvNBZp3t27vw/fP11HD79NAhOTjbw9OwAmUyK0lIVXn11c433pKfnwczMGMbGRvjtt3Rs2HAamzYFVuvn69sLS5Z8ixkzXtI6f1jYt/j228sAAG9vd9jY8NAaoidB1qcHy8wQERERERkoURS/l0gkL+l7HWSQfikqKsrW9yKIWioGxhvI2dkGa9cGQC53rbE9JKQfTEw063q6uzvgs8/GwcHBCgDQq1dbAMCLL3bBmjUBGn3/9re9ACoO0kxPz4OfX29cu5aFt9/2Ru/e7arN99Zb3nj55V4ah3hGRATB3NxE/f3HH4/AwoW+aNVKAlNTPvVEREREREREjyshIWGgvtfQUgmCkA/AuqyszPrXX38t1Pd6iMiwMDraQM8916nW9ilT+lW7plTWfM+jQfGq177+epL6migCklqqn1QNigOAQuGm8b2xsZG69AoRERERkSFShIzQ9xKIiOiB+Ph4m7p7ERE1DkZJW5DaguJERERERKSdKIrf63sN1OzdFUUxXt+LICIioqbBjHEiIiJ6aoWEKPS9BCJqJljqQJMgCDEAnhdF8fmEhIRYfa+HiIiIqKkxME5ERERPHR6CRTpgZigZtPj4+Bf0vQYiItYYJyJ9YmCciHQWomBNTiJqGZgZqomZoURERERERJoYGCeiOjHzknTAzEuiZoyZoURERNQc8fBNItIngz/OURS/FvW9hpZMInnd4H+GyPAw85KIiIhaOv49Q0RERIaOGeNERPXEzEsiIiIiIiIiopbN4LN9mTH+eJgxTkRE1PwxM5SIiIiaIx6+SUT6ZKTvBRARERERERERERERNSWDz/ZlxvjjYcY4GSJmXhIRERERERERtWysMU5ERERERGRg+EY/ERERGToGxomI6omHbxIRERERERERtWwGXwaDpVQeD0upEBERNX/MDCUiIqLmiIdvEpE+MWMcGNNYA3/wwf49ADBv+ZTGmqJGyz74FACwfPnIRtsbERERERERERERUUvFbN9GJAiCCACH4iKadN4RihAAQHx8PJ9fokbAzEsiIiIiIiIiopaNGeNEREREREQGhm/0ExERkaFjYJyIqJ54+CYRERERERERUcvGwDgRERHRU46ZoUT0KL7RT0TNAQ/fJCJ9MtL3AoiIiIiIiIiIiIiImhIzxomI6omZl0TU0jAzlIiIiJqj+Ph4G32vgYgMFwPjREREREREBoZv9BMREZGhY2CciKiemHlJRERERERERNSyMTBORERE9JRjZigRPYpv9BNRc8DDN4lIn3j4JhEREREREREREREZFGaMExHVEzMviailYWYoERERNUc8fJOI9ImBcSIiIiIiIgPDN/qJiIjI0DEwTkRUT8y8JCIiIiIiIiJq2RgYJyIiInrKMTOUiB7FN/qJqDng4ZtEpE88fJOIiIiIiIiIiIiIDAozxomI6omZl0TU0jAzlIiIiJojHr5JRPrEwDgRGTIjhUIxURTFtwD0AiCtz80SieRHQRB06ZoJ4LJEIvkyLi5uG4Dy+i+ViIiI6MnhG/1ERERk6FhKhYgMlZEgCAdEUdwCoD/qGRSvJymA/qIobhEEYT/42ktEREREREREpFfMGCcig/QgU3xE+y7uCJo3Da7dOsHcyrJR5rpXWIQbSdfx1bJNSPvzf35yuXxCQkLC1kaZjIioBswMJaJHscQSETUHPHyTiPSJWYtEZJAelE9B0Lxp6Cr3aLSgOACYW1miq9wDYz+YCgCQSCRvNdpkRERERERERERUJ2aME5Gh6gUArt06NdmEVebyaLJJiYjAzFAiIiJqnnj4JhHpEwPjRGSopAAaNVP8URbWVhpzExEREekLSywRERGRoWMpFSIiIiIiIiIiIiIyKMwYJyIiInrKMTOUiB7FEktE1Bzw8E0i0idmjBMRERERERERERGRQWHGOBEREdFTjpmhRERE1Bzx8E0i0icGxomIiIiIiAwMSywRERGRoWMpFSIiIiIiIiIiIiIyKMwYJyIiInrKMTOUiB7FEktE1Bzw8E0i0idmjBMRERERERERERGRQWHGOBEREdFTjpmhRERE1Bzx8E0i0icGxomIiIiIiAwMSywRERGRoWMpFSIiIiIiIiIiIiIyKMwYJyIiImpZjBQKxURRFN8C0AuAtJHmyQRwWSKRfBkXF7cNQHkjzUNEesASS0TUHPDwTSLSJ2aMExEREbUcRoIgHBBFcQuA/mi8oDgejN1fFMUtgiDsB/9uJCIiIiKipwgzxomIiIhaiAeZ4iPat++CoKB5cHXtBnNzq0aZ6969Qty4kYSvvlqGtLQ//eRy+YSEhIStjTIZERERGSQevklE+sTMHyIiIqIW4kH5FAQFzUPXrvJGC4oDgLm5Fbp2lWPs2A8AABKJ5K1Gm4yImpwgCDGCIIhyuVyp77UQERER6QMD40REREQtRy8AcHXt1mQTVpnLo8kmJSIiIiIiamQspUJERETUckgBNGqm+KMsLKw15iaipwMP3ySi5oCHbxKRPjFjnIiIiIiIiIiIiIgMCjPGiYiIiIiIiIioyfHwTSLSJwbGiYiIiIiIDIwgCDEAnhdF8fmEhIRYfa+HiIiIqKmxlAoRERERERERERERGRRmjBMRERERERkYHr5JRM0BD98kIn1ixjgRERERERERERERGRRmjBMRERERERERUZPj4ZtEpE8MjBMRERERERkYHr5JREREho6lVIiIiIiIiIiIiIjIoDBjnIiIiIiIyMDw8E0iag54+CYR6RMzxomIiIiIiIiIiIjIoDBjnIiIiIiIqOUyUigUE0VRfAtALwDSRponE8BliUTyZVxc3DYA5Y00DxEZEB6+SUT6xIxxIiIiIiKilslIEIQDoihuAdAfjRcUx4Ox+4uiuEUQhP3gvyWJiIiohWPGOBERERERUQv0IFN8RJf27pgXNA3dXDvBytyyUeYqvFeEpBvXseyrTfgz7X9+crl8QkJCwtZGmYyIiIioCfBdfiIiIiIiohboQfkUzAuaBnlXj0YLigOAlbkl5F098MHYqQAAiUTyVqNNRkQGQxCEfEEQRE9PTyt9r4WIDA8D40RERERERC1TLwDo5tqpySasMpdHk01KRERE1AhYSoWIiIiIiKhlkgJo1EzxR1lbqJM6G7OeOREZCB6+SUT6xIxxIiIiIiIiIiIiIjIoDIwTERERERERERERkUFhKRUiIiIiIiIiImpygiDkA7AuKyuz/vXXXwv1vR4iMiwMjFOTEEVR1PcaSL8kEolE32sgIiIiIiIiIiICGBgnIiIiIiIiIiI94OGbRKRPrDFORC2Wp6enlVwud9T3OoiIiIiIiIiIqGVhYJyaTHl5OS5cuIDVq1ejrKxM38vRKjExEQqFAhMmTNDaJygoCAqFAiUlJU24svo5efIkxo8fj9LSUq19KvdaVFT0ROfOysqCv78/kpKSnui4jzIxMXGVSCS3BEH4TqFQTOvbt2/bRp2QiIiIiIiIiIieCgyMU5MZNmwYPvjgA3z11VcoLy/X93IAACkpKXjttddqDHD/8ccfuHLlSrXrcXFxuHHjRlMsr8Fyc3OxZMkSLFiwACYmJk0+v4ODA6ZMmYKFCxc2xXPdCsAgURQ3qlSqm4IgnBEEYZZCoXBr7ImJiIiIiIio4QRByBcEQfT09LTS91qIyPAwME5NZv369Vi1apW+l6Hh7t27SElJqbFNoVBg165d1a7v3LkTcrm8sZf2WHbs2IHevXuje/fueluDr68vioqKcOzYsaacVgKgH4A1oigmC4JwXi6XfyAIQpemXAQRERERERERETVvDIxTk+nRo8cTHzM3Nxfvv/8+lEol/Pz8sG3bNo0SJyUlJVixYgUGDhyIfv364cMPP0RBQYH6/uDgYACAUqmEQqHQGHvMmDE4duwYcnJy1Ndu3ryJmJgY+Pv7a/Q9f/48goKC4O3tDT8/P8TGxgJ4WKokJiYGAQEBUCqVmDFjBnJzc3Vqr2sPlfdHR0fDx8dH/cbD0aNHMWTIEPUY5eXliIyMhL+/P7y9vTF8+PAas+G17QMAdu3ahaFDh0KpVGq8waHtupGREXx8fHD06FGtz18T6CuRSJYB+EMQhF8UCsVHXl5eHqgIoBMREREREZEexcfH28THx0t+/fXXQn2vhYgMj7G+F0CNRxAEUd9raGyLFi1CcXExDh48CFEUMXfuXI32JUuWIDU1Fbt27YKZmRnmz5+P1atXY9GiRQCAyMhIBAcHIzY2Fqamphr3CoIAd3d37Nu3DxMnTgQA7N69GwMGDICzs7NG38LCQixcuBBdunRBeHg4li5diujoaHV7dHQ0IiIiUFZWhlmzZmHlypUICwvTqb2uPQDAuXPn1I9BdnY20tLS0KtXL3X7mjVrcPr0aYSGhsLDwwMpKSmwsLBAZmamTvtITU3FypUrsWnTJvTu3RvXr18HAK3XK3l4eODIkSOVj+cT/3kUxXoN6SmKomerVq0+FgTh9ye9FiIiIiIiIiIiajmYMU4tVk5ODs6ePYuZM2dCKpXC0dERkydP1mg/cuQI5s2bB2dnZ9jZ2WHcuHE4ceKEznOMHTsWe/fuhUqlQnFxMQ4cOICxY8dW6zdw4EDIZDJcvXoV1tbWSEtL0zhgdNq0abC3t4eTkxOCg4Pxww8/aNyvrV3XPYwfPx5WVlawtrbG7du3AQCOjo4AgPz8fOzevRsfffQRvLy8YGxsDJlMBhcXF533YWJiAolEgvT0dFhaWsLDwwMAtF6v5OjoiJycnGZ92CoRERERERERERkeZow/xeLj45tTuYgnni2cnp4OAOjYsaP6mo2NjUa7KIo1BrJLS0t1OpRy2LBhCA8Px6lTp5CTkwNXV1d4eXkhMTFRo194eDiio6Ph6ekJMzMzANA4dNLJyUn9taOjI4qKinRqr2sPlTp06KD+ujKLWiKpePrT0tKgUql0qjeubR/Ozs4IDQ3FunXrsH37dsyfPx9yuVzr9UqVaxBFsVF+HhUKRQ9RFKvXhKnZLxKJ5Jvy8vJvEhISLhvCJyqIiIiIiIiaM0EQ8gFYl5WVWbOcChE1NQbGqcWytrYGANy+fVv9dUZGhrrd3t4eAHD48GG0bdu2QXOYmppi1KhR2LdvH7KysjB+/PhqfVJTUxEZGYk9e/ZAJpMhNja2Wl3tgoICWFpaAgCSk5Ph5OQEIyOjOtt13UNlABoApFIpACArKws2NjZo06YNACAlJaVaRnd99uHr64vBgwdj/fr1mDt3Lo4fP17rdQDIzMyEra2tTm9CNAZRFM9LJJJvAETFx8f/qZdFEBERERERPf2MFArFRFEU3wLQC4C0PjcbGxsXCIKgS9dMAJclEsmXcXFx2wCU13UDEZE2LKVCzUbVoLYuXF1d0blzZ4SHhyMvLw9paWn44osv1O3Ozs4QBAGrVq1CRkYGVCoVkpKScP78eXUfW1tbAMCFCxeQl5dX4zxjxoxBfHw8srOzNQ60rFRZJuTWrVvIy8vDzp07q/XZsGEDCgsLkZycjG3btsHPz0+ndl328ChHR0c4OTnh8uXL6jH69++PsLAwJCUlQaVS4ffff0daWprO+7h16xYuXLgAiUQCV1dXlJSUQBRFrdcrXb58udZgfCMQAZyRSCSzWrVq5ZaQkOAdHx+/gkFxIiIiIiKiRmMkCMIBURS3AOiPegbF60kKoL8oilsEQdgPxrWI6DEwY5yajEKhUH+tVCrVX8fFxaGkpAQhISEYOXIkJkyYoPOYy5cvx6JFizB06FB07doVo0aNwqVLl2BsbKxuX7ZsGQICAlBaWgqZTIaZM2eq7+/YsSNGjRqFmTNnwtraWiPbuZJUKsWgQYPg5uZWY+azu7s7AgMDMWfOHDg5OSEwMBAxMTEafTw9PTFy5Ejcv38fvr6+GrXQ62qvaw81GTp0KL777jsMHz4cABAWFoZ169Zh+vTpKCwshLu7u8bhn3XtQ6VSYfHixUhLS0P79u2xZMkSSCQSrdeBivIpJ0+exKRJk2pd6xOgAvC9KIp7jY2N9//888/pjT0hERERERERVXiQKT6iS5f2mDcvCN26ucLKyrxR5iosvIekpBtYtuwr/Plnmp9cLp+QkJCwtVEmI6KnXnOqQf3UqaxhfCguoknnHaEIAdC8aoyLVdOItbhz5w6mTZuGfv36YdasWQ2a5+DBg9i0aROOHDnSoPuftMTERAQHB+PMmTPqUin1aW+orKwsjB49Glu3bkXnzp2f2Lj1cezYMWzevBm7d++uPKTzif88enp6WpmYmFjExcVl1vfeyt/PiLhDT3pZtQpRjADQvH4/iajlUL92RcQ16bwhIRVvbvO1i6h5qXxNiIto2r9nFCH8e4aIHhIE4TSA/p99NgdyedcmmTM+PgmTJ68CgNPx8fEvNcmkRPTU4UdOqNlwdHTE5s2bNbLJ63Ly5En14ZIXL15EREQEXn311UZcZcvg4OCABQsWIDQ0VF0ipSnl5ORg48aNCAsLa9T64r/++mthQ4LiRERERERE9MT0AoBu3VybbMIqczVp7U4ierqwlAo1K1KpVH14pC6Sk5OxYsUK5OTkQCqVYsSIEXjnnXcacYUtx5AhQ2qsid4U2rRpg/379+tlbiIiIiIiImpSUgCNVj6lJtbWFhpzExE1BAPj1CQao4xGTY4cOYLp06c3xVT1YmVl9VjtRERERERERERE9OQwME5ERM2KLmcS0NOtqd5MJSIiIiIiIsPFGuNEREREREREREREZFAYGCciIiJqIn369GmjUCha63sdREREREREho6BcSIianZSUlIwd+5cDBw4EEqlElOnTkVaWpq+l1VNYmIiFAoFJkyYoLVPUFAQFAoFSkpKmnBl9XPy5EmMHz8epaWlWvtU7rWoqOiJzp2VlQV/f38kJSU90XGbK2NjY4UoircFQTgoCEKwUqm01/eaiIiIiIiIDBED40RE1OycPn0azzzzDA4cOIDDhw/D1NQUCxcu1OuaUlJS8Nprr9UY4P7jjz9w5cqVatfj4uJw48aNplheg+Xm5mLJkiVYsGABTExMmnx+BwcHTJkyBQsXLkR5eXmTz68npgBGAPj8/v37GXK5/JggCFO8vb2d9b0wIiIiIiIiQ8HAOBERNTtvvvkmXn/9ddja2sLe3h5vvvkmEhMT9Ro4vXv3LlJSUmpsUygU2LVrV7XrO3fuhFwub+ylPZYdO3agd+/e6N69u97W4Ovri6KiIhw7dkxva9AjY4lEMgTA5tLS0luCIJxWKBQzPD09O+h7YURERERERE8zBsaJiKjZMTLS/N9TdnY22rRpU+16feTm5uL999+HUqmEn58ftm3bplHipKSkBCtWrMDAgQPRr18/fPjhhygoKFDfHxwcDABQKpVQKBQaY48ZMwbHjh1DTk6O+trNmzcRExMDf39/jb7nz59HUFAQvL294efnh9jYWAAPS5XExMQgICAASqUSM2bMQG5urk7tde2h8v7o6Gj4+Phg1apVAICjR49iyJAh6jHKy8sRGRkJf39/eHt7Y/jw4TVmw2vbBwDs2rULQ4cOhVKpVM9T23UjIyP4+Pjg6NGjWp8/AyEB0F8UxXXGxsY3BEH4SRCEOX379pXpe2FERERERERPG2N9L4CIyBAJgiDqew0tRVlZGXbs2IHRo0c/1jiLFi1CcXExDh48CFEUMXfuXI32JUuWIDU1Fbt27YKZmRnmz5+P1atXY9GiRQCAyMhIBAcHIzY2Fqamphr3CoIAd3d37Nu3DxMnTgQA7N69GwMGDICzs2Z1jMLCQixcuBBdunRBeHg4li5diujoaHV7dHQ0IiIiUFZWhlmzZmHlypUICwvTqb2uPQDAuXPn1I9BdnY20tLS0KtXL3X7mjVrcPr0aYSGhsLDwwMpKSmwsLBAZmamTvtITU3FypUrsWnTJvTu3RvXr18HAK3XK3l4eODIkSOVjyd/Pyp4A/BWqVQrFArFBVEU9+p7QURERERERE8LZowTEVGztnTpUhgZGakDzg2Rk5ODs2fPYubMmZBKpXB0dMTkyZM12o8cOYJ58+bB2dkZdnZ2GDduHE6cOKHzHGPHjsXevXuhUqlQXFyMAwcOYOzYsdX6DRw4EDKZDFevXoW1tTXS0tJQVlambp82bRrs7e3h5OSE4OBg/PDDDxr3a2vXdQ/jx4+HlZUVrK2tcfv2bQCAo6MjACA/Px+7d+/GRx+coL3RAAAgAElEQVR9BC8vLxgbG0Mmk8HFxUXnfZiYmEAikSA9PR2Wlpbw8PAAAK3XKzk6OiInJ0fjsaCHRFEUAfANAyIiIiIioieEGeNERHoQHx8v0fcamjF18G/NmjVISEjAZ599Vi1Luz7S09MBAB07dlRfs7Gx0WgXRbHGQHZpaalOh1IOGzYM4eHhOHXqFHJycuDq6govLy8kJiZq9AsPD0d0dDQ8PT1hZmYGABq1052cnNRfOzo6oqioSKf2uvZQqUOHh6WrK2KtgERS8eOYlpYGlUqlU71xbftwdnZGaGgo1q1bh+3bt2P+/PmQy+Var1eqXIMoik/174dcLh8skUiO69j9J4lE8o2RkVHUzz//fA0ABEEIq+smIiIiIiIiqhsD40RE1Cxt2LABZ8+eRUREBOzt7R9rLGtrawDA7du31V9nZGSo2yvHP3z4MNq2bdugOUxNTTFq1Cjs27cPWVlZGD9+fLU+qampiIyMxJ49eyCTyRAbG1utrnZBQQEsLS0BAMnJyXByctKora6tXdc9VAagAUAqlQIAsrKyYGNjgzZt2gAAUlJSqmV012cfvr6+GDx4MNavX4+5c+fi+PHjtV4HgMzMTNja2ur0JsRTrBzAGVEUv1GpVPt+/fXXVH0viIiIiIiI6GnFUipERNTsfPrppzh9+jS2bNmiDt5WVTWorQtXV1d07twZ4eHhyMvLQ1paGr744gt1u7OzMwRBwKpVq5CRkQGVSoWkpCScP39e3cfW1hYAcOHCBeTl5dU4z5gxYxAfH4/s7GyNAy0rVZYJuXXrFvLy8rBz585qfTZs2IDCwkIkJydj27Zt8PPz06ldlz08ytHREU5OTrh8+bJ6jP79+yMsLAxJSUlQqVT4/fffkZaWpvM+bt26hQsXLkAikcDV1RUlJSUQRVHr9UqXL1+uNRj/FCsDcAzAlLKyMpf4+PiXEhISwhkUJyIiIiIialzMGCciomYnIiICAKoFl2NjYwEAISEhGDlyJCZMmKDzmMuXL8eiRYswdOhQdO3aFaNGjcKlS5dgbGysbl+2bBkCAgJQWloKmUyGmTNnqu/v2LEjRo0ahZkzZ8La2loj27mSVCrFoEGD4ObmVmPms7u7OwIDAzFnzhw4OTkhMDAQMTExGn08PT0xcuRI3L9/H76+vhq10Otqr2sPNRk6dCi+++47DB8+HAAQFhaGdevWYfr06SgsLIS7u7vG4Z917UOlUmHx4sVIS0tD+/btsWTJEkgkEq3XgYryKSdPnsSkSZNqXetTpATAUYlE8o2pqenB2NjYbH0viIiIiIieflUPuX+ayxcS6Yq/BI2o8gXnUFxEk847QhECgC9yRLWp/P2MiDvUpPOGKEYA4O9nbcSqacRa3LlzB9OmTUO/fv0wa9asBs1z8OBBbNq0CUeOHGnQ/U9aYmIigoODcebMGXWplPq0N1RWVhZGjx6NrVu3onPnzk9s3Po4duwYNm/ejN27d1ce0vnU/n706dOnjampaXlcXNzdhtyvfu2KiHuyC6tDSIgCAF+7iJqbyteEuIim/XtGEcK/Z4joIfVrURPHPhSMfdSbhYXFcz179oyNj4+3AHDvccYyMzPr2qVLl8OXLl3yfNyxiPSFpVSIiKjFcXR0xObNm6FUKnW+5+TJk+rDJS9evIiIiAi8+uqrjbjKlsHBwQELFixAaGioukRKU8rJycHGjRsRFhZmEPXFExMTcxoaFCciIiIiai6MjIwczMzMuup7HUSPg4FxIiJqkaRSKby9vXXun5ycjEmTJuH555/HBx98gOHDh+Odd95pxBW2HEOGDEFkZKS6rExTatOmDfbv34+ePXs2+dxERERERPpmYWHxnCAIYuvWrYf07NkzQS6X3+/Zs2eipaWloko3c1dX13BPT8+sv/zlLwUymWwngNYA0Llz5wOurq7/ruzYrl27f3p6embgQZUICwsLpZeXVy6Aalkouszt6Og4o0+fPre8vLyKO3TosLbyes+ePWMBQBCE4qolWqysrAY9GKvEw8Pjuq2t7cv12KdR27ZtP/Dw8Lgql8tL+vTpc6NKu9bHgKihWGOciIialaYqo3HkyBFMnz69KaaqFysrq8dqJyIiIiIyJFWDsk1BFMXvExISBj7pcR0cHEKuXLkyHMC9zp07b3dzc9vy22+/CQDQsWPHCDMzM9kff/zhVVxcfK9r1667OnbsuCY5OXni3bt3Dzo7O8+uHMfGxsZXIpGYW1pa/qWoqCjBzs5uUF5e3rcASus7t5mZWWdXV9d1v//+++DCwsLzlpaWPSrvuXLlirKmsiwmJia2ycnJk4uKii66uroudXNz23Tx4kWZLvt0dXVdbWtr65+SkjI+Pz//vKmpaVcjI6PCuh6DJ/YkkMFhxjgREREREREREZEOJBLJS40xblpa2nwAtwDk3LlzJ9zS0vIvAFoBcHRwcBiXlpb2bnFxcSqAzIyMjE/s7OxGA0BmZuZhMzOzbhYWFh0ASE1NTTvk5OR8ZWNj8zIA2NjY+OTm5tZ6GIW2uY2MjEoAiGZmZm4A8ouKin6uax+5ubn7ioqKLltaWnqoVKq7pqamnVAlW72WfdpJpdL3kpOT38nPz48BUFpSUnL53r17yXU9BkQNxYxxIiIiIiIiIiJqkZry8M3GzE6/f/9+euXXpaWluagohWJiaWnpBkDSvXv3CzXcZgrgVlFR0f9ZWloOMjc3L7t79+7hnJycwy4uLn/PyMhYa2lp+WxOTk5AQ+YuLi6+cf369bc6dOiwwtnZ+e+pqanT8/Pzz9Q2Vrt27ZZKpdKJhYWFsaIoFj+43EqHfcokEolxQUFBwqNj6vAYlNS2JiJtGBgnIiIiIiIiIiJqhkRRvA0AV65c6VhcXJxSU5/c3NyD1tbWg4yMjIyysrK+ys/P/14mk+1o06bNkKKiogQA2Q2dPycnZ0dOTs4eV1fX5e7u7nsSExPbautrZmbWuW3btvMuXrzoUVJSctnW1vZlOzu7QF3mqdynpaVl10cz03V5DIgagqVUiIiIiIiIiIiImqHi4uIbBQUFP7i4uKy1sLBwBWBsZWXlZWVlNaiyT35+/kEbG5v+lpaW3nl5eScAFBUWFsY6OTnNz8vLO9jQuc3NzTva2Nj0AyDeu3fvTyMjI3M8ONSzvLw8BwCsrKxeAGAPAKIomlTeB6CNo6PjjHrsMzU3N/egm5vbp1ZWVl4P9vkXc3NzmS6PAVFDMDBORERERERERETUTCUlJb0OoLx79+6X5XJ5oaur6+d4EKAGgMLCwgsAjIqLiy8AuA8Ad+/ePWxlZaXMzs5W1xfv2bNnLAAIglAMHYiiaOzm5vaZXC4vdHJymnHt2rVxAEQAuH///u+ZmZkRXbp0OeTp6XkFAEpKSn67ffv2eplM9o2Hh8f5vLy8o/XZ57Vr194sLCz8qXPnzsflcnmBq6trZHl5ubkujwFRQ7CUChERERE1OlEUG60mJ1FLJZFI+A96IiIDV1xc/NOjddJruJZx7dq1WuuEX7x40a3q93fu3Am/c+dOeNVrOsyjce3+/ftXL1261EPbnCkpKVNSUlKmVL2Wmpo6MzU1dWaVdayvxz7zb9y4Mf3GjRvTa5iuzseAqL6YMU5EREREREREREREBoWBcSIiIiIiIj3o06dPG4VC0Vrf6yAiIiIyRAyMExEREVGT+OSTTzB48GA8++yzePPNN5GYmKjvJVWTmJgIhUKBCRMmaO0TFBQEhUKBkpKSJlxZ/Zw8eRLjx49HaWmp1j6Vey0qKmrUtWRkZOAf//gHBg8ejL59+2LAgAHYvHmzTvc+usbHGash6x45ciTKy8ufyHhZWVnw9/dHUlKS+pqxsbFCFMXbgiAcFAQhWKlU2j+RyYiIiIioTgyMExEREVGT8PT0RFRUFE6cOIEePXpg9uzZ0Gfp8ZSUFLz22ms1Brj/+OMPXLlypdr1uLg43LhxoymW12C5ublYsmQJFixYABMTE72upaysDJMnT4a9vT12796N2NhYREZGok+fPnodSxfOzs7Yv38/jIyezD+ZHBwcMGXKFCxcuPDRYLspgBEAPr9//36GXC4/JgjCFG9vb+cnMjERERER1YiBcSIiIiJqEoMHD4atrS1sbGzg6+uL3NxcvQbG7969i5SUlBrbFAoFdu3aVe36zp07IZfLG3tpj2XHjh3o3bs3unfvru+l4OrVq0hLS8Pbb78NBwcHGBsbo1OnTnjhhRf0Opa++Pr6oqioCMeOHdPWxVgikQwBsLm0tPSWIAinFQrFDE9Pzw5NuEwiIiIig8DAOBERERE1GVEUkZ6ejp07d2LMmDGPlY2bm5uL999/H0qlEn5+fti2bZtGiZOSkhKsWLECAwcORL9+/fDhhx+ioKBAfX9wcDAAQKlUQqFQaIw9ZswYHDt2DDk5OeprN2/eRExMDPz9/TX6nj9/HkFBQfD29oafnx9iY2MBPCwDEhMTg4CAACiVSsyYMQO5ubk6tde1h8r7o6Oj4ePjg1WrVgEAjh49iiFDhqjHKC8vR2RkJPz9/eHt7Y3hw4fXmA2vbR8AsGvXLgwdOhRKpVI9T23XK7m4uMDc3Bzr16/XWrKl6vM4YsQIfPbZZzWWqtFlrLqe8/rs49EyLqWlpdi4cSNGjBihfhy3bNmizv6u7H/u3DkEBQXhueeew+uvv67xWBsZGcHHxwdHjx6tcf2PkADoL4riOmNj4xuCIPwkCMKcvn37ynS5mYiIiIhqx8A4ERERETWJc+fO4ZlnnsErr7wClUqFGTNmPNZ4ixYtQn5+Pg4ePIht27bhzJkzGu1LlizBb7/9hl27duHQoUPIycnB6tWr1e2RkZEAgNjYWMTFxWncKwgC3N3dsW/fPvW13bt3Y8CAAXB21qxwUVhYiIULF+LMmTN46aWXsHTpUo326OhoRERE4MCBA8jMzMTKlSt1bq9rD0DF43rw4EFMnToV2dnZSEtLQ69evdTta9asQVRUFEJDQxETE4MNGzbAzs6u2uOpbR+pqalYuXIllixZghMnTsDX17fW61XZ2tpi+fLl+OGHH+Dv749t27ZVC2p/9NFHyM/Px6FDhxAZGakRkK/vWLU9Xo+zDwAICwvD999/j08++QQxMTFYtmwZ9u3bh08//VSjX1RUFNavX49jx46hbdu2CA0N1Wj38PBQ19eXSCTHa5ysZt4AVqhUqqsKhSJBEIQF9biXiIiIiB7BwDgRERER6UQQhNSG/gcA3t7e+Pnnn7Fnzx5kZ2fj448/bvBacnJycPbsWcycORNSqRSOjo6YPHmyRvuRI0cwb948ODs7w87ODuPGjcOJEyd0nmPs2LHYu3cvVCoViouLceDAAYwdO7Zav4EDB0Imk+Hq1auwtrZGWloaysrK1O3Tpk2Dvb09nJycEBwcjB9++EHjfm3tuu5h/PjxsLKygrW1NW7fvg0AcHR0BADk5+dj9+7d+Oijj+Dl5QVjY2PIZDK4uLjovA8TExNIJBKkp6fD0tISHh4eAKD1+qP69euHAwcOICAgAF988QUCAgLUB1BmZ2cjJiYGs2bNgoODA6RSKd555x2tz0ltY9X1eD3OPnJzc3Ho0CEsWLAA3bp1g7GxMTw9PTF16lRERUVp9H3vvfcglUpha2uLwMBAJCUladQUd3R0RE5OjsbPSH2JFTWI9FeHiIiIiOgpwMA4EREREemq/WP8B6CilIRMJsOUKVPw3XffPXoIoc7S09MBAB07dlRfs7Gx0WgXRRFjx46FQqGAQqHAjBkzUFhYiNLSUp3mGDZsGEpLS3Hq1CkcOnQIrq6u8PLyqtYvPDwcfn5++Oyzz5CcnAwAGvtycnJSf+3o6IiioiKd2nXdQ4cOD8tPV9Zsl0gkAIC0tDSoVCqd6o1r24ezszNCQ0OxceNGvP7660hISAAArddrYmNjg6lTpyI6Ohru7u748MMPAQAZGRkAADc3N3Vfa2vrWtepbay6Hq/H2cetW7cgiiJkMs0qJm5ubsjOztZ4Ph0cHDTWKoqiRhC88rkRRRGiKD6seVO3nyQSyZxWrVp1jo+PF+Lj4/9Vj3uJiIiI6BHG+l4AEREREbUMZWVlro9x+41HLxgbGze4xnhl8PT27dvqryuDrABgb28PADh8+DDatm3boDlMTU0xatQo7Nv3/+zdeZRcZZ0//nc1JECAHCALKCCrqCOg3Y1oRkEj6LAvIXECgxCGGRQZic5PnGEQkFVAXEFENhG+B1RAtoCCwybmZIh2NxBABRWCLEIMJJEEsnTd3x/SbbqzdSXprqqu1+ucPqe77q37PFXpujTv53Pv5+bMnj07Rx111DL7PPfcc7n66qtzww03ZPvtt8+0adOWuX/0a6+9lmHDhiVJZs6cmdGjR/d43Sva3tfX0BW0JsnIkSOTJLNnz87GG2+cTTfdNEny7LPPrrCiuy+vY999983ee++db3/72/niF7+Yn//85yt9fEWGDx+eY445Jscff3zK5XL3YsZf/vKXHv+mfdH7WH15v1b3dXRV4M+cOTM777xzj/dt8803r+j3+C9/+UuGDx+eIUOGrGrXcpIHi6K4qbOz8+ZHH330uT4PAgDAKqkYBwCgTx599NHnVvfrj3/8Y372s59l4cKF+fOf/5wrrriiR4PIpUPtvth6662zww475KKLLsq8efPy/PPP55prrunevvnmm6elpSUXXnhhXnrppXR2dubJJ5/M9OnTu/cZPnx4kuThhx/OvHnzljvOhAkT0t7enldeeaXHfLt0VQK/+OKLmTdvXq6//vpl9rn44oszf/78zJw5M1dddVUOPPDAPm3vy2vobdSoURk9enSeeOKJ7mPsueeeOeecc/Lkk0+ms7Mzv/vd7/L888/3+XW8+OKLefjhh1MqlbL11ltn0aJFKYpihY8v7amnnsrll1+eZ599Np2dnZk9e3Zuvvnm7L777mlqaspWW221zL/jtddeu9zXtqpjrer9WpPXMXLkyOy1114555xz8tRTT6WzszOPPfZYLr300uUumKzME088sbJFiiVJ7k7yqSVLlrylvb39Ix0dHRcJxQEA1j4V4wAA9LsNNtgg11xzTU4//fQMGzYse++9d/7zP/8zSbJo0aIcd9xxOeSQQ3LMMcf0+Zjnn39+Tj/99Hz84x/P29/+9owbNy6PP/541l133e7t5513XsaPH5/Fixdn++23z+TJk7ufv80222TcuHGZPHlyNtpoo+VWO3cFom9729uWW+G77bbbZuLEiTnppJMyevToTJw4MVOnTu2xz6677ppDDjkkCxcuzL777tvjXuir2r6q17A8H//4x/O///u/2W+//ZL8rWnkt771rXzmM5/J/Pnzs+222+acc87p8+vo7OzMmWeemeeffz5bbrllzj777JRKpRU+/sorr2TffffNT3/60wwfPjxtbW257rrr8tprr2XEiBHZY4898l//9V/dY5933nn58pe/nI9//OPZYYcdMmHChO7mlEvry7FW9n5V+jp6O/PMM3PxxRfnhBNOyJw5c7LVVltl0qRJGT9+/Er/PZZWFEXuvffeHHvssUs/vCjJXaVS6aahQ4fePm3atFf6fEAAAFbbsn/xsda0tLQUSTKl7bIBHfeA1uOSJO3t7f59YQW6Pp+XtU0Z0HGPaz0gic8nsHq6z12XtQ3ouMcd15pkzc5dRe8S3F5mzZqV448/Ph/60Ifyuc99brXGuP322/Pd7343d95552o9f22bMWNGJk2alAcffLD7VimVbF9ds2fPzmGHHZYrr7wyO+yww1o7bl/dddddueOOO/Ltb397tZ7f9b5MmzYtQ4cOXcuzq6677747l156aX70ox9lyJAh2XXXXTcbOnRoua2tbe7qHK/rnNB22cD+PdN6nL9ngL/rPhcNcPbRWoXso+u1Ov/B4OBWKgAAVN2oUaNy6aWXZsyYMX1+zr333tvdXPKxxx7LZZddloMPPrgfZ1kfRowYkVNOOSVnnXVWj6aPA2X69Ond1er83auvvppLLrkk55xzTvfVBzNmzHh1dUNxAADWjFupAABQE0aOHNndPLIvZs6cmQsuuCCvvvpqRo4cmQMOOCD/9m//1o8zrB8f+9jHlntP9IFw6qmnVmXcWrfpppvmlltuqfY0AAB4k2AcAIB+V1reTZvXsjvvvDOf+cxn+nuYim244YZrtL1RrbfeetWeAtScVd2WioH57w0Ag4NbqQAAAABVMX/+/GpPAYAGJRgHAACABvd///d/y/w8Z86cFe6/YMGClMvl7p8XLVqUroL2vt426IUXXsi+++6b559/frnby+VyLrvssrz88svL3TZu3Lg+jcPKNTc3v7W1tXVItecBMNAE4wAAAFCHjjvuuLS2tmbBggVrfKyzzz67+/sFCxbk3HPPzTrrrLPC/S+66KKce+653T+fccYZuffee5MkZ511Vp/GfOtb35qxY8fmnnvuWe72pqamvO1tb8vRRx+dqVOn9thWFEVmzpzZp3FYuVKp9JmiKF5saWm5crfddttvxx13dC8roCG4xzgAAADUmbvuuivPPPNMvxz7xhtvzMsvv5yDDz54mW3XXnttttxyy3z2s5/NxIkTc8MNN+TAAw/M9OnT88gjj+Qb3/hGkuSAAw7ofs6xxx6bHXbYYbl9IMrlcu65555cdtlly2z75S9/mX322Sdbb711NtxwwxxxxBGZNWtWj32WbjT885//fLVfMxmR5F/L5fK/Dh8+fF5LS8vtSW4qlUp3tbW1rfnKC0ANEowDAABAHXn99dfzrW99K5MmTcrXvva1NTrWwQcfnKIouoPwT33qU5kyZUoeeOCBZZrg7rfffll33b/FCMOGDcu5556bESNG5MYbb8xBBx2Uz372s0mS1tbWTJkyZZmxfvnLX3Z//773vS933XVXNttssxXO7amnnsqTTz6Z/fffP0ly3XXXdW/r7OzM7rvvLgzvH8OT/EuSfymKYkFra+ud5XL5pmHDht0xderUv1Z7cgBri1upAAAAQB254oor8r73vS+77LLLGh/r1ltvzVlnnZXRo0fn1ltvzfTp0/PJT34ynZ2dOfXUU9PZ2dm976JFi3qE5TvvvHPe8pa3ZJtttslhhx3W5zEXL16ccrmcYcOGrXS/RYsW5cILL8yVV15Z+QtjbRlWFMX4Uql0/euvvz6rpaXlttbW1qN32WWXTas9MYA1pWIcAACAirW0tBTVnkMjevbZZ3PLLbfkxz/+cV544YW1csyf/OQnmTdvXs4444yccMIJGTVqVC6//PJssMEGKZVK3ft1BePXXHNNrr/++gwdOjS33nprLrzwwh7H22qrrXrchmXkyJE9wu2FCxcmSfbee+/lzufaa6/Ndtttl3e/+9259NJLc9JJJ+XQQw9daXV5F7+X/Wq9JAcWRXHgkCFD0tLScneSm6o9KYDVJRgHAACAOnHhhRfmmGOOyYgRI9ZKMP7000/n6aefzvDhw7PDDjvk2muvzZFHHpnbb789l1xyST75yU/m+9//foYOHdodjB9++OEZP3589tprryR/qzofN25cj+ryLuuss84yFd8vv/xyttxyy9x2223L7D9mzJgeleTveMc7ctNNN2Xu3Lk97ifeZXmPMWCKN78A6pJgHAAAgIq1t7eXVr0Xa9MDDzxQvPDCC5k4ceJaOV65XM4ZZ5yRo446Kt/85jdz5JFHZuHChTn55JNz4oknZquttsqee+6Z73//+znuuONSFEWamprS1NSUIUOG9DjWn/70p/zqV79aZoz3ve99yzz2yCOPZKeddlrm8cWLF2fRokXZeOONezx+xRVX5BOf+ET3/cRfeumljB8/Pt/97nez++6799i3tHSJO33S0tJydpJT+rDrwiR3FUVx05IlS26fMWPGq28+f9nOqQB1QDAOAAAAdeC2227Ln//85+5K7XK5nCTZd999c95552XMmDEVHa+pqSnvec97svfee+eb3/xmkuTOO+/M1KlTM2fOnFx11VWZP39+Zs+enb333nuZZpyr65Zbbsn48eOXeXzu3LkZMmRIj4rxl156Kddee22OPvro7sfOP//8TJgwIbvvvnumT5+eIUOGpLm5ea3MjWXMT3Jnkps22GCDOzXfBAYTwTgAAADUga997Ws9fp4xY0YmTZqUn/70p91h8ksvvZTNN9+8z8f8/Oc/3+PnsWPHZrvttsuoUaMyfPjwbLTRRnnwwQezcOHCbLDBBt37LV68eJljHXDAAasc77bbbsusWbPyT//0T8tsmzVrVjbZZJMej9133309bq9yyy23ZN68eTnhhBOSJOutt15OPfXU/PCHP1xlM0/6bG6S20ul0k1Dhw69a9q0aa9Xe0IA/UEwDgAAAIPAokWLctxxx+WQQw7JMcccs1rH2GSTTfLe9743SfLKK69k8eLF2XPPPXPnnXd2B+6vvPJKvvjFL6a5uTnf+c53uu9DvvPOOy9zvMcee6z7+4ceeigXXHBBvvrVr3bfs3zWrFkZMWJE1llnndxxxx3ZZpttejz/rrvu6q4u//nPf55rrrkm3/3udzN37tzMmzcvRVFk/fXXzze+8Y2cckpf7gbCCswulUq3lMvlmxYtWnTP448/vqjaEwLob4JxAAAAqEO77LJL2traun8eOnRorrjiihx//PGZO3duPve5z63R8f/zP/8zM2bMSKlUyogRI3LqqacmSe6+++58+MMfzr/8y7/kBz/4QSZNmpQFCxZ034N8nXXWSWdnZxYtWpTFixdniy22yMknn5zPf/7zOfnkk7tv+fLGG2/k0EMP7W7aOXLkyFxwwQXd4z///PN54oknsueeeyZJzj333Lz++us56qijstlmm2XTTTfNpptumt122y033XTTcqvQWbWiKC5pamo6o62tbdnLAAAGMcE4AAAADBKjRo3KpZdemj/84Q9rfKyrr746nZ2dKYoi667797vTdZ4AACAASURBVPhg/Pjx3T8fc8wxParTFy9enCVLliRJSqVSSqVSd1j+gx/8IG9/+9u79x0+fHimT5+ehQsXZsmSJRk2bFiW7p25wQYb5LTTTutuxnn77bdnww03zPL6a+64444ZOXLkGr/mRtTR0fFCtecAUA2CcQAAABhERo4cWXFIPGXKlOU+vs466yzz2NIheW9DhgzJkCFDlrtt6VB8aeutt95yG3tuttlm2X///bt/3mijjVY47rhx41a4DQCWRzAOAAAAdaC0vFJpAGC1NFV7AgAAAAAAMJAE4wAAAAAANBTBOAAAAAAADUUwDgAAAABAQ9F8EwAAAICG8O53v3uj9dZbb79SqbRuW1vbddWeD1A9gnEAAAAABq33vve9m5RKpQObmpoOK4ri4CQpiuJ7SQTj0MAE4wAAAAAMKs3NzaOampoOLorisCR7JRlSFEW1pwXUEME4AAAAAHWvubn5raVS6dAkhyX5cFEUeusBKyQYBwAAAKAuNTc3b5Pkv0ql0rFJhvb1eUVR7NzS0vIf/TczoNYJxgEAAACoS6VS6ZnVfN4Hk3xwNZ5aXp3xgNojGAcAAACgLpVKpX9KclpRFBWF3KVS6fGiKO5fjSHbVuM5QA0SjAMAAABQl9ra2u5OcveECRPWefrpp/col8uHJRmX5K0re15RFL9sb293KxVoYIJxAAAAAOraDTfc0Jnk/je/Jjc3N7+/qalpfFEUhyXZpppzA2qTYBwAAACAwaTc0dExLcm0JF9obm5uTXJYqVQan2TH6k4NqBWCcQAAAAAGq6Kjo+PXSX6d5H9aWlp2KYrisKampr9We2JAdQnGAQAAAGgERXt7+6NJHq32RIDqa6r2BAAAAAAAYCCpGAcAAIDVUBRFUe05UD2lUqlU7TkAsPoE4wAANDTBVmMTbAEANCa3UgEAAGDANDc3b1PtOQAACMYBABgwAjFoTC0tLTs2Nzf/V3Nz80OlUumZas+nUc2YMSOtra055phjVrjPEUcckdbW1ixatGgAZ9Y3XfNvbW3Nbrvtlr333jtnnnlm/vrXv1Z7agDUIbdSYcC4TLmxuUyZSjhfNDbni8GnpaVlx6IoDksyrlQq7Z7Ev/EamDFjRiZNmpRdd9013//+95e7zxFHHJHf/e53mTZtWoYOHTrAM1y5rvknSalUyiabbJI999wzn//857PxxhtXd3KsVc3Nzf/Q1NQ0/s3P/65O73/37LPPZvLkyfnRj35Ulc/oU089ld/85jd517ve1ePxtra2/OlPfxrw+VTqwQcfzPrrr5+ZM2fmjDPOyOmnn56vf/3r1Z4WAHVGxTgAAGtdc3PzP7S2tp7W0tLySJKnSqXSeW+G4oPGs88+m0MPPbRqVZVdwVZv9RRsTZ8+PZdffnn++Mc/5vTTT6/2lFhzpdbW1paWlpZzWlpaflMqlR4viuKMJLtWe2K1Zu7cuXn22WerNn5ra2t++MMfLvP49ddfn+bm5irMqHJNTU3Zbrvt8qlPfSq//OUvUy6Xqz0lAOqMYJweXN4Mtc/nFKhRDReICbbWnGBrUGhqaWn5QHNz84Wtra1/KIqiLcn/JHlntSc2ELpu7XHbbbflox/9aC688MIkyaJFi3LBBRdk7Nix+dCHPpT/+Z//yWuvvdb9vK6rJsaMGZPW1tYex1qwYMEyx1+0aNFyx+p67KGHHsoRRxyRD3zgA/nEJz6x3EWzpU2YMCF33313Xn311e7HXnjhhUydOjUHHXRQj32nT5+eI444Iu9///tz4IEHZtq0aT3mNnXq1IwfPz5jxozJiSeemDlz5vRp+6repxW9t70tXLgwG2ywQZqamlb4nMWLF+eSSy7JAQcckPe///3Zb7/9cvnll3efc2644YaMHTs28+bNS5I8/PDD2WOPPfLEE0/kAx/4QKZOndo93htvvJE999yz+30AoH4JxnG/vxVw/z1qic9pbXO+oIENikBMsCXYYvW0trZ+u6Wl5dkk00ql0v9XFMV2lR6jpaVlUktLS9Hc3Hx1PT/20EMP5fbbb8+nP/3pJMnZZ5+d3/72t/nhD3+YKVOm5NVXX83Xvva17td99dV/e+q0adPS1tZW0XvWe6wk+clPfpJvf/vbufvuu7PFFlvkrLPOWukxWlpasu222+bmm2/ufuxHP/pRPvzhD2fzzTfvse/8+fPzpS99KQ8++GA+8pGP5Ctf+UqP7bfddlsuu+yy3HrrrfnLX/6Sr371q33evqr3aUWvN0nK5XKeeOKJXHLJJfnnf/7nlT7nnHPOyf3335+vf/3rmTp1as4777zcfPPN+d73vpckGT9+fLbbbrtcccUVKZfLueCCC3LCCSfkH/7hHzJ27Njceeed3ce+5557sskmm+QDH/hAauX3r9qPBaBOCcYbVD1d3uwy5TXjMuX6VU+f01rhfLFmnC/oiwkTJqzT3Ny855oEYi0tLUVLS8s3l/r5c9V8rOtnwVbDBltV/f1bG7+71VIul4tSqVT1edSCo446KhtuuGE22mijvPrqq7nzzjvz3//939l8882zySab5Mgjj8w999yz1sfq8h//8R8ZOXJkhg8fnokTJ+bJJ59c5RUYhx9+eG688cZ0dnbm9ddfz6233prDDz98mf3Gjh2b7bffPn/4wx+y0UYb5fnnn8+SJUu6tx9//PHZbLPNMnr06EyaNCm/+MUvejx/Rdv7+j4t7/Xuscceef/7358vfelLOfTQQ3P88cev8Dlz5szJlClTcsopp2SnnXbKuuuum1133TWf/vSn85Of/CTJ3/odfOlLX8rNN9+ciy++OBtuuGH3OWn8+PG5//77uxc8b7/99owbNy7umQ9Q/zTfbByl1tbW5q7GV0neWS+97WrlMuUzzjijx+NdlykvXX1Uq5a+THny5Mkpl8tparIuVoPq9nNaK5wv1pzzBX1RKpWKcrlcNDU1DapeuV1BSvL3wOa6667rDpmPPPLInHzyyWtl0Wjpsbp0BVtJMnHixJx44omr/AwefvjhufTSS3P00Udn0aJFufXWW/Otb31rmf3Gjh2bN954Y5XBVvK3SvjeofyKtvf1fVre691jjz3S1NSUrbfeOhMmTMjEiRNX+B51BVtXXnlldtpppyTpDrYuuuiiHH/88d3B1tFHH5111113mWDrxBNPzIIFCzJs2DDB1lrS0dExOcnnW1tb31cUxfhSqXRYpVXj7e3tVye5uo4fOzpJttpqq+7tf/7zn1MUxXJD5sWLF2fIkCHLPF6JpcfqMmLEiO7vN9544xRFkSVLlqy0sec+++yTiy66KPfdd19effXVbL311nnPe96TGTNm9Njvoosuym233ZZdd9016623XpL0CN1Hjx7d/f2oUaOyYMGCPm1f1fu0stf74IMPZtiwYSt8bUs/58UXX0xRFNl+++177PO2t70tr7zySvd5dvvtt89ee+2VH/zgB7n88su7zw+tra15y1veknvvvTetra155JFHuhcX29vbe5xEauR3csAfq4WFOoDV4f90B7eaurzZZcouU2a5aupzWiucL5wvqF033HBDZ3t7+4MdHR2T29ratimVSh9IcmGpVHq6r8dob28vtbe3f26pn79Zzce6fl5RsNV1q6ETTzwx8+fP7xHYrK5Kgq2V2WeffbJ48eLcd999mTJlSnew1dtFF12UAw88MFdccUVmzpyZZO0HWyt7n1YUbP3qV7/KT37ykxx++OHLhNSVBltJegRbXWF50jPYevHFF/PII4/k4IMPTlL937+18btbZeW2traH2tvbT2pra9uhqampJck5SX5b7YkNpKV/f7sWke644460tbX1+FpZKN4VYr/xxhvdjy39d87yxloTQ4cOzbhx43LzzTfnpptuWm5A/dxzz+Xqq6/O9773vXzta1/LgQceuMw+S89x5syZGT16dI8FvRVt7+v7tDqvd+nnjBo1qnvs3q9t8803757rc889lwceeCB77bVXrrrqqh77jh8/PnfccUemTJmSj370o9l0000rnhMAtUcwPsiUy39fqF3Dy5u7/5BtbW1959p8zGXKDXuZcr/+XlX6WKpsLdyG4H+XOtbeb77OQfeY80VDny+q/vtXi4+l9gyqQEyw9TeCLdZA8etf/7qjvb39S+3t7e8qiuLdpVLptCSPVHtiA2nzzTdPS0tLLrzwwrz00kvp7OzMk08+menTp3fvM3z48CR/WzTuWkDedtttM2zYsEyZMiXJ3xapr7322n6d64QJE9Le3p5XXnklH/vYx5bZ3rU49+KLL2bevHm5/vrrl9nn4osvzvz58zNz5sxcddVVy5xjVrS9L+/T2jBy5MjstddeOeecc/LUU0+ls7Mzjz32WC699NIcddRRSf7298+pp56aT3ziEzn99NPz5JNP5pZbbuk+xv7775/HHnsst956aw477LC1Oj8AqkcwPojV6v3+3H/P/ff4+20IavVzWiucL5wvqCuDKhATbAm2WHMdHR1PtLW1ndXe3v7eUqm0Y5L/Kopi7f5y1Kjzzz8/TU1NGT9+fD74wQ/my1/+cpa+9dQ222yTcePGZfLkyd2/j+utt17OOeec3HjjjTnooIPymc98Jv/4j//Yr/Ps+myNHz9+uYt+2267bSZOnJiTTjopRx111HLns+uuu+aQQw7JJz/5yYwZMyb//u//3uftq3qf1pYzzzwzra2tOeGEEzJmzJicdtppmTRpUvctnL7//e9n9uzZOfbYY7Phhhtm8uTJ+frXv56XXnopyd+u4hk7dmw22GCDtLS0rPX5AVAd7jE+yDQ1/T1QaGtr22Z17vfX+7LMtra23yZZG48VifvvdWn0+++txd+r1Xqs2pWX7e3tDyZ5MKt5X8729va9u77v6Oj43/R6nYPgMecL54tuNfI7WROPVfvcVYmOjo4nkjyR5KzW1tYdiqI4rCiKw+qpifD555+f8847L+PHj8/ixYuz/fbbZ/Lkyd3blw62Ntpoo/z85z/vDrYuvPDC3HjjjRk1alTGjh2bhx56qN/m2RVsve1tb1tlsDV69OhMnDhxmZ4HXcHVwoULs++++64w2Fre9lW9T2vLmWeemYsvvjgnnHBC5syZk6222iqTJk3K+PHjk/QMtoYOHZrJkyfn/PPPz5gxY7L55pt3B1u/+c1vBFtV0NbW9ockFyS5oLm5eZtqz2dt2WWXXZZ7ldpmm22WCy64YKXPPeWUU3LKKaf0eGzPPffMnnvu2eOxI488coVj9fWxlW07++yzV7rPSSedlJNOOqn75979APbbb7/uz+HyrGz7yt6nSl/byravv/76+cIXvpAvfOELy33esccem2OPPbb75/333z/7779/j32efPJJi2oAg4xgfHArt7W1PZTkoSRf3G233d5bLpcPS3JYqnj/4hVdprzFFlv0+RhLX6bcFeIM1GXKs2fP7q5MWlrXZco33HBDtt9++0ybNi133XVXj31ee+217vmu6DLl5W3v6/u0Ni9T3nnnnXu8tpVdprz0/1x2Xab84osvuky5b2ryc1ornC+cLxgcaj0QE2wJthhYHR0dM1e9F9SGuXPn5q677srs2bOX6RkDQH1zK5XGUZOXN7tM2WXK9FCTn9Na4XzhfMHgIBCjGubOnZsf//jHgi2gYvvss0+uv/76fP3rX1/plXUA1B8V4w2qli5vdply37a7TLnx1NLntFY4X/Rtu/MFQE/77LNPtthiC8EWa11Jc4xsuOGGa7S9Xiy9uA/A4NDw/xHvT133AZ3SdtmAjntA63FJlr1Ha180Nzdv01+VXEV/dFGpEzNmzMikSZNWeP/eVW2vNxMnTswhhxzS4zLtWvufhq7P52VtUwZ03ONaD0iyep/PLv35Oa0VzhfOF1WcUk3rPnddtuLbUPSH445rTbJm5y5g7es6J7RdNrB/z7Qet+Z/zwCDR/e5aICzj9Y1yD4AEhXj9DLYwzb6l/vvDQyfUwYD5wsAAACqSTAOrDUuUwb6yvkCAACAahKMM2BcGu/+e9BXzhfOFwAAANCfmqo9AQAAAAAAGEiCcQAAAABW1+IkWbKkc8AGXGqsxQM2KDDoCMYBAAAAWC2lUunJJJk1a86Ajfnyy692ffu7ARsUGHQE4wAAAACslqIoHkqSG298IEVRDMR4uemmXyRJSqXSQ/0+IDBoab4JAAAAwGopiuLUpqamCVdf/bONf/Wr32bHHbfMsGHr98tYCxa8kd///vk8/vgzKZVK88rl8mn9MhDQEATjAAAAAKyWjo6OF5qbmz9aKpWuePzxZ97z+OPPDMSwj5TL5X/r6Oh4YSAGAwYnwTgAAAAAq62jo+PXH/nIR3abM2fOzk1NTe9OMqqfhppVLpcf32STTR67//77l/TTGECDEIwDAAAAsEbeDKoffvMLoOZpvgkAAAAAQENRMQ4AAADAgGtpaflrko2WLFmy0aOPPjq/2vMBGouKcQAAAAAAGoqKcQAAAAAGXHt7+8bVngPQuFSMAwAAAADQUATjAAAAAAA0FLdSAQAAAGDAab4JVJOKcQAAAAAAGoqKcQAAAAAGnOabQDWpGAcAAAAAoKEIxgEAAAAAaChupQIAAADAgNN8E6gmFeMAAAD1aX6SLFy8aMAGXGqs1wZsUACAfqBiHAAAoD49keR9z816MTu8dZsBGfC5WS8mSYqieGJABgQGNc03gWpSMQ4AAFCHiqL4WZJ85+Zr8trr/X8Hgr8umJ/v3HxN14939fuAAAD9SMU4AABAHVp//fW/smjhosMfeOShHT/+hU/mLSNGZ6MNNuyXsV57fX5e+MtLWbRkcUop/X699df7Sr8MBAAwQATjAAAAdWjatGmvjxkz5v1vvPHG+QsXLzrymT8/t34/D/lGURT/b/GSxV9sa297vZ/HAhqA5ptANQnGAQAA6tS0adNeSfLvEyZM+PQf//jHbYuiGNUf45RKpVnbb7/9MzfccENnfxwfAGCgCcYBAADq3JuB9R/e/OoXbW1t/XVooEFpvglUk2AcAACgwbS0tExN8o9FUfxjR0fHtGrPBwBgoDVVewIAAAAAADCQVIwDAAA0mPb29g9Wew4Amm8C1aRiHAAAAACAhqJiHAAAAIABp/kmUE2CcQAAgAaj+SYA0OjcSgUAAAAAgIaiYhwAAKDBaL4J1ALNN4FqUjEOAAAAAEBDUTEOAAAAwIDTfBOoJsE4AABAg9F8EwBodG6lAgAAAABAQ1ExDgAA0GA03wRqgeabQDWpGAcAAAAAoKGoGAcAAABgwGm+CVSTYBwAAKDBaL4JADQ6t1IBAAAAAKChqBgHAABoMJpvArVA802gmlSMAwAAAADQUFSMAwAAADDgNN8EqkkwDgAA0GA03wQAGp1bqQAAAAAA0FBUjAONqpykqSiXU2oamDXColzu+rZzQAYEAFgBzTeBWqD5JlBNKsaBhlQqlX6fJHP+8uqAjbnUWL8fsEEBAAAAWIaKcaAhFUXRnmSnX9/9i3zsyEMHZMxf3/2Lrm87BmRAAACAGqb5JlBNgnGgIZXL5dPWWWedcTd848qhv3/4iWy103bZYKMN+2Ws11+bn+eefDod901LkoXlcvm0fhkIAKCPNN8EABqdYBxoSA8//PBTzc3NhzQ1NV3ecd+0Ld8MrftVqVR6vlwu//vDDz/8VL8PBgAAAMAKCcaBhtXR0fHTD37wg+96/fXXP5JklySj+2mol5PMWH/99e+fOnXqX/tpDACAPtN8E6gFmm8C1SQYBxram0H17W9+AQAAANAABOMAFXJPTgAAgDWn+SZQTYJxAACABmOhHwBodIJxgAq5JycAAABAfROMAwAANBgL/UAt0HwTqKamak8AAAAAAAAGkopxgAq5JycAAMCa03wTqCbBOAAAQIOx0A8ANDrBOECF3JMTAAAAoL4JxgEAABqMhX6gFmi+CVST5psAAPVjcZJ0di4ZsAGXGmvxgA0KAADQz1SMA1TIPTmBaimVSk8WRfHuOXNmZcSItwzImK+++nLXt78bkAEBgIah+SZQTSrGAQDqRFEUDyXJAw/cmKIoBmK8/OIXNyVJSqXSQ/0+IDBgWlpapra0tBTNzc1jqj0XAIBqUDEOUCH35ASqpSiKU5uamib87GdXb/zb3/4qW265Y9Zff1i/jPXGGwvy/PO/zzPPPJ5SqTSvXC6f1i8DAQAAVIFgHACgTnR0dLzQ3Nz80VKpdMUzzzz+nmeeeXwghn2kXC7/W0dHxwsDMRgwMCz0A7VA802gmgTjAAB1pKOj49cf+chHdpszZ87OTU1N704yalXPKZVKJxZFsV2SbyV5po9DzSqXy49vsskmj91///0D1+0TAABgAAjGASqk+SZQbW8G1Q+/+dUX3+zH6QAArBbNN4FqEowDAAA0GAv9AECjE4wDVMg9OQEAAADqm2AcAGCQUxkK9GahH6gFmm8C1dRU7QkAAAAAAMBAUjEOUCGVl0C9URkKANQizTeBahKMAwAANBgL/QBAoxOMA1RI5SUAAABAfROMAwAMcipDgd4s9AO1QPNNoJo03wQAAAAAoKGoGAeokMpLoN6oDAUAapHmm0A1CcYBAAAajIV+AKDRCcYBKqTyEgAAAKC+CcYBAAY5laFAbxb6gVqg+SZQTZpvAgAAAADQUFSMA1RI5SVQb1SGAgC1SPNNoJoE4wAAAA3GQj8A0OgE4wAVUnkJAAAAUN8E4wAAg5zKUKA3C/1ALdB8E6gmzTcBAAAAAGgoKsYBKqTyEqg3KkMBgFqk+SZQTYJxAACABmOhHwBodIJxgAqpvAQAAACob4JxAIBBTmUo0JuFfqAWaL4JVJPmmwAAAAAANBQV4wAVUnkJ1BuVoQBALdJ8E6gmwTgAAECDsdAPADQ6wThAhVReAgAAANQ3wTgAwCCnMhTozUI/UAs03wSqSfNNAAAAAAAaiopxgAqpvATqjcpQAKAWab4JVJNgHAAAoMFY6AcAGp1gHKBCKi8BAAAA6ptgHABgkFMZCvRmoR+oBZpvAtWk+SYAAAAAAA1FxThAhVReAvVGZSgAUIs03wSqSTAOAADQYCz0AwCNTjAOUCGVlwAAAAD1TTAOADDIqQwFerPQD9QCzTeBatJ8EwAAAACAhqJiHKBCKi+BeqMyFACoRZpvAtUkGAcAAGgwFvoBgEYnGAeokMpLAAAAgPomGAcAGORUhgK9WegHaoHmm0A1ab4JAAAAAEBDUTEOUCGVl0C9URkKANQizTeBahKMAwAANBgL/QBAoxOMA1RI5SUAAABAfROMAwAMcipDgd4s9AO1QPNNoJo03wQAAAAAoKGoGAeokMpLoN6oDAUAapHmm0A1CcYBAAAajIV+AKDRCcYBKqTyEgAAAKC+CcYBAAY5laFAbxb6gVqg+SZQTZpvAgAAAADQUFSMA1RI5SVQb1SGAgC1SPNNoJoE4wAAAA3GQj8A0OgE4wAVUnkJAAAAUN8E4wAAg5zKUKA3C/1ALdB8E6gmzTcBAAAAAGgoKsYBKqTyEqg3KkMBgFqk+SZQTYJxAACABmOhHwBodIJxgAqpvAQAAACob4JxAIBBTmUo0JuFfqAWaL4JVJPmmwAAAAAANBQV4wAVUnkJ1BuVoQBALdJ8E6gmwTgAAECDsdAPADQ6wThAhVReAgAAANQ3wTgAwCCnMhTozUI/UAs03wSqSfNNAAAAAAAaiopxgAqpvATqjcpQAKAWab4JVJNgHAAAoMFY6AcAGp1gHKBCKi8BAAAA6ptgHABgkFMZCvRmoR+oBZpvAtWk+SYAAAAAAA1FxThAhVReAvVGZSgAUIs03wSqSTAOAADQYCz0AwCNTjAOUCGVlwAAAAD1TTAOADDIqQwFerPQD9QCzTeBatJ8EwAAAACAhqJiHKBCKi+BeqMyFACoRZpvAtUkGAcAAGgwFvoBgEYnGAeokMpLAAAAgPomGAcAGORUhgK9WegHaoHmm0A1ab4JAAAAAEBDUTEOUCGVl0C9URkKANQizTeBahKMAwAANBgL/QBAoxOMA1RI5SUAAABAfROMAwAMcipDgd4s9AO1QPNNoJo03wQAAAAAoKGoGAeokMpLoN6oDAUAapHmm0A1CcYBAAAajIV+AKDRCcYBKqTyEgAAAKC+CcYBAAY5laFAbxb6gVqg+SZQTZpvAgAAAADQUFSMA1RI5SVQb1SGAgC1SPNNoJoE4wAAAA3GQj8A0OgE4wAVUnkJAAAAUN8E4wAAg5zKUKA3C/1ALdB8E6gmzTcBAAAAAGgoKsYBKqTyEqg3KkMBgFqk+SZQTYJxAACABmOhHwBodIJxgAqpvAQAAACob4JxAIBBTmUo0JuFfqAWaL4JVJPmmwAAAAAANBQV4wAVUnkJ1BuVoQBALdJ8E6gmwTgAAECDsdAPADQ6wThAhVReAgAAANQ3wTgAwCCnMhTozUI/UAs03wSqSfNNAAAAAAAaiopxgAqpvATqjcpQAKAWab4JVJNgHAAAoMFY6AcAGp1gHKBCKi8BAAAA6ptgHABgkFMZCvRmoR+oBZpvAtWk+SYAAAAAAA1FxThAhVReAvVGZSgAUIs03wSqSTAOAADQYCz0AwCNTjAOUCGVlwAAAAD1TTAOADDIqQwFerPQD9QCzTeBatJ8EwAAAACAhqJiHKBCKi+BeqMyFACoRZpvAtUkGAcAAGgwFvoBgEYnGAeokMpLAAAAgPomGAcAGORUhgK9WegHaoHmm0A1ab4JAAAAAEBDUTEOUCGVl0C9URkKANQizTeBahKMAwAANBgL/QBAoxOMA1RI5SUAAABAfROMAwAMcipDgd4s9AO1QPNNoJo03wQAAAAAoKGoGAeokMpLoN6oDAUAapHmm0A1CcYBAAAajIV+AKDRCcYBKqTyEgAAAKC+CcYBAAY5laFAbxb6gVqg+SZQTZpvAgAAAADQUFSMA1RI5SVQb1SGAgC1SPNNoJoE4wAAAA3GQj8A0OgEoAEINQAAIABJREFU4wAVUnkJAAAAUN8E4wAAg5zKUKA3C/1ALdB8E6gmzTcBAAAAAGgoKsYBKqTyEqg3KkMBgFqk+SZQTYJxAACABmOhHwBodIJxgAqpvAQAAACob4JxAIBBTmUo0JuFfqAWaL4JVJPmmwAAAAAANBQV4wAVUnkJ1BuVoQBALdJ8E6gmwTgAAECDsdAPADQ6wThAhVReAgAAANQ3wTgAwCCnMhTozUI/UAs03wSqSfNNAAAAAAAaiopxgAqpvATqjcpQAKAWab4JVJNgHAAAoMFY6AcAGp1gHKBCKi8BAAAA6ptgHABgkFMZCvRmoR+oBZpvAtWk+SYAAAAAAA1FxThAhVReAvVGZSgAUIs03wSqSTAOAADQYCz0AwCNTjAOUCGVlwAAAAD1TTAOADDIqQwFerPQD9QCzTeBatJ8EwAAAACAhqJiHKBCKi+BeqMyFACoRZpvAtUkGAcAAGgwFvoBgEYnGAeokMpLAAAAgPomGAcAGORUhgK9WegHaoHmm0A1ab4JAAAAAEBDUTEOUCGVl0C9URkKANQizTeBahKMAwAANBgL/QBAoxOMA1RI5SUAAABAfROMAwAMcipDgd4s9AO1QPNNoJo03wQAAAAAoKGoGAeokMpLoN6oDAUAapHmm0A1CcYBAAAajIV+AKDRCcYBKqTyEgAAAKC+CcYBAAY5laFAbxb6gVqg+SZQTZpvAgAAAADQUFSMA1RI5SVQb1SGAgC1SPNNoJoE4wAAAA3GQj8A0OgE4wAVUnkJAAAAUN8E4wAAg5zKUKA3C/1ALdB8E6gmzTcBAAAAAGgoKsYBKqTyEqg3KkMBgFqk+SZQTYJxAACABmOhHwBodIJxgAqpvAQAAACob4JxAIBBTmUo0JuFfqAWaL4JVJPmmwAAAAAANBQV4wAVUnkJ1BuVoQBALdJ8E6gmwTgAAECDsdAPADQ6wThAhVReAgAAANQ3wTgAwCCnMhTozUI/UAs03wSqSfNNAAAAAAAaiopxgAqpvATqjcpQAKAWab4JVJNgHAAAoMFY6AcAGp1gHKBCKi8BAAAA6ptgHABgkFMZCvRmoR+oBZpvAtWk+SYAAAAAAA1FxThAhVReAvVGZSgAUIs03wSqSTAOAADQYCz0AwCNTjAOUCGVlwAAAAD1TTAOADDIqQwFerPQD9QCzTeBatJ8EwAAAACAhqJiHKBCKi+BeqMyFACoRZpvAtUkGAcAAGgwFvoBgEYnGO9fRZJSuVxOU9PA3LWmXC4vPTbQD1ReAgD1rlQq3VsUxXPlcnl2tecCAFANgvF+VCqVnimKYrt5c+Znk80G5uqgua++1vXt0wMyIABQ81SGAr21tbWdWu05AGi+CVST5pv9qCiKR5LkVw8+OmBj/vqXM7q+HbhBAYCaViqV7k3yY5WhAEAt6ezsfOeSJUu2fvTRRxdUey5A4ylVewKDWUtLS2uS6UOGrFva57A9S9u9fasM22iDfhlrwWuv5+mnnsvPbvpFsXjxkqJUKr2vra2tvV8Ggwan8hIAAACgvrmVSj9qb29va25uPm7x4iXfvP2H9240QMPOL4picnt7u1Ac+ol7cgIAAADUNxXjA+A973nPluuuu+5B5XJ5l1KpNLo/xiiK4uWmpqYZS5Ysue2RRx55vj/GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAa39ZJsWO1JrMjwZLPU8PwAAAAAAKjAtsm2DycPP5w8vLL9Riebd+23U7L92pzDOcm5f0r+9InkE2vzuL1tlWxZ6XOOSo6elcy6KrlyLU+n9M5kp62Tt67l4wIAAAAAsDI7Je8skqJIipXtt02yXdd+70jesbbGf0/SvDhZXCTFtGRaknXW1rGXdlBy0MJk4X8nJ1fyvFOT07pe9/hkwmoM3bRVsuWY5B8/mXzyG8k3HkgemJfMK5LiO8l3kuQdyTuWJEtW52vjZMRqzAsAAAAAWFpXENiXry8nX672fFl9fQ3Gd0h27Npvx2SHtTH2yGTjJ5IniqT4a/LXpY+7e7JbJb+Hvb96j3Vdcl3XtuuS6/K327f0RdN9yX1FUrySvNLXCu9/SY74Y/KHRcmiFc2xM+m8L7kv6fnvUOnXW5ORfXwtAAAAwCC0brUnANBlp+SdhyXj9k4+uleyd7Xns6bWWeoc25ksWQuHLF2Z/L93Je9KkhOS//h98oe1cNzlOiI58qXk5c8lkw9PDt862Xq/5JC/JrNHJVus7LknJ/99X3L/LcnN5aRpVfvPSv78aDJjuzdvOVNOyi8lL70leUuSnJh89tHkkceTh/+S/LX380tJaVWv563JyOeTWavaDwAAABj8BOOwlr2RvHHyKm49MS35v4GaTz35XfKbJJmbzK32XNaG9ZIhXd8vSRav6fEuTL56UHJQknwr+fY1yQ+W3j49eewdb4bma0n588nnXkpe/Epy3oeSD7Ul03ZPdn85ebEvBzgm+ddjkn9d1X6lpDQjmfGx5GN/TGb+MZm5ZTL6ueRPSXJRcvGavhgAAACALoJxWMsWJgu/mXyz2vNg7RmZbLzZUk0od0i26/p+p+SdXd8/mfz/7N17fM71/8fxxzVsM9vM7GBOMZFvB762kHKWSEY0OSREOeZUhCjnmlNkUk0k5BzCVyp0QKI2/JZDcghzGGPsZHa6fn9s11zbrm3XZmx43m+363bbPp/38bo+n5rX9f683icqgGcpcAR4GKqbzlWEKiXBObs+jsFxclhVPgWmvg1vA/wAPwyDtywUiz8GR62dl7UCYFos3PgY5iyGr67BtYLuw2QbbLtTbYuIiIiIiIiIiEgBM+UuvpNBw/tdUX0PO4G/NXmrq8HDm2FzPnNeV8qme8MMmG4qtw/2ueYQYL+T6kDtnM77gG8URP0Oe7vBK7fbXwWomFMud2tzvZuUBzflGBcRERERERER0IpxEZFcRUPcOThn+r04FPcETwDz47eTRzzBcl2HtbD0JegIcAAOtIRW1yEKYCWs3A8h0+AjCiaHeY72w8Hszj0Cj3wPW53AqTx4HYADmcu4g+Pz8FLmFDAiIiIiIiIiIiJyj8rPaufyUCkGYkx1G0LD7MougC9M5SbCJAtFiveCXj/BjkiITIKky3B5C2zpBP7WjOchqDoFpv4Ov1+Fq0mQFAMxoRAaCIHeZqlB8jrn7Mpau6I6u3abQ/NFsOgoHI2DuCRIugSXtsO2QTAIcMjLuLyh8hpYcx2uG8E4ASZkrmPtSuWW8JxZOZuc2vEEj8znX4FupvN/wp/mq5z9oK3p3Bh4N6dx5EcDeDoYQppAo9zK1oQaZ+CMEYwH4EAlKJ+5jDs4noQTRjDOtjLVUF5WjOdjhb5WjIuIiIiIiIiIiNyu/KYBGQXvmOrugl2WyjwOtZIh2QjGo6k5pO3Mz1eAin/AHzkFAtfDBsA+m2EUmwJTEyAhpzYmZAoSF2ZgvBy4b4EtudU7A6frw1PWjKscuJ+FsznNGawPjHeAjkYwxkGcpfPm7ThBWQtFih2DY9/Bd+5pecvT2JuCzGfhrBs45TSOfChxDI4ZwZgCKYEwFyhpqeBTUP8yXDaCcR2sy2ksA2Ggab7vw/jM53+Bn/NyPSgwLiIiIiIiIiIiUsjyGxgHSvwFf5nqtwW/zAV+gB9MQcpm0MT8nBOUPQ7HTfX/hr+nw7RR8M4CWBAFUaZzn8NnFvq3WQ2rzYOGoRD6EXw0Ct6ZBJO3wtYkSJpwBwLjw2CY6WUqcwNumB8fBsMyz/kIHDGVvwk318P692H8aBjzJXx5Fa6azsdATG2ok9u4PofPjWDcBJtGw6iZMLM/DMhcx9rA+KvwqhGMl+CSpfOPwCOmdlzAxVIZX/AhU9qraRBgqtcROuQ0hvxyA69dsMvUzyE49AQ8YV7mFegeC7FJkPQOjLTQjAEo6QyuFaFCNXjYdC0bwZj5vd0Mm6/BNdPrJtw0/3zMX6Ac4yIiIiIiIiIiIoXuNgLjNIbG5kFpzNJutIY2pnML4IvMddfCWtP5mTATKGZ+3hsq/wv/mspk3kBxHLxnHkDuDF0sjbEKVHkWns3vnK0pa217a+Eb84Bt5hQvAKWhzHfwnancX/AXmd4b8z7jIT4WYofD8NzmYm1AdhAMMoLxFJyydN48MG7tqu+m0NT09MBSWJp5Hrf7SruGTEoEQZDpXBRElQN3wGD+3l6H60fgyEk4eR7OR0JkPMTn1lcSJLWDdtnNdSfszOV9tnEBl+y+VLDAYFbeYGUdERERERERERERyU5ego+W6i+BJabzPaBn2uFih+CQEYwX4WJpKGNexwd8TXXSUqVY9BK8ZCo3Bz42Ha8E5W/ADSMYkyG5OTTPz5zvZmC8LtQ1lYuEyIpQIYduHU7CSVP5DmmbWFrq0wjGX+Dn3OYBOQfG60DtKlAFYBJMNoLxD/jDUjveUN2snVK59VsayphSvZyCU67gbGkeBRgYB2A4DE+CJLPrEmvS2JgHwK/BtTAIOwpH/4Q/oyHaCMZYiPUB38x9eoCn6QuA3L6AEBERERERERERkUJyu4FxT/CIhEgjqXmxAdv+MMBUx9JK7jnwsem8peCimVIpkGIEYzAEmw6OgXdN9RfBovzO+W4GxgNhrqncBAv5vzMbDG+ayn8NX2fXpxGMXaBzbu1BxsB4eXB7FV5dBAvdoVwYhMVAzBAYatowdT2st9RONXjY7JrILv+7SfHv4XtT+bfh7cxjsuY1G+aY2rB0Pm1FeBaZV+X7QfutsHUCTOgP/V6Bbn7QtjE0rg11HoZqaRuKWtz8tBf0Mo3jJ9iR+Xw/6G/+2VSECt5Q2XQ+BmJu95VNXncREREREREReQAUz72IiORFPMSPgTF5rRcOl8bC2E/gk0pQeRS89Ta8BfAdfLcKVmau0zQt33gSJDWGRo2hUXbtJ0KiLdhWSVvNDNAaWpl+zk9gvDA0NJvjWliXW/n/wfdz035+Ep7Mqexu2Jlbey7g8rTZZp5nIdwGbFIg5Qv4IgWSS0Gpj2FOCqQAnINzltoyZPySJCWnfhfAZ8/Bc6bfkyHZ/Pyx1E1ZcxUBEXmtA3AS/jH/fRN8uwm+tbZ+ZothcWfofBz+GQyjMp9/A143gtGQlvLkV9gZD/EN4JnrEFnKihX2uXECQ/TtNiIiIiIiIiIiIvIgy8vq6RzY/AF/mK+UjYGYqvCQpcLmG2ta+zIPqF6CS2Yrlu3u5JwLasX4dbhuJHUjUqz7cs9gSskRAzHZ9ZkACdk10BSaLoKFh+GwaeW9+etf+DcQAgF7V3A2rRQ3vdJygdtkbvchqGr2/mc7l4kwKXOfmTcktdZYGFeA6Uls/oV//4V/q5h94QJgOv4wVDMdM1+pnnaohKVGn4R6RlJT25jq7If9ZqvLLdYz6QxdlIJFRERERERERETkLiigwDgt4TnzAOhsmJNdWfMczPlJ5ZIESdkFjK1RGIFx05yjwerFvjEQk/lLgbz0ab5BqSkob/r5CXjCUp1O4G9eZxfsypyOpApUMftMLAV7DbNhtqnMD/BDYQTGa0KNTuBvYYwlTW1l/vLGQhDc4jFLVsJKIxjfgDfM65g+x8/h85zqKzAuIiIiIiIiIiJylxRUYHwtfGMeUL0Ml8uDm6WyphXj8RCfn75uwk2zgLEhr/VNY7wO13MpaiiowLj5ZqFWjjl9xbilcVrT56vw6mE4HAhz/aC9aUVzToHXdtAu8xcScRA3GIaYxl0lY2A8y4p98xzwe2APUKowAuPDYJgRjFfgShkobTruAi6mttzAy7xOfgPjdaB2CqSEQViVjO8PpkD5Zbic06arCoyLiIiIiIiIiIjcJQURGH8ZXja1Yx4gXwJLLJX/B/4xlcnPRoKn4JSp/iPwSF7rmwLrSZBEDkHq8uBWUIHxv+HvvIzZfIPLYAjJT59kmpv55pvZVZgP841gPAkn+0Bv02pnIxjXwwaA8lDJLLDslLmNZtDECMbf4ffSUMZ8vHczML4KVhnBeAyOmR9/GKqZ2nIHR/Nz+Q2Mb4b/GcE4Bt6tABUzj3U6TKuSKW1LZgqMi4iIiIiIiIiI3CW3GxgvD26mnN//pG50aLsVtprafRaezVxnOawwnfeHTnnt05SywhSIzGv9C3DBVL8aPJxdubbgl5fAeE4r0JfAV6Zyo+Cd3MbYHwaYys+Bj7PrMy+fmxWB8eJn4awRjLNhNqSmIwmGECMY09KS4AGepnY8wSOtbinMAvGBEGgedC6MwLhpLvPhU/PjT0MDIxhjITZznfwExv2hkxGMURDlBGUtBcbNxUO8pVcCJJjqZVfmXtlsVkREREREREREpEi73cC4eZDaD9oC1ILHTXnAj8NxoKR5nW7wiqnOn/AnuW9GmaG+ebqPK3ClPFTKy5i3w3ZrgtQ/wQ5r3p9MK9BtLZVpBa1NbYVDuFlA2RJ781X1vuCTucCdCIy/At1N55tCU7NTdi/BS6ZfXME58xcL/aDvETgyBAZbavtuB8bNV4Vn/vKlB/RMWxV/IrtxWhkYLwaUuAgXjWB8H8YD5BYYN53Lz2spLLNm/iIiIiIiIiIiIpKD2wmMd4QOpvpbYIv5ufnwqencNAjIVNXOtJrXCMblsCJzSos0xV+FV7fD9kzHDXtgj6n+P/BPbahjaYx1oW4H6Gh+7B0YaaobCZEWNqK0mQYB5gHJnN6fU2apXdqCX3bldsEuU7n9sP8hqJq5TBkovRE2mr83ltq6E4Hx/4P/M4LxKBwFbHJoysa0kedTUB9gBkw3gvFH+DGn8d6twHgfeN1I6oaj5cDd/Nwc+NgIxo2wMbtxWhEYtw+DsGkQ8Dv8fhbOmq7h3ALj2VEqFRERERERERHJTW6rS0Ukj+zAzpqg5RyYA+AMrp/AfIBESBwOw83LTYH3ukHX0lD6LXh7KSz/C/4v7fTN3tBnK3xnAzZdoUtLeHYTbPwb/ikGxarDw8/Bc+Wh/CE4lGkYxi7QbS/s8QTPh+Hh/RD8C/y8G/Zch0h3cG8MTetDvYkwcT2sM1VeBl++A6PKQlkXcNkH+9bA6sNw2BGc20O7x+HxL2Dh69Ant/dkG2w3lVsGS7+ALy7DpWbQvDW0NpXrDt1/h989wfO/8N+/4chm2HwADiZC4iNQvR20L5uWd/0IHBkAA3PrvyD0h36mLwg+gA+BlByKp0RCpCu4eqVtJvkfeBTgr6yfVaFoDs0ADsGhi3DZ7JThRWgPEGIhd7u1yoFTBajwDowaC+NCYP9liLnNYYuIiIiIiIiIiMjdkNdUDqZ6S2Gp6dgMmGGp7bfhbVOZ32EvmVYhvwLdYiE2p/5SIMWU7zqzavCwKf91Ti9LechbQ6s4iMuuTtoq9ZLWrMyuAd6REJnT+2XiDdX3w/7cxvwD/JB5pbOlz60gVozXAO9oiDaSnl4k1y8fTavLR8MYgHNwzgjGPtA7p/HepRXjNpfhspGs+dk7gb+pHUtPGVi7YrwWPG467g2VzdvQinEREREREREREZEiLj+B8RfgBdPvF+GiKzhn07ytea7swTAkc4HyUGkGTP8/+L84iEuCpCtw5XfYOwtmPQ61cplCsS7QeT1sCIOwREi8CTf/hX/XwjddoDOpuaCz8IbqC2DBSTgZD/GxEPs7/N4fBpjqWBuArgE118Cay3A5CZIuw+W1sDa7MXeFrt/Ct+fgXCIkJkDCKTi1HJa3Mltlnp38BMYfg0ctBF7tf4PfTF9CtEhbaZ2bVbDKFMCvCTVM7T4O/8lpvPkNjJtS8yRDcm5l68NTpv5ehBdNxytChfNw3gjGXbArp3GaB8FNaWPM5+YHbY1gTIAEMl1fCoyLiIiIiIiIiIiIFBIXcKkKDwEOQIkx8G6mYHrxTbDJFIydCTOtbbs39DHVM602vwSXAIOl8lYGxh38oH0jeKYWPF4TanhD9W7wSgzEGMH4L/yb29gmwxRToN8ZXAFqQo1jcMwIxptwsy7UzWmc5oFxUzA97YsdG8B+PWwwgvEgHMzcRnaB8XiIz+mVAAmmermVrZiWwkZEREREREREREREzJivnDZ//QQ/AcyAGaZjO+FXwC4PzZcypU8xvabA1OwKWxkYL34Tbub0xMICWJDbwA7DYSMYD8ABgEEwKAqiTMHy7NK9mI/TPDD+JXyZ3XgmwITMbWQXGM/r0xk5vSpAxdzeBxEREREREREREZEHjjs4Zg6onoNz9eBJgIeg6iW49Af8kUM6nGz5gO9+2B8N0UthGTkE1q1NpRIKodkFg3+CHTnlXQfwAM8rcMUIxtlpG8VOh2lGMMZAjD90yqm+pcB4OXBfDxvMc9LHQuwS+MrSnPObSkVEREREREREJDcWH9UXEZGMaoB3CbA3QPE4uHESTmKWp7sBPP0X/B0NV+7kOH6H3wHmwOyVsCq7cnWhrgd4GMDGkLZZayLEH4OTJ+EfK7sz1IFa0RBzPHUzUZsZMG0ezD8Np3Kq+F/4L8ABOALczNyuO5S6nBrwjiObwLcLuEyBKQBvwptWjllERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERO4z2nzTjNG42uIGcA+KU6dO/OLtPaZpYY9DRERERERERERE5E6yKewBSNERGXm9ycmTH/5c2OMQERERERERERERuZO0YtzMg75iPCQkBIAyZUpr5biIiIiIiIiIyH2mTp06ew0GQ73CHocUSV+HhIR0L+xB3E1aMS5ZaOW4iIiIiIiIiMj9R0FxycErhT2Au614YQ9AiiZTcFwrx0VEREREijat/pMcPHCr/8zp3pAcPND3BkBw0ObCHoIUEeGREbQZ1QvgXCEP5a7TinHJllaOi4iIiIgUfQr8SQ4euNV/5nRvSA4e6HtDRFJpxbjkSCvHRURERETuDUGbggt7CFJEREaEM+q1NvAArv6zZFOQ7g1JFREZzmujdG+ISCoFxiVXCo6LtfSo4j0tGXg5JCRkXWEP5F6h6/2+dzkxMfGR0NDQyMIeyP1G947k4IF/rF1ECtffJ0MZEdALAIPBgLOjC/VqNaZPp+GUcnAq3MHlQcTVcJZsmEfIoT1ExVzHwd4BvxZdeaVd/8IemohIkaJUKmIVpVURayjQcU8rBswp7EHcS3S93/fcS5Qo0bCwB3E/0r0jOdBj7SJSJKwJ3Mm3n+3jwxELOHPhJLO/HF/YQ7JaUnISo2e+QWknVwLHr2Ld/D3MGL2YR6o+kV7m/KUz9BvXgYTEBKvbzU8dEZGiTivGxWpaOS7WCg4KKuwhSB4s37aNWatXA2i1eD4EB+t6v9/07j2NgwdPYDAYtFr8DgoK1oZPkioyPIJRbXqBHmsXkSLEYLChkldVuvn1Y1LgUIzGFAyGor+28Mz5E4RHnOOlVj1xcXYFoJJXVSp5VU0vEx1znfOXzuSp3fzUEREp6or+f9WlSNHKcRERESkMJ0OP0te3LX1929LvST+GNevCnIHvEbLjt3y1t2fzdsa2e53+ddvx/Vff3Pa4bsbF51juangEi96bxdvPvkK/un4MbdKZjZ99na8+bqetvIoMj2Dci29gTDHekfZFRIq6xMSb2NuVxGCw4e+Tofj19WXb7o10G96cBatmApCQmMDnK6bTbXgzOg1uyIwF7xJ7IwYgvU7wX7sZON6fjgMbMGHuEKJirqX3cfDoPoZO7kaHAfXpM8aPkEN7MtTNS38eZb2ws7Vn8bq5xN+MszgnU7qYlwY1wK+vb67jyKmONXPf/tsmeox4jp4jW3Hw6D6+3fY13YY349URLdl38Nc8tXXg8N7UMQ58ijcnvszx00fy+ImKiNyiwLjkmYLjIiIiUlgCd67lsz82Mnnd5zzz4nOsC1zM4glz8hS4vXrxMosnzqHD4J7M+20dzTq3LbDxXTpznnEd+pKYcOtR8+SkJGa+MQon19KMXzWP+XvWM3rxTKo+8Uie2y/ItqxRxtONKRsWYLAx3JH2RUSKqpSUFP45fZglG+bzQrPOGc4dOLKXLz7cRLe0nN3zlk7hxNmjzH1/JQs/3Mz16Ei+WD0rQ50fd2/kg7eDWPDBt0RGRfD5yhnp5+JuxPJmj3GsmruTBnWaMv/rD/Pdn6ODM6P6TWPfwV95/d12rN6yKEuAfOboxQB888meDBuT5jSO7OpYM/fT544TNHUD/330KWYsGEvYxdMsCvgfT/23KV+s+ShPbW3duY7xQ+aydOYPuLuWI3DpZERE8kuBcckXBcdFRESksBgMBpzKlKbuc40Y89Us/g4O5afVm6yufz3iKsYUI7Wb1Kd4ieLY2tsV2Nhirkdx6cz5DMfOnzhDxLlwWvX0x7lsGYoVL45X1Uo88cyTeW6/INsSERHLOg1uRIeB9Zn1xThaNepA9/YDMpzv+FwPHOxLUaqkI9ejI/l57xYGdBuNWxlPnB1deLFld34L3p6hTvf2A3BxdqWsiwf+rXplWCndoE4zKnt5c+b8CRxKOhIecY6k5KR891f3iYYsmPotzzfxZ90PSxgw3p9TYcdynXdu48jM2rm3bd4ZezsHmj3VhuvRV+n0fC/s7RxoVLcVFy6dJTkl2eq2enZ4E9fSbjg6ONO2eRdOnT1GSkpKrnMTEbFEOcYl35RzXERERApbKWcnWr7Snl++2UrzLu0ASExIYO2cRez77heSEhOp1bge3d8dREnHUgB82PNtAAY16Aik5js/uu8ga+Ys5PyJM7h4lKX7u4N4rIEPJ0OPEtBrBIE712LnYA+Qfuw4HkAiAAAgAElEQVSTPVm3ZgjoNSJL22W9PLC1t2Pd3MV0fad/ejvmYq5FsWTyXA79FoJzWRcavvgc3366LEsf1rSV2/x3rNzIlkVruBEdS+OXWtN5RN9sj2eef1JiEpsXrGDvlp+4dvkqpcu60LBDK9r06YyNjdbciMj9YU3gTuztHLI9X86jYvrPl69exGg0MmRS1yzlkpIS0392K+OR/rOrizvxN+NISUnBxsaGr9YF8uPujdSsVgu7Eqlf1poHe/PSX/HiJQAo5eDEK+36065FN6YHjWbGgneZP3FtjvPOdhzFLJe3du7Oji4AlEx7T12c3QDS+0hOTra6rTKly6b/7FjSCaPRSFJyErY2tjnOTW5P6Mmj9AoYkf57KXsHGjxWh1FdB+Dq7HLH+90ZuBYHu6x/85iEX41g3oav2HMohOsxUTjYO9C1RTv6t8v/vt7Z9W06vueTddiWKNjrzrztv8+etGrucnsUGJfbouC4iIiIFLYK1asS/m8YxhQjBhsDS6fMIyLsIu+vDKSEnS1BY6axetYCeo4fBsDoxTPTA9slbFP/QXMjNo4e4wZT/uGHWB/4FV9/+AkfbFyY57FYatvB2ZF+00az6P2PCN31By26tadFl3YZgtpfvv8RCfE3+XDzQoxGI5+PCrDYvjVt5TT/y2EXWDkjiLc+nUqVx2tw8VQYQLbHM1s2dR6nD//DoI/ew8u7EqcPHydodADJScm0H9A9z++XiMi9yMZwK72Ui1PqBpeLAv6Hu2u5bOvE3ohJD7afCz9NWRcPbGxsuHA5jLVbFzN/4hoqeXkTcmgPv/7x/W33Z+JUyplOz7/GuNkDctxA1JpxZJbXsdyttuTOMQVpz18J572Fsxi3cCbzh0+5a/2fuXSeoXMnsGr8vPSgdFJyEm/MHEWzOg1YNX4epUs5cfbSBc5HhN9Wu/Jg0LIOuW1KqyIiIiKFKTkpCZtiNhhsDERHXmfvlp/oNnoAZTzdcHRxpmX3DgRvz3mTzjrNGuDlXZnzJ85Q0rEUEefCSU7K/vHxvHqiYV2mfvsFTfzb8MOSbxjv35+wY6cAiL56jdDdf+I/rDfOZctQ2s2VF17vkr+2cpl/sRIlMBgMXLl4GXuHklR5rHqOx83FXItiz+btvDJ2EBVrVKVY8eJ416qJX//u/Lpua4G9V1K4rkaEs+ij93i7+7P0a1eXoV2asPHrzwCIjAhnXN8XMRoLNm3Byb9D6evny814yxsFWipr/pow6OUCHY9IXri5evJ4dR8WrJpJxNVwklOSORV2jINH92Uo99W6ecTFx3Lu4mnWfLeIFk/7AZCclqrk0pULxMRFsWnHitvq79+wf1i5eQHnL50hOSWZyKgrfL9zPbVr1ksPijs6OANw5MQBomOjrBqHpTrWzr0g30cpGsqX9eSNtl354+hBUox3b4Pu6zFRnLmUMWXdifNnOBcRTs9W/pR1LkPxYsWp6lWJZ56wPs2cpXblwaAV44UoOTmFSZO+Y/z4NtiYbWgUF5fA9Ok/MmZMK+zssn5Ea9fux9+/Tvrv33xzgHbtnqBEiWyebwJiY28ycuR6hg5txiOPeFos4+PjcxuzocntVBYRERHJr1Ohf1O55sNA6saaRqORSV0HZymXlJhE8RKW//xdF/gVuzf+SLVaNSlhl7pSqKBzljo4laJd/1do0a0dQaOnseDd6Uxc+ylXwyMA8KhcPr1sScfsH+HPsa1c5u/q6UbvyW/zzceL2LZsPd3GDKR6nceyPW7uyoVLGI1Gyns/lOG4Z+XyRF+9lr5iX+5dyUlJzBz9BnUaNGN84CpKOZXm0oWzRISnBgvKuHkyJWhDIY8yVeCandjZ53yf3E2Xzp9h7sShjA9clf60iDw4RvWbxqfLAxgw3p+k5EQql/fmtZeGZihTs1ot+o59kcTEmzSt/zxd274BQMVyVfBr3oUPPh1J2TIe+DXvwp+hu/Pdn6ODM6HHgvl223Li4mNwcS5LvVqN6N9tVHr9CuUeonXjjkwKHEpJe0eWzfox13FYqmPt3AvyfZSiIzY+jpJ2JdOfaEhITGDO2kV8t+8XEpMSaVyrHu92H4RjydRUbit3bGTRljVE34jlpcatGdG5r8V0JebpRDIzpXNpMCg1ZV1w0Ga8ynpgb2vH3HWLeadrf4tpR3Ibm6V2rbXv6EHmrFnIifNn8HApy7vdB9HgMZ/0ecwfNpmPv/mSkxfOUNmzAhN7Dec/D6X+3RoVG83kpYHsDv0TV2cXXmz4XLb95DQHU1/jew5jztqFtHmqGSM697V6Dg8yBcYLwIYNB5k8+TurywcHjwbg4sUo9u49lSEoDrBs2T5u3kyyGBQHCAz8OUNgPDDwZ55//tFsA+NGI0ya9B3Xrt2gatWyzJy5jQ0bDlosu2vX21bPQ0RERKSwXbt8lR2rNtMlLU+2k2tqnsuA/32Jazl3q9q4HHaBrYvXMHHNfLy8K3NoTwh/fJ+6KVpx29RcrQnx8enpSm7E5L6qNSelnJ14/rVOzB4wDmOKEQen1H+UXY+ITM8Dfu3SlXy1Zc386z/fFN9nG7Ju7pd8/s6HzPxxWY7HTVzcUx9zDz8dRtXHH0k/fjnsAmU83RQUvw+cP3OCiPBztHqpJ84uqZ+3V6WqeFWqWsgjK/pioq9z6fyZwh6G3KZHvJ9gU1Bwns+7OLsypv/0HNtu/lQb2jTxt3iub5eR9O0yMv13v+Zd8t2fm6snU9/6LMexAAzqPpZB3cdaNY6c6uQ0lszjz+33vLSV3TG584xGIyfOn2b+hqV0bdEu/fiUpfMIi7jIyvcDsSthy5igacxavYDxPYcRdvkCM1YG8elbU3m8Sg1OXbScsi03i0fPzJLf29nBkWn9RvP+oo/YFfoH3Vq0p0uLdhkC5DmNLbt2rRV7I45xPQbzcPmHCFz/FR9+/QkbP7iVjm/dzq3MHTIB2xK2jFs4k8lLA1k+7mMAxi+eTWz8DTZ+8AUAoz63nErPmjkA7D1ygE0fpqblE+solUoBaN++Nvv2vcO+fe8A8Msvw9N/t3TM5OzZSLy93TK0df78dVauDGbw4KakpBjp3XspERExOfafmJhMsWLZf5SzZm0jNPQ8c+b4Y2tbnBEjnmXXrrctvkQKQ+jJk/j27ctrAdn/T6Db5Mn49u1LQmJitmUKi2n8vn378mS/fjz79ttM+uorouNuL3Ai94/Q0JP4+vbltddyuMa7TcbXty8JCUXwGr9L4zf1Exd3M99t5NRuUXxvJX+MRiPRV6/x+5afCOj1Ng1eaE7dVo0BcPV0o7rP46yaGcTV8AhSkpMJO3aKo/ssLwoASE5KBlJXRMdFxbBjxcb0c15VKmHvUJLfNm8HIPFmAj8uXZ9tWw7OjgCcOHCE2KhoAML++ZfNC1Zw6cx5UpKTiboSyc7131OzXm0MNgbcK3pRvlpl1gUuJi4qhohz4fyQTR+5tZXb/K9cuMTxA4cxGMC9kheJCYkYjcZsj5sr7eaKT4tnWDp1HmH//EtKcjKn/vqbjZ99TaseHXP8zOTeUNbDC1s7e9YtnmsxrYl5yhPTz79t38SIHs8xsmcrjh7cx7Zvv2Z4t2aMeLUlB/f9mqHeX8G7GT/Qn4EdGzB3whBioq5ZHEdiQgIrPp/O8G7NGNypIQtmvMuN2Jz/TQTw85Y1DO/WjLiY1DQPxw8fYHCnRly+eM6qdo3GFLauXczYN9oxoEN9Rr3WhtPHj1hM9WI6lpiQAEDAiF4ADHqpAX39fNPLJSUlsmHpfMb0acuADvUZ/VobNq9ckP5Eiqmd3ds2Mrxbc1YtmJnrPEVECkujwf482c+PrpOH0LVFOwa0T91fJDL6Olv2/sTobgPwLOOGi6Mz3Vt2YHtwaiq3EsVSU7ZdvHIZB/uSPFYla8q229Hwibp8O/UL/Ju0YckP3+A/vj/Hwk5ZNTZr5uzbt236y3wTUoBmdRrg7VWZE+fP4FiyFOciwklKvpWO780OvXAr7YqzgyNdmvtx7OxJUlJSuBp9jV8P7mOYf2/cSrviVtqV11+wnErP2jn0eK4Dpewd0lfCS+60YrwAGAxkCEzb2BiyBKozH3vttaUcPnwBg8FAw4azuHEjkT/+GMWkSVvo3r0e5cuXBlKD7jNnbiMg4EWaN0/9Rik29ibNm3/M2rVv8MILn5CQkEzTprPT205MTObPP1NXpU+e/B179/7LggXd2LXrBO7ujjRq9PAdey9Ebsc/585x5PRp/vNQxke0g48d4+ylS4U0KuvtDAzE3taW0xcvMvGrrxj/5Zd8NGhQYQ9LipB//jnHkSOn+c9/Ml3jwcc4e7boX+MFOf4zZy4xdOhcVq0aj23ailwRawxu5I/BYMDB2RHvxx/h1bFv8tjTvhnK9Js2muUBnzLevz/JiUmU936Il4a+lm2b5apUpHmXdnw68gPKeJSleRc/Qnf/CUAJO1v6TB3J6plB/LJ2Cy7uZanTrAGH9+633NZDFWncsTWBQydi7+jArB+X4eDsyLHgv9i2/FviY+JwLutCrUb16DZqwK0xB4zmywmzGfFcd8pXe4imnV7gZOjRLO1b1VYO809JTmbJpLlcPncRtwqe9JnyNgaDIdvjmfWe9Bbr533FnEHvEXMtCveK5Wjdy58m/m1y+NTkXuHg6Ey/UdNYNPt9Qv/cRYt23WjRrkuOKUvOnT7O1KANLP90GgtmjKVOg2YELPofaxbOZs0XH1G7XuP0srt/3MjbHwSRkpzEvEnDWPn5DF4fOTVLm0vnTSHiYhjvz11JCVs7gqaPYfUXs+g5dHyO42/yvD97f/6OzSu/oFOfYaz4fDodegzCvVwFq9pds3A2B/f+wmtvTaZq9ce4dOEMtnYluR4Zket7N3rmYgJG9OKTb/ZkSKWybN5UTh8/zKBxH+FVyZvTxw8TNG00yclJtH/l1n175MBePvxik1b5iUiRtjNwLbE34pj41RzW/bqVdk8/i20JWy5eTU3l1nVS1lRuiUlJeLq6Mbn323z8zSKWbVvPmG4DqVP9MQs95J+TQyn6t3uFbi3aMTpoGu8umM7aiZ/mOrYSxXMOjZqneYFbqV5MAtd9xcbdP1KrWk3sSmRNx1e2dJlbYyxZCqPRSFJyEuFXU//fUtnjVio9x5KW/3+b2xxMKnp45TgXyUqB8ULy5ZevMn78/6hfvwotW9bkuecCmT79R/744zTJySn89NPfREffJDY2gaioGxw8GMaOHam5tZo0mZ3+82+/jeTpp2ewZ8+tx53q1p2W/vMjj3gycGBjoqLimTlzGzNmdLi7ExXJA98aNVi5YwcTX8sYvFixfTt1qldn919/FdLIrGdjMFDVy4t+fn4MDQwkxWjMsIu8PNh8fWuwcuUOJk7MdI2v2E6dOtXZvbtoX+MFOf7r12M4c6bofxkgRYf3EzUJCrYu36Ozqwv9p4/JU1tdRvaly8hbuRibd7n1aHDtxvWo3bhehvItu3fItq3uY9+k+9g303939XTjrc+yBv/MeXlX5t0ltxY6mAfFzfuwc7DPta2c5u9e0YtJ67I+Yp/d8czzs7W3o/OIvnQeobyV96sn6jZk6oJv2bbha35Yt4Rfv1vLm+/PoWLVGhbLN2/bGTt7B55q1oY9OzbzfKde2Nk7ULdRK37duo6U5OT0su27D0hP0dLKvxdL5k7O0l709Uj2/ryF9z5eThm31L2RWr7YnQUzxmQIjA/u1Cj95xbtutL5jREYDAZ6DB7HB2/1pFjx4tg7lKJZ285WtRsXG82OzasYPmk+D/+nNgBelbwBrAqMWxITdY09OzYzctrC9PfPu2Yt/F7pz7rFgRkC48917IG9g1b43Y+U7kPuN+4urnz4xig6TRjApxu/ZuhLr+HqlJrK7X8BX1LO1XIqt+frN+VZ34bMXfcl73z+IT/OXIZt8dQFMvEJ8enB55gbt/fktXMpJ157vhMDZo8jxWi0amz5FXb5Aou3rmHNxPl4e1Vmz6EQvv/jV6vqmlZ1X7p2Jf3n8EjLqfSsnYNpg12xnt6xQvT33+E89pgX4eHRlC/vwrPPPsK777bm9defYcKEF/jyy1f5/vs3GTOmFQsX7rHYxrVrcZQsmTH/UfHitz7Wl1/2wcHBllGj1tO/fyPq1q1Cw4azMrx8fQMy/C5SWDo1bcoPf/xBZHR0+rHzV66wOzSUds88k6HsvqNH6TZ5MvUHDMBvzBj2HDoE3Eprsvuvv/AfP54GAwcyZO5crsXEWHUeICExkekrVtBs+HAaDh7MuwsWEHPjRob6G3fvpvnw4cxctcriXG4mJlLSzg4bgyHbOolJSczfsIG2Y8ZQf8AA2owezYLNm9O/XV7z8880Gz6cqLSULAeOH6fR4MEc/vdfnho4kN2hoen9xSck0HjIkPT3QYqmTp2a8sMPfxAZaXaNn7/C7t2htGuX6Rrfd5Ru3SZTv/4A/PzGsGdP2jWelhZk9+6/8PcfT4MGAxkyZC7XrsVYdR4gISGR6dNX0KzZcBo2HMy77y4gJuZGhvobN+6mefPhzJx56xrPy/hz6gOgV6/UtCwNGgzC1zdjgO3//u8E3bpN5qmnBtKp03hCQ0+mn0tMTGL+/A20bTuG+vUH0KbNaBYs2JxhVUZUVCwjR37G008Pom3bMezde8Saj0dERNI4lHKi3Sv9mbpgI54Vq7BgxrvZlnV0Tv3Hul3aKjdnl9RUkSXs7ABINguMl3HzSP/ZxdWdm/FxWTa5vXr5YuoGskO60tfPl75+vgROHEJ8XCxJSbdSYgWu2UnQpmCCNgXT+Y1bK/e8Knnj+0wLvv/mK158ZUD6kw+5tRtx8RwpyclUqvYIBeXKpQupG9ZW9s5w3LN8ZaKvX8VovDV3j3IVC6xfEZE7zcmhFO++8ibLflzPkdPH8XR1w6f648xcFUT41QiSU5I5FnaKfUdTU7lduHKJA8dTU7ZVcvciITE1ZVsVr0o42Jdk82+pKetuJiaw9MfsU9Y5O6SmrDtw4ghRsan/Jvkn7F8WbF7BmUvnSU5J5kpUJOt3fk+9mrWxMRhyHVt27VojKe3/cReuXCIqLoYVOzbmUuOWSh5eeHtVJnDdYqJiozkXEc6SH76xWNaaOUj+aMV4AfD1zZhztVGjj7KUMT/Wt29DXn21HleuxFK5sivbtx+lRg0PnnzyIZ588qEsdZ9//jFatHiEmzeTOH78MgkJSQwcuJI2bR4nKGgXbm6OGcrb2NwKjCcmJjNy5DpOnIjA378OtrbFsuQS9/UNYPPmgbi4lMzX/EUKik+NGlQpV471O3fSu03qI9mrduygyX//i2eZMhnKxt64wbgePXi4fHkC16/nw6+/ZuMHH6Sf37h7N0Fvv01SSgrD5s1jxsqVTH39davOT1m6lLCICFa+/z52JUowJiiIWatXM75nz/T6e48cYdOHH2I0Gjl14UL68ZSUFI6ePcv8DRvo3KxZhjGb1wGYumwZh0+f5qNBg/D28uLw6dOMDgoiKTmZAe3b49+kCd/t3csXmzczrFMnpq9YwaAOHXi0ShWa1anDlr17eeaJJwDYHhKCi5MTTz36aEF8FHKH+PjUoEqVcqxfv5PevdOu8VU7aNLkv3h6ZrrGY28wblwPHn64PIGB6/nww6/ZuNHsGt+4m6Cgt0lKSmHYsHnMmLGSqVNft+r8lClLCQuLYOXK97GzK8GYMUHMmrWa8ePNrvG9R9i0Ke0aP3Uhz+PPrY/Fi0fTq1cAe/Z8kiWVyurVPzFnzmDs7W15772FTJmylFWrUlcJTp26jMOHT/PRR4Pw9vbi8OHTjB4dRFJSMgMGtAdg/PjFxMbGp79fo0Z9np+PS0TkgVfKyZnnO73G7HEDMgRx8+tGbEx6Wpbwc6dxKeuR4d8uAE5pK8oDFv0PV/dyee7j8oUwDu77BZ+nW7BlzSKGPu5jVbtOaY+6Xzp/hiqZHu8vnvZofMLN+PTxW5Pz3CVtVV942GmqPvJ4hjGWcfPMsLJPm9eKyL2mce16tKrbmElffcyycXOY1m80Acs/xX98fxKTk/Au/xBDX0p90jQ5JZlJS+Zy7vJFKrh5MqVPaso2uxK2TO0zkpmrg1j7yxbcXcrSrE4D9h62nLLuoXIV6di4NUMDJ+Jo78CPs5bh7OBI8LG/WL7tW2Li4yjr7EKjWvUY1e3WUzk5jS27dq1RpVxFujRvx8hPP8CjTFm6NPdjd+ifVr+HAf1GM+HL2bQc8SrVK1bBv0kbDp06ZrFsbnOQ/FFgvAAEB6fm805ISKZBgxns2/dOhnzivr4B7Nz5Fg4Ot1Z2Hzx4DicnO2Ji4tmz5xS+vpXTy3p4OGVo/9q1OLZtG8Kzz87lP/8ph8FgYNCgJjz2mBcxMfHMmfMTc+b8RJ8+DXByss/Q95Aha3B1zT4noEhR07VFCz7buJGerVuTkJjIt7t38/HgrHm0mtWpQ3xCAifOn8exZEnORUSkf1sLMKB9e1ydnQHo1aoVk5csyVA/u/OR0dFs2buX5e+9lx6M796yJWMWLMgQGO/x3HOUsrfP0GajwYOxsbGhkrs7nZo2pUvz5hnOm9e5FhPD5j17WDhyJDUqpq4QquXtTX8/PwLXrWNA+/YYDAbG9ehBzw8+oHixYpSyt08Ptvs3acKQuXOJi4/Hwd6eTb/9RsdGjSzmg5WipWvXFnz22UZ69mxNQkIi3367m48/tnCNN6tDfHwCJ06cx9GxJOfORZCUZHaND2iPq2vaNdyrFZMnZ7rGszkfGRnNli17Wb78vfRgdvfuLRkzZkGGwHiPHs9RqlTGa9za8VvbR3aGDvXHw8Mlvb833/yYlJQUoqLi2Lx5DwsXjqRGjbT7ppY3/fv7ERi4jgED2nP1ajS//nqQpUvH4uaWul/H66+/wJtvfpxrvyJFSV5Sx4gUlLB//+HA7z9Tr3Er3DwrEBN1jZ3fr6dm7XoF8nj2uq/m0a3/KK5FRvDdmkU83cIvSxlXN0+qP+7DqgUz6dx3JC5l3Dh/5gQxUdeoWbuehVZvSUlJYeFH79H0hZdp1aEH4/p3YNePG2jY8sVc2y3j5knteo1ZNm8qvYZNoHzlapw7fRx7B0e8KlbBvqQDv23fTKuOPUhMuMmP65dm6NvBMfX/uSeOHKCSd01KOTlT2tUNn6dbsPSTqfR+axLlK3lz+vgRNi7/jFYde9z2+ykicrc84V2T4KCsf5dM6XPriR1XZxem97ecyq2iuxfrJmVN2QapAfbGmf773r1lh2z7Hdv9TcZ2v5WyztPVjc/eyjnNXE5jy67d7Oac+fjILn0Z2eXWE7BdmrfLtn7mY9XKV2bp2NkZyrzY8DmLZXOaQ3ZjldwpMF6ALl+OxtnZPsvGm5bUrl2BNm0eo2fPJcTE3GTYsNRgl61tMb77LuNmfQ0azKBUKTt+/nkYxYrZ0KTJbB57LDWhfkzMTbp2fZLLl2MYNWoD8+d3SV+NeuNGIi+/7EOTJtXZuvVwAc9W5M5oXb8+gevW8dP+/URGR1PJ3Z3a1aoRevJkhnKB69axcfdualWrhl2J1NWm5o/iepitMHd3cSHu5k2rzl+8ejVtU4tJWcaWcVMLjyzndwYG4pD22LAl5nUuXLmC0WjEu3z5DGUqe3pyNTo6PTe5t5cXLXx9+er771kwcmR64Nu3Rg28ypZlx/79+NaowcETJ/jwjTey7VuKjtat6xMYuI6fftpPZGQ0lSq5U7t2tQzpQgACA9exceNuatWqhp2dhWvcw+wadnchLu6mVecvXky7xrtauMYTza7xilmvcWvHn1sfJUrk/OeHu7tL+s+lStmnblCTlMyFC2n3jXem+6ayJ1evRpOSYiQ8/GrasVvjd3TUE1EiItZwcHTmWGgw275dTnxcDM4uZalVrxHd+o8qkPar1azF2L4vkph4k/pNn6dtV8t/u/QbNY3lnwYwfoA/yUmJlK/szUuvDc1QxjzHOMCclT/z8/9WE33tCm069aGErS3+rw1l+WfTeLROA1zdPHNtt8+IqXyz+GNmvzeQG3GxlKtYhTdGTqWErR19Rkxl9YKZ/LJlLS5l3anzVDMOH9ibXrdchYdo3LojgZOGYl/SkVnLfgSg91uTWL9kHnPeH0RM1DXcy1Wk9Uu9aNLGv0DeU5HcnL90holzhxI4fhW2JWxzryAi8gBRYLwA/f77v+kBa2u8/vozhISc5fDhi5w6dYVatSrkWD5zwD0lxcjGjaHMmeOPt7cbSUmpAZESJYoRF5dAu3af8cMPg7HRY3lyD7EtXpyOjRuzfudOrkRF0eO557KUCbt8mcVbt7Jm4kS8vbzYc+gQ3//xR4YyMTdupAepT4eH4+HikuFR3ezOuzqlPrHxv4AAyrm6ZjvO/KzMNq/j7uKS3vfjVatmmJtnmTLpG3aGXb7MLwcP0sLHh0VbtuAz9NY/3vybNOF/e/Zw4coVmtepQxmnjE+bSNFka1ucjh0bs379Tq5ciaJHDwvXeNhlFi/eypo1E/H29mLPnkN8/32mazzmBg4Oadfw6XA8PDJd49mcd3VNu8b/F0C5cnm/xq0Zv7V95JUpYH76dDiPP25234RdxtOzDDY2hvQg+KVL19J/Dg+PLLAxiIjcz1zdPHlrquUVfQDejzxB0KbgLD9b8zvAU83bWAwIZy7r7OJK/zHTcx1DZm1e7kObl/vc6q/ZCzzV7AWr2gWwL+nAKwPG8MqArCvyatdrTO16jTMca9mhe4bfuw8aS/dBYzMcs7Wzp/MbIzLkQbd2PiIFITrmOucvnSnsYYiIFEnafLOAnDwZwaef/krXrk9aXWfDhoNcu3aD/v0bMmDASk6ezNtu52vWhODh4YS3d+oGN6ZNN8uVc+b77w/j6emcbVA8Li6BlBQj589fB6BYMQXPpejo1LQpIceOcTUqipZPZr2nbm1wcYWouDhW7NiRpcy8deuIjY/n9MWLLPruO/yeftqq856urvhUr0iEeQQAACAASURBVM7MVasIv3qV5JQUjoWFse/o0QKdo1vp0rTw8WHq0qX8ExZGckoKf506xWcbN9KjVSsgdXXwewsX8nLTpozv1YtjZ8+yYdeu9DZeeOop/jp1im937+alJk0KdHxyZ3Xq1JSQkGNcvRpFy5YWrvG0lCkXLlwhKiqOFSssXOPz1hEbG8/p0xdZtOg7/Pyetuq8p6crPj7VmTlzFeHhV0lOTuHYsTD27bP+Gs9t/Nb04eycmubrwIETREXFWtWvm1tpWrTwYerUpfzzTxjJySn89dcpPvtsIz16pN43lSp54O3tRWDgOqKiYjl3LoIlS36wem4iIiIi95MRAb0AeGlQA/z6+hbuYEREihitGC8A3377f3z00Xb69m3IM89Us6rOihV/snp1MJ9/3g0PDydq1aqIt7cbiYnJtG9veZXGxYtR2NkVp3hxG44evci8eb/w6addspR7/vlHmTJlK0OGNM22/6lTt6anV6lfvwpOTlnzyIoUFrfSpWnh60tlDw9KFM/6n6kq5crRpXlzRn76KR5lytCleXN2h4ZmKFOrWjVeHDuWm4mJPF+/Pm+0bWv1+Wn9+hGwfDn+48eTmJyMd/nyDH3ppQKf56TevZm3fj2D5szhWkwMFd3d6dW6Nf5pQe4vt27lSnQ0fdq0wbZECYb6+zNt+XIaPPoonq6uODk40KxOHY6cPo1P9eoFPj65c1IDvL5UruxhMa1IlSrl6NKlOSNHfoqHRxm6dGnO7t2ZrvFa1XjxxbHcvJnI88/X54032lp9ftq0fgQELMfffzyJicl4e5dn6FDrr/Hcxm9NHw89VI6OHRszdGggjo72/PjjLKv6njSpN/PmrWfQoDlcuxZDxYru9OrVGn//W18OBQT0Y8KEL2nZcgTVq1fE378Jhw6dsnp+IiIiIveLmaMXMyKgF998skepVEREMtEyYTNG42pjfur9/vsp7OyKU6dOJYvnP/98F717N6BEiWLpx/bsOUWNGh6ULVsqQ9nhw9cye7a/xWMvv7yQixej8PN7nMceK8/589d4/fVnLPZ56VJ0hk08g4PPUKdOpfQV5ElJKSQmJlOsmAFb24L5fsRgeFnX0wPOx8fHCBAcFFRoYwg9eZJeAQHZ5vvO7fy9psukSbzYsGGWjT7zYvm2bcxavRrg45CQkGEFNrj7XPr1Hnx3r/fQ0JP06hXAzp2B6alS8nJecte79zQOHjyBwWBoFBwcvCv3GpIXpntHG0uKSWR4BKPa9AI4FxISUrGQh3NPSr+vlJJD0kRGhDPqtTbwgN9XpntjU9CDe2/8fTJUgXEzEZHhvDbqwb43bv27XX+LSarwyAjajOoFD+B9oRXjBeCpp6rmeL5fv4ZZjjVoYLlO5qC4+bHVq2/lyzMaIacUx+ZBcQBf38oZfi9e3CY99YqI3Huux8by/b59XImKot0zlr8gExGRouVk6FECeo1g2PzJfPPxl1w4eQbPyhXoNXE4D/3n4cIenoiIiIjIA0WR0XtUPvb9E5H7SOuRI1mxfTsfDRx4X6x8FxF5kOxct5Uhcycw84dluJZzZ+nkwMIekoiIiIjIA0crxkXkvvKEt3eOqVxyO3+v2DN/fmEPQQrJE09455i+JbfzIlL4OrzZi9JurgA07+LH3CETSElJwcZGa1ZERKRgOTo4A3DkxAG8K9XEqZRzIY9IRKToUGBcREREROQuKl22TPrPJZ1KYTQaSU5KwsZWuV9FRKRgVSj3EK0bd2RS4FBK2juybNaPhT0kKSJ8+7Yt7CGIFDoFxkVERERERERE7lODuo9lUPexhT0MKSKMRuPPBoOhaWGPQ4qknwp7AHebAuMiIiIiIiL3gb5+voU9BJEiya+v7g0Rk/379zcr7DEUBfXr13dOTEy8DlwPCQlxKezxSOFQYFxEREREROQeptV/koMHbvWfOd0bkoMH+t4Q2Lt3bxRgKOxxSOFSYFxERERE5C7wfqImQcGbcz0mklda/ZdKq/8kM90bqXRviIhYpsC4iBQ43759C3sIIneNr6+ud5H86OurDZ9EpGBp9Z+IZbo3REQssynsAYjI/cNoNP5c2GOQfEsGfi3sQdxLdL3f9y4nJCQcKuxB3I9070gO9Fi7iIiI3BX169d39vHxMfr4+Fwr7LFI4dE3hmaMxtXGwh7DvcxgeFnXk9y3fHx8tgKtDAZDq+Dg4B8Kezwid5OPj89rwCJgUUhISJ/CHo/I/UCPtYuIiIgUHv0tJqDAeAYKjN8eBcZFRERERKSwKMghYpnuDRERy5RKRUREREREREREREQeKFrha0Yrxm+PVoyLiIiIiIiIiIjIvaB4YQ+giOl0JxsfNWrDGoDR0/rdyW6yCBj1OQDTpr14R+cncj9TjnF5kCnHuEjB02PtIiIiIoVHf4sJKDCegcHw8to72b6Pjw8Awyh1J7vJYtu2o8Cdn5+IiIiIiIiIiIjIvUCpL+4iHx8fI8Dm4KC72m9b374AhISE6PMWEREREZH7klb/iVime0NExDJtvikiIiIiIiIiIiIiDxSlUhEREREREZF73t69e6PQU9EiWejeEBGxTIFxEREraPNNeZBp802RgqfH2kVEREQKj/4WE1AqFRERERERERERERF5wOhRmrtIm2+KiIiIiIjcGVr9J2KZ7g0REcu0YlxEREREREREREREHijKMS4iIiIiIiL3PG0wKGKZ7g0REcsUGBcRsYI235QHmTbfFCl4eqxdREREpPDobzEBBcZF5MFl4+vr29toNL4KPAq4WVPJaDR+7+Pjk5d+IoDDBoNhaXBw8CIgJe9DFRERERERERGRgqRHae4ibb4pUmTY+Pj4fAu0vcv9bgoJCXkRBcdFRERECpxW/4lYpntDRMQyrRgXkQdO2krxtg9XqMDobt2oUakSpezt70hfsfHxHDt7loDlyzl+7pxfnTp1Xtu/f//CO9KZiIiIiIiIiIhYRYFxEXngpKVPYXS3btSpXv2O9lXK3p461aszqmtX3pg5E4PB8CqgwLiIiIhIAdMGgyKW6d4QEbFMgXEReRA9ClCjUqW71qFZX4/dtU5FCog23xQpeHqs/f/Zu/Pwpsr0b+DfkzZJk5TYJaUbbaEtlFIKJlERQV4WQUFlZHNEHUQcQXBBfzNu7A4wLIIbCoiozDA4oMKgbAMKwqiDgG2hlbK1QBe6p3uSNmlz3j9oMl0CXWibQr+f65prknPOs+SUY0/v3Od+iIiIiFyH92IEABJXT4CIyAU0ANqsfIozngpFnbGJiIiIiIiIiMh1mDFORERE1xUfH/85gM9dPQ+iWwkfaydqfcz+I3KO1wZRQ7wXI4AZ40RERERERERERETUyTBjnIiIiIiIiG56zP4jco7XBhGRcwyMExER0XVx8U2i1sfH2omIiIhch/diBLCUChERERERERERERF1MswYJyIiouvi4ptErY+PtRO1Pmb/ETnHa4OoId6LEcCMcSIiIiIiIiIiIiLqZJgxTkRERERERDc9Zv8ROcdrg4jIOQbGiYiI6Lq4+CZR6+Nj7URERESuw3sxAlhKhYiIiIiIiIiIiIg6GWaMExER0XVx8U2i1sfH2olaH7P/iJzjtUHUEO/FCGDGOBERERERERERERF1MswYJyIi6twker1+miiKfwDQB4CmjcYpAJAsCMLmuLi4zwDY2mgcIiLqpJj9R+Qcrw0iIucYGCciIuq8JDqd7htRFB9qh7E0AIaIojhEp9ONjY+PfwQMjlMnxsfaiYiIiFyH92IEMDBORETUadVkij8UGRmMN954HL16hUCl8miTsYzGCpw/n4Hly79ASsqVh7Va7dMJCQmftslgRERERERERI1gYJyIiKiTqimfgjfeeBxabc82HUul8oBW2xOvvz4Zzz67CoIg/AEAA+PUafGxdqLWx+w/Iud4bRA1xHsxArj4JhERUWfWBwB69QpptwFrjRXTboMSERERERER1cOMcSIios5LA6DNyqc44+mpqDM2ERFRa2H2H5FzvDaIiJxjYJyIiIiIqJ3xsXYiIiIi1+G9GAEspUJEREREREREREREnQwzxomIiIiI2hkfaydqfcz+I3KO1wZRQ7wXI4AZ40RERERERERERETUyTBjnIiIiIiIiG56zP4jco7XBhGRcwyMExERERG1Mz7WTkREROQ6vBcjgKVUiIiIiIiIiIiIiKiTYcY4EREREVE742PtRK2P2X9EzvHaIGqI92IEMGOciIiIiFqH2tUTICIiIiIiaioGxomIiIjaUWxsbGZjx3h5eY2vt8nD29v7iZrXHS6zxcPDo3v//v0zPDw8elzjEElAQMBChUIR7GSfW0xMzNm2nB8RdQ7Hjh0rjY+PF5gRS1QXrw0iIudYSoWIiIioRkhIyDve3t5Purm5eZvN5sS0tLTnzWbzLy3pKzw8/FuFQtGn/nZ3d/eAmJiYlPrbT58+HWl/3aNHjy8TEhJq36fJQkNDN5pMphM9evTYkpGR8azRaDzZknm1hEKhuDs6OvpofHy8AkBF/f0VFRWXi4qK/uXl5TUxJyfnbSdd2CorKy9ERkYeS0tLe7a0tHRfrX2CXC6ParPJd1B8rJ2IiIjIdXgvRgAD40REREQOpaWl/83IyFgMQAwLC1sVGRm5IykpKRiA2Ny+Ll68OLbWW/egoKAFCoWiv5ubm1dlZWVacXHx1oKCgk+a2J1RIpFIKysrz6elpb0YHh7+9cWLF4ebzeb05s7rRikUioFRUVHfOdklAWALCAhYWH/HyZMnPYuKir6orKy8UFVVVda7d+94qVQaVPuY2NjYHPvrpKSkgNafORERERER0f8wME5ERERUo6Sk5Gv7a4PBsMXHx2cKrgZ8q1vap1qtfiA4OHhFeXn5f1JTUyfGxsZeSklJeSgsLOxDb2/vx3NychaUlZX9CAC9evX6US6X9xAEwc1eciUpKakbgGpRFC0A5Gaz+XJaWtozCoXibrPZbAJQcEMfupnMZvPRkydPetrfa7XaqoSEhCAAeddqo1Kp+nl4ePQ3GAybAeDs2bO6WrvddTqdtbMFw7ngE1HrY/YfkXO8Noga4r0YAQyMExEREdUnKBSKEH9//9n5+flr0bKguNTPz+85jUbzR4lEosrIyHjRXj6kJjhsTktLe0atVo8OCQn5WBTF6suXLz9z/vz5e4GrweakpKRuXl5evwsLC9ssk8m6CYIg69+/f25VVVWuxWJJt1gsaSaT6deKiooCXK3h/aqvr+90mUwWUlVVlZuamvqIKIrS6Ojoo5cvX57WrVu3twsLC/9hMBi21pRF6QKgHHBaKsUnPDz8E7VaPbqqqirPYDBsvMbnlAmC4Gbv51psNptHt27d3pfJZKHZ2dlLW3A+iYiIiIiIWhUD40REREQ1VCrVffYyIaWlpbszMzPfaGFXVrlc3i0nJ2dZSEjIh6Ghoetq7/Tx8Zlsfy0IgltWVtY8s9mcVL8Ti8WSUVxc/I3FYsmIior64dSpU94ARJlMFi0Igq2ysvIiAISEhKxWq9Vj09PTp5SVlR2XyWQ9JRKJURCEQABQq9X3JSYmhuNq0D+6scmHh4dvcnNz63Ly5MkIAOjVq9eX1zhUAQC3336702zx5OTkOy0Wyxmz2Xz8woULI3r06PF1dnb2J7hOdjkRUUsx+4/IOV4bRETOMTBOREREVMNoNH4fHx/vJpPJevfo0ePz7t27f3r58uUnWtJXZmbm6wAQFha2MTExUXOt47RabYXBYPhbrU1SAPD19X1KqVT2z8jIeA1AVVVVVQEAHwDVPXv2/CYnJ2dxZWXlOQBeGo3mhQsXLowqLy//GQAsFksyACgUikAAyMvLWwWgtIlT7+rl5fXw2bNn7wSQDQA5OTlLIiMj/13/QJlMFmyxWC799ttv4fX39e/f3+zm5lZmf28ymRJOnz4dDcC3dj1xu/rbbvXSKnysnYiIiMh1eC9GAAPjRERERPXZLBZLcnZ29lsRERE7L1++/AcAtpZ2JpFIlDExMSlNObR3796/yOXy3oIguCmVyrtqZ5FXVFScUavVA4KCgt4yGAyb7fW6lUpluCAI7uXl5QnX6thkMqU2db5KpTKkps0F+7aaPxoaUKvVg0wm00knu2Rubm4eZrO5uPbGwMDA+dnZ2R/Zg94KhaJbr169ks+dO3ef0Wg82NQ5EhERERER3SgGxomIiIicE0VRtOIGguIAYLPZTKdPn4681n6tVlthPzQ9PX2GyWRK1mq1xoyMjOdrH2cymY6Gh4d/lZWVtbAmA9w+yTwAUCqVPU0m04lrTcP+QhCEypqXStTUBpdKpbfZ91dXV5cAjmxw++tuzjrVaDTP5Ofnr3eyy7dmsVBH7XGFQtHN39//T9nZ2Svt24KCgj4yGAzrjEbjQZVKNUIikVjsC5He6vhYO1HrY/YfkXO8Noga4r0YAQyMExEREQEAZDJZH5VKdXtRUdG/FAqFX2Bg4PzCwkJHbW2FQhFiNpszmtuvRCJR9u3b93JTjjWZTM6yviVdu3Z9TqPRvGgymRLtQXGVSjUCgMFoNJ4sLi7eFRoa+nFGRsbTRqPxtEql6ltdXe20dIrJZDpbXV1dFhAQ8FROTs7bABRdu3b9k31/ZWVlSkVFRXK3bt2WX7x4caqHh8dtAQEBr9bvx8fH52mpVBpsMBj+WX+fUqkMqin94uDp6TmurKzsAIAyANBoNH90c3PzzszMnFtznirCwsI2//bbb/3txxAREREREbUVBsbpliWKoujqOXRkgiDwm1EiolokEonR39//z927d99ks9nKi4qKvkpPT/+/mt0e4eHhPxQUFHyam5u7rDn95ufnr83IyHjhWvtDQkLWXGufj4/P7wMCAhZUV1eXp6amjggKCnpboVAMMJvNx3x9fSdWVFQkGo3GkxcvXnwiJCRkRURExHdubm5qs9l89uLFi4+7ubk569acnp7+RFBQ0HsajWamxWK5UlxcvFOtVo+0H5CSkvJoeHj4Jq1Wm2M2mxPz8vLWqVSqu+z7VSrVfaGhoWsuXrw4AUAlAA8PD4+gioqKHABVPj4+f6ipf177s0wuKChYV/P6UX9//z9fvHhxJAAfmUzmA0Cw2Wym0NDQVenp6TOaeHqJiByY/UfkHK8NIiLnGBgnIiIiAlBRUZF29uxZ3bV2X7p0aUj37t2/l0qlPpmZmQ0yqOvr16+fI2Pa29v7sesd6+3tPTkjI+OFoqKiwx4eHh4ARADw8PCIvnLlysKSkpLtAMQrV67MCQ8P33L58uUJKpXq7oKCgs9quijLyMiYlZGRMat+3/Hx8Q3+EC4qKtpVVFS0q/a2vLy81fbXFovldM3imw6FhYWfAkCXLl3ujYiI+DYjI2NWaWnp/prdiujo6HOCILgDgNVqzb58+fJEe1sPD49wpVJ5h8Fg2AUAISEh6yUSiSoyMvKY1WrNq66uzrdarfllZWU/aDSaGYWFhVvLy8t/uN45u9nxsXYiIiIi1+G9GAEMjBPRTUqv1wdWVFQYTp8+bXH1XIioczCZTFnJyckjVCpVTFOOT0xM1DR3jJCQkHe8vLweNxgM/wCArKysRfXmcCIrK2tBRETEwYqKilSTyRTX3DFuVFlZ2c8XLly422g0JtbaXJSQkCAFoAAgxdVSKI4ntyoqKsrT09OfAVAMAKdOneoBoLT2MXZmsznJYrFkt+VnICIiIiIikrh6AkRtyWaz4eTJk1i9ejWqqqpuuL/c3Fw88sgjsNluaB22JklKSoJer4fJZGpxH4cOHcKUKVOQk5ODsWPH4vz58604Q9ey2WzPyOXyHK1Wu0mn0z08dOhQD1fPiYg6hWyj0fh9W3WekZHxf0lJSQHp6elPX+uYoqKirYmJiV3Pnz8/EDe4MGgL2eoFxWszw3nAO89gMGyu9b7EyTEAgIKCgg0Wi+XsjU+zYzt27FhpfHy8wAwlotYzYMAAtU6nE3U6XbGr50LUkfDaIGqI92IEMGOcbnEPPPAABEFAQUEBXnzxxRvuz9/fHzt37myFmbW94uJiLFmyBOvWrUNAQABmzJiBefPmYevWrZBIbpnvxLwFQXgKwFOlpaVlOp1ujyiK26urq/clJiYaXT05Iro+nU7XrmtBiKJ4OCEhYVh7jklEREREREQdEwPjdEv74IMPYLVaMXXqVFdPpd1t2bIFffv2RVRUFABg9OjRWLduHQ4cOIAHHnjAxbNrE10APCYIwmPu7u5mnU73bwDbBUHYHRcXV+LqyRGR6wmCMNTVcyAiorbDBQaJnOO1QUTkHAPjdEvr3bs3kpKSWq2/pKQkTJ06FT/++CNSU1MxdepUrF27Fu+//z4uXryI0NBQvPXWW4iOjsYLL7wAjUaDRYsWOdrPmjULPXr0wKuvvgqr1YpPPvkEe/fuRX5+Pnx9fTFu3Dg888wzTjO6P/zwQ3z77bf49NNPERISAovFgvfeew/79u2D1WrFkCFDMGfOHHh6egIA9u/fj2effdbRXiKRYPjw4di/f/+tGhivTQFgHIBxoihatFrt9wC2S6XSb44fP25w8dyIqIazRSHbSntnpxM1hgs+EREREbkO78UIYGD8lveQfrrjNYMCbWPHjh344IMPIJPJMG/ePCxevBhffPEFxo4di7/+9a+wWq2QSqUwGAw4ceIE/vSnPwEAli5diuTkZLzzzjsIDw9HcnIy3njjDVRVVWHmzJl1xvjyyy+xY8cOfPLJJwgJCQEALFmyBJmZmdi6dSvkcjnefPNNrF69GgsXLkRhYSGuXLmCPn361OknJiYGe/fuBdCp/j3IBEEYA2BMVVXVpzqd7qCrJ0RERERERERERK51yxQaJnIVe2a4Wq3GY489hvPnz8Nms2Ho0KEAgKNHjwK4msEdGxuLiIgIFBcXY/fu3Zg7dy569eoFd3d39OvXD8899xx27NhRp/9Dhw5h7dq1WLNmDSIiIgAARUVF2Lt3L9544w34+/vDy8sLTz75JA4evBrzzcvLAwD4+fnV6cvPzw9FRUWtshDpTayzfCFAREQdGBd8Imp9XGCQyDleG0QN8V6MAGaM3/J2x21wZI235yPrHUS7BEB9fX0dr7t06QJRFFFVVQWZTIb7778fBw4cwJAhQ7Bv3z78/ve/BwBkZ2dDFEWEh4fX6Ss0NBSFhYWw2WyObe+//z5GjRqFmJgYx7acnByIoojJkyc3mI/VaoUoXv3oglD3R25/L4riTf/vQavVzhMEYXETDrUA+A7Adnd392+PHz9u6ETZ8kRERERERERE5AQD40RtaOzYsXjuuedw/vx5ZGRkYOTIkQD+l8mdlpaGvn37Oo7PzMyEv79/nRrjy5cvx8svv4yePXti0qRJAAAfHx8AwJ49exAQENBgXI1GAwAwGAzo0qWLY3tBQQHUajWkUmkrf9IOxwxgnyAI293d3XfXLDZDRERERLcwLjBI5ByvDSIi51hKhTq13NzcNu0/JiYGAQEBePvttzF69GjI5XIAVwPXI0aMwNKlS3HhwgVUV1fjt99+w/r16zFlypQ6fURHR2PFihVYvXq1oz64v78/dDodVq1ahdzcXFRXV+P8+fM4fvw4gKuB965duyI5OblOX8nJyXUyz28xZYIg/FMUxYlVVVV+8fHxE+Li4r5gUJyIiDoiPtZORERE5Dq8FyOAgXG6xen1ekydOhUAMHDgQOj1euj1egCAxWLB9OnT8fnnn7fpHMaOHYv4+HiMHz++zva//OUv0Ov1eP755zFw4EAsWLAAU6dOxWOPPdagj3vuuQfz5s3DW2+9hcOHDwMAVqxYAYlEgokTJ2LQoEFYtGiRo4QKAIwaNQrff/+9470oijh06BBGjRrVNh/UNYoAbALwsFqt7hoXF/d4QkLC9sTERKOL50VERERERERERB0YH6VpR/a6xrvjNrTruJ21xrhYO0p8Dfn5+Zg5cyYGDx6Ml19+uT2m1W4MBgMmTJiATz/9FBEREThw4ADWr1+Pbdu2QSqVQqhfgPwmo9frAysqKgynT5+2NLet/VqM29C+16J+eue8FqnjclwL7fx7Se+C30v2z8rrj4jo1jVgwAC11WotAVDCxdSI/ofXBhGRc8wYp07Nz88P69evx8CBA109lVbn6+uLuXPnYvHixcjPz8fatWuxdOnSW6a+eFxcXHZLguJERERERERERERcfJM6PY1G41is8lYzcuRIx4KfO3fudPFsiIiIiIjaDhcYJHKO1wYRkXMMjNMt62YvFUJERES3Lj7WTkREROQ6vBcjgIFxIiJyoik1+qlx/IKOiIiIiIiIqGNiYJyIiIiIqJ3xsXai1sfsPyLneG0QNcR7MQK4+CYREdFNa+jQoe79+vXr5up5EBEREREREd1smDFOREROpaen48MPP8SJEydQUVGB/v37Y/78+QgODnb11DqUQ4cOYdOmTVi5ciWmT5+OVatWoVevXu0ydn5+vodcLs/Q6XRHRVH8WhTFHSdPnrzcLoMTERF1MMz+I3KO1wYRkXPMGCciIqeOHDmCO+64A9988w327NkDmUyGefPmuXpabSI9PR3jxo2DxWJpVrvi4mIsWbIEc+fORUBAAGbMmIF58+bBZrO10UyvaaAgCKslEsklnU73q16vf7N///7tE50nohYZMGCAWqfTiTqdrtjVcyEiIiLqbHgvRgAD40REdA1PPPEEHn30UajVavj4+OCJJ55AUlKSK4K+ba6kpATp6enNbrdlyxb07dsXUVFRAIDRo0fDZDLhwIEDrT3F5tCLovhXNze3czqdLkmn0y3S6/WxYJYQERERERERkQMD40RE5JREUvdXRGFhIby9vRtsbw6LxYKVK1di2LBhGDx4MObMmYPy8nIAwFdffYVhw4ahtLQUAHDy5Ence++9uHLlSqNtAcBms2HTpk0YO3YsBgwYgDFjxuDMmTNISkqCXq+HyWRyHGvfZs8Qnzp1KgBgunwttgAAIABJREFU4MCB0Ov1TZovAOzfvx8jR46sc86GDx+O/fv3t/gctbK+ABaKopio0+nOabXaZVqt9g4wSE7kcseOHSuNj48XuAgaUeth9h+Rc7w2iBrivRgBrDFORERNUFVVhS1btmDChAk31M+SJUuQmZmJrVu3Qi6X480338Tq1auxcOFCTJw4Efv27cPGjRvx8ssvY+XKlXj++ecdNc2v1xYA3n33XRw5cgSLFy9GTEwM0tPToVAoUFBQ0Oi8Nm3ahKlTp+Lo0aOQyWRNmm9hYSGuXLmCPn361OkrJiYGe/fuBQDodDrxhk5Y6+opCMIbAN7Q6XRpAHa4ekJERERERERErsLAOBFRO9PpdJmunkNzLVu2DBKJBNOmTWtxH0VFRdi7dy+++OIL+Pv7AwCefPJJvPnmm1i4cCEEQcC8efPw1FNPwd3dHSqVCr///e+b1LasrAzbtm3D2rVr0b9/fwBAeHg4ADQpMN6S+ebl5QEA/Pz86rTz8/NDUVERqqqqWjRuexEEQRTFjhS3JyIiujFcYJDIOV4bRETOMTBORNT+gl09geZ49913kZCQgI0bN9bJpm6unJwciKKIyZMnN9hntVohlUoRHh6OESNG4G9/+xs++eQTCILQpLZXrlxBdXW1o9Z3a2hsTHtQ2T5HO/t7URQRHx/fpn+AxMTEeMrl8rKmHCsIwnmbzbZdEITt8fHx8QBEnU73f205PyK6tgEDBqitVmsJgBI+wktERETUvngvRgAD40RE7a6qqirE1XNoggwA+PDDD/HTTz9hw4YN8PHxuaEO7e337NmDgIAAp8dkZmbiyJEjGDFiBD777DPodLomtfX29gYApKenIyYmps4+ezC/oqICSqUSAOrUCW/pfDUaDQDAYDCgS5cuju0FBQVQq9WQSqWNjtEOkgBsl0gk23/99dfTAJgiTkRERERERAQGxomI2l1iYuJNUUrl448/xpEjR/DJJ584DYrn5uY6Sow0hb+/P3Q6HVatWoVXX30VGo0GqampKC4uxl133QWbzYb58+fj0UcfxZQpUzBu3Djs3LkTjzzySKNt/f39MWTIECxduhSLFi1CREQEUlJS4Onpie7du0OpVGL37t2YMmUKKisrsXnz5jpzU6vVAK4u+Nm7d2+o1epGx/Tz80PXrl2RnJyM7t27O/pKTk5uEJxvZ78KgrC9qqpqx6lTp867ciJEdG18rJ2o9TH7j8g5XhtEDfFejABA4uoJEBFRx7RhwwZcvHgRI0eOhF6vd/zPYrHAYrFg+vTp+Pzzz5vV54oVKyCRSDBx4kQMGjQIixYtcpQk+fzzz2EwGPDMM89ApVJh9uzZeOedd5Cbm9toWwBYunQpYmNjMWvWLAwePBiLFi1CZWUl5HI5li5diq+//hpjx47FrFmzcM8999SZV1hYGMaPH4/Zs2fXWWC0sTFHjRqF77//3vFeFEUcOnQIo0aNatZ5aQX/FUXxTzabrUd8fPydcXFxyxkUJyIiIiIiIro2fjPSjnQ6nQgAu+M2tOu4D+mnA0Cb17olulnYr8W4De17Leqn3zzXYlNWZczPz8fMmTMxePBgvPzyy+0xrQ7HYDBgwoQJ+PTTTxEREYEDBw5g/fr12LZtG6RSKYT6Bchb2dChQ90LCwsDWvoUguNaaOffS3oX/F6yf9ab4fojIiIiIiKitsdSKkRE1CJ+fn5Yv349UlNTXT0Vl/H19cXcuXOxePFivP3221i7di2WLVvWbvXFDx8+XAXgpijNQ0R18bF2IiIiItfhvRgBDIwTEdEN0Gg0jkUoO6uRI0di5MiRAICdO3e6eDZERERERERE1BQMjBMRUQNtXQKEiKiz44JPRK2P2X9EzvHaIGqI92IEcPFNIiIiIiIiIiIiIupkmDFORERERERENz1m/xE5x2uDiMg5BsaJiIiIiNoZH2snIiIich3eixHAUipERERERERERERE1MkwY5yIiIiIqJ3xsXai1sfsPyLneG0QNcR7MQKYMU5EREREREREREREnQwzxomIiIiIiOimx+w/Iud4bRAROcfAOBERERFRO+Nj7URERESuw3sxAlhKhYiIiIiIiIiIiIg6GWaMExERERG1Mz7WTtT6mP1H5ByvDaKGeC9GADPGiYiIiIiIiIiIiKiTYcY4ERERERER3fSY/UfkHK8NIiLnGBgnIiIiImpnfKydiIiIyHV4L0YAS6kQERERERERERERUSfDjHEiIiIionbGx9qJWh+z/4ic47VB1BDvxQhgYJyIiIiIqKUker1+miiKfwDQB4CmjcYpAJAsCMLmuLi4zwDY2mgcIiIiIqJOg4FxIiIiIqLmk+h0um9EUXyoHcbSABgiiuIQnU43Nj4+/hEwOE7UALP/iJzjtUFE5BwD40REREREzVSTKf5QcGR3PP7GTIT06gEPlbJNxqowmpBx/hK+WL4OV1IuP6zVap9OSEj4tE0GIyIiIuoEWGKIAC6+SURERETUbDXlU/D4GzPRUxvTZkFxAPBQKdFTG4PJrz8HABAE4Q9tNhgRERERUSfBjHEiIiIioubrAwAhvXq024C1xoppt0GJbiLM/iNyjtcGUUMsMUQAM8aJiIiIiFpCA6BNM8XrU3iq6oxNREREREQtx4xxIiIiIiIiuukx+4/IOV4bRETOMTBOREREREREREREnQZLDBHAUipERERERERERERE1MkwY5yIiIiIiIhueq7K/lOpVP0CAwPf9fT0HCiKYuXly5efLSkp+foGuw0ICQlZcNtttz0klUr9rVZrbklJydcZGRlvAShpjXm3hEKhuDs6Ovpo7W0VFRWnk5OT+7bz2GJ1dXWx0Wj8taCgYH1xcfGOth43Pj6+C4DythrHGS8vr/H+/v6vp6enT4yIiDhy6dKlcUaj8VRz+2FmLFFDLDFEAAPjREREdBOZNGmS27lz5wITExMzXT0XIiIiuVweERkZeTg3N3dFSkrKIwqFQm2z2RQ30qdSqQwKDw//xWg0/vfChQv3VVZWXpbJZJEhISHLevfufeTs2bODABhb6SO0iCuCxPXGNgLQ+Pj4DA8ODl6uVqsfTk9PfwaArbH2crm8Z2Rk5J7Tp0/3A1DR1vO9AZrQ0NANqamp95nN5ozs7OyFoaGh/zhz5sztAKpdPTkiolsBA+NERETUoen1eqnNZvt/EolkQkpKyjh3d/edAJ5z9byIiKhjcUX2X3Bw8JLi4uI9OTk5KwDAbDaX3Wif/v7+71ZUVJy5dOnSZAAiAFgsluTU1NTx0dHRvwYHB8+5cuXK3Bsd5yYnAsgvLCzcVlhY+F1MTEycn5/fC/n5+R801lAikfjK5fKe7TDHGxIcHPyK0Wg8ZjQaTwKAwWDYEhgYuNjb2/vRoqKifzanL2bGEhE5xxrjRERE1OFERkbK9Xr9gzqd7jObzZYjCMJ3oig+JwiCv6vnRkREVMNdrVb/zmAwfN6KfSq9vLzG5efnr0JNULyWaoPB8ImXl9fvgaslPnQ6nQjA035ArW0eNZs8QkJC1vTr189w++23l4eHh/8TwG21j/Xx8Xm6X79+Bd26dXsPQFetVlupVqvH1J5T//79S9Rq9f3XmvQ1+gIAWWBg4JK+ffte1mq1lr59+6YHBAQsAOBWu52vr+/U2NjY7NjY2CyVSjXC39//lX79+hliY2NzvL29H27knBXm5eW96+fnN8O+QaVSjYiOjk7QarWWmJiYS7Xnbi/HotPpzDXnqtE2AKBWq+/t06dPslarrYiIiNgDQNOUtn5+fi/FxsZm9+/f31zrvFz3ZwMA3t7ek4uLi7+qdbytpKRkh7e39+RGzgcRNcGAAQPUOp1O1Ol0xa6eC7kOA+NERETUIej1eqVOpxuv1Wq3qNXqPFEUdwN4WhAEH1fPjYiIqD65XB4ukUgUcrk8JCYmJkWr1VZERkYeUCgUwS3tU6VSRQiCIC0pKTnpbL/JZDojl8t7oIl/y4eFhW1QKBTaCxcu9D958mR3Nzc3v7CwsHdrH6NWq+9LTEwMz8zMXAggr7i4+F8+Pj5P2vf7+vpOqKqqKigtLT3Q2Hj1+kJoaOjHXl5ev7t06dLvEhISVKmpqb/XaDR/DAoKWli7nYeHR9+kpKSeZWVl30VERHwhl8ujEhMTw0pKSr4JCgp6p7FxzWZzolwuj7KfF6lUqk5LS3s2ISFBXVpaujM0NHSd/dgzZ84MBID4+HhFfHy8I4v6em0AQKPRTEtOTh529uzZCKlUGti9e/cPGmsrl8sjQkJC3r948eKTp06d6lpYWLjF3qaRn01XmUzWo6ys7ETtOZSXlx/39PS8u7HzQURETcNSKkREROQyAwYMUFsslgcFQZggiuJoAEpB4JO+RETUfO29wKCbm5saAFQq1T2nT5++E4C8V69eXwYHB3+WkpJyzezqxrqt+f/62eJ2oiiK4nX21+bn6+v75Llz57RmszkTAHJzc9/p0aPHP9PS0qbZD8rLy1sFoNT+Pj8/f11kZOReAF0AlHl7e081GAwbao+p0+nKarV/32AwbHXSl0aj0Tx14cKFe+0LRprN5qNZWVkLu3XrtjwrK2uBvQ+DwfAhgPL8/PzNPj4+U/Ly8pYDKC8sLNyq0Wimo5HYhZubmxRX627bAKC4uPhfAJRKpTKmurq6RCaT9QAgBWC9Vh/XaQMAyMzMnA8g12w2Izc3d2VYWNgnjbWVSCQWAKJcLg81Go0HTSaTPdB93Z+NUqnsBgAWiyWr9hytVmuWu7u7X2OfpT4uvknUEEsMEcDAOBEREbmITqfbZbVaH2pBIHyGTqeb0fhhREREbaeqqsoIAOnp6YsAFAFATk7OioiIiG9wNXO50YUg6zMajRdFUaz29PSMLS8v/6H+fqVSGV1ZWXkOTQiMK5XKUABCVFSUs+xzmf2FyWRKrb2jvLz8iMViSfP19R1vNBoPq1Sqe1JSUh6rfUz9xTcVCsXd9ftSKpVhAISysrLTtdtardYL7u7uXVEr672ioqIAAGw2W3nN+xwAqK6uNtccct3YhVKpHGA0GuPt74OCgpZpNJppRqPxqCiK9j7ccJ1g8nXaAAAsFotj4e+qqqorEonEs2Z/9bXams3mjEuXLv2hW7duK/39/f8vMzNzVllZ2Y9N+NnYb47q/JwFQbC/ZzCPiKgVMDBORERErtKUbLfWG0wUj7fneERE1L7aO/vPYrGk2Gy2cplMdpvFYsmu2SyKoliBFgTFa5SWlJR86+/v/7KTwLi7j4/PDPvCi4IgVNZsV6ImSC2VSh01qkVRzAOAM2fOhJnN5vTrjNlgrvn5+et9fHz+IJVKw0pKSv4FIL+J83f0ZTKZsgBAoVBEmc3mY/btMpkswmq1ZjobtyWUSmWQn5/fixkZGbOBq+VLAgIC3vjtt99iLBZLslqtvt/Ly+ux6/XRlDYKheI2s9lcXnN8VM1nqG6sbVFR0ZaioqKvQkJCVnTv3v2rpKSkgCb8bLIBQCaTBVgsFkf9Y6lUGlhdXV0EwNKcc8TMWCIi5xgYJyIiIpeIj48fO2jQoC4mk+lBiUQyQRTFMbj6x31jPo6Pj3+uredHRETUCGtBQcFnISEhq1NTU59SKpWywMDAebXrSCsUihCz2ZzRnE6zs7NnR0ZG/hIWFvZZbm7u4oqKikyVShUdGBi4XBAEMTs7+x0AMJlMZ6urq8sCAgKeysnJeRuAomvXrn+y92M2mzPKy8v/ExgY+F52dvZss9mcrVKpYgBojEbjwevNIT8//+/BwcFL5XJ55OXLl6c077T876MUFxdvDwsL+zgjI2OK0WhMVigU+sDAwLdq5nsjBAB+3t7eo4KDg5cWFhb+vaioaCsAiKIoBQAPD48wi8WS7efn91LthjabrQgAVCrVIKPRmACgsLE2ANC1a9dlaWlpL8jl8kB/f/83DQbDZ42N5+HhESaVSkPKysqOVVRUpEgkEg8AQmM/G5PJlGW1Wq+oVKo7LBbLWXt/SqXyDqPRyC/6iVoBSwwRwMA4ERERudDPP/9cBmArgK16vV4piuL9ACYAeBiA2qWTIyIiakRmZuZroaGha/r3738RQHVhYeE/MzIy7MFpj/Dw8B8KCgo+zc3NXdbUPs1mc0ZKSsoAPz+/Jb169Tru7u6usdlsxry8vA+zsrIeA2CyH5qenv5EUFDQexqNZqbFYrlSXFy8U61Wj7T3df78+UfDw8M/ioqKShYEQWY2m09nZGS81oRpFBcVFf1LpVLpy8vL/9PkE1LPxYsXp3Tr1u2v4eHh+93d3TUWi+ViXl7eivz8/HWNt3aupr65WFVVVWg0Go+lp6fPKC0t/bd9v8ViOZuXl/dBeHj4dqvVeiUvL2/NbbfdNsa+v7Ky8lxBQcGGyMjI3aIoliYmJvo31gYAzGbzL/369UsRBEFeWFi4OSsra0lj44mi6B4aGrpRJpOFWyyWSxcvXnwSNU/MNfazKSws3Orj4zOpqKjoHzWbhNtuu218dnb20paeOyIiqouP0rQjnU4nAsDuuA3tOu5D+ukAgNorbhN1ZvZrMW5D+16L+um8FqljcVwL7fx7Sd+E30uRkZFyLy+vETabbQKA3wHwrbWbGePkcvbrZ0Pc7nYdd7r+IQD8XULkTEfM/lMqlUHdu3f/vrS0dE9mZuarLemjS5cug3v06LGjuLh4e15e3oqKiooruPq3fLPKaTRXdHT0qYKCgo35+flr2nIcuqaA/v37n0lNTb23vLz8Nx8fn98HBgb+5fTp07Fo5s++I14bREQdATPGiYiIqMNJSUmpBLAXwN6hQ4fOKCkp+X+4mkk+vgWLdRIR0c1Fotfrp4mi+AcAfQBomtLIanWsq3ib/curRhQASBYEYXNcXNxnaKWa17WZTKas5OTkETVlMlqkrKzspwsXLmi7du26rFevXr+6ubmpL1y4MKq8vPxwK061Nl8/P7/H3N3d/fPz8z9vozGocTkZGRkzgoKCPsnMzJwQGBi45NKlS4+hjb8QISLqTBgYJyIiog7t8OHDVQAOAjg4adKkF8+dOxfo6jkREVGbkeh0um9EUXyoHcbSABgiiuIQnU43Nj4+/hG0QXAcQLbRaMxu/LBrM5vNV9LS0lpa67tZtFrtFYvFkp6SkvIIahb1JNcoLCz8srCw8EsAOH36dM+W9sPFN4mInGNgnIiIiG4aX331VTWATFfPg4iI2kZNpvhDwWGReHzmGwjp0QseSlWbjFVhMiLj0nl8sW45rqSlPKzVap9OSEj4tE0Gu4kkJCR4uHoORERtjSWGCAAkrp4AEREREREREQDUlE/B4zPfQM8YbZsFxQHAQ6lCzxgtJj/3OgBAEIQ/tNlgRERE1OEwY5yIiIiIiIg6ij4AENKjV7sNGBLuGKvFdcCJOjJmxhI1xBJDBDBjnIiIiIiIiDoODYA2zRSvT6H0rDM2ERERdQ7MGCciIiIiIiIiukUxM5aIyDkGxomIiIiIiIiIiKjTYIkhAlhKhYiIiIiIiIiIiIg6GWaMExERERERERHdopgZS9QQSwwRwIxxIiIiIiIiIiIiIupkmDFORERERERERHSLYmYsEZFzDIwTERERERERERFRp8ESQwSwlAoRERERERERERERdTLMGCciIiIiIiIiukUxM5aoIZYYIoAZ40RERERERERERETUyTBjnIiIiIiIiIjoFsXMWCIi5xgYJyIiIiIiIiIiok6DJYYIYCkVIiIiIiIiIiIiIupkmDFORERERJ2OXq8PjYuLywAgunouRNRx6HS6dv9vgiiKhxMSEoa197jUeTAzlqghlhgigIFxIiIi6gREUWTwsxMQBKHJf9yIorhBp9P1BrBDIpFs//XXX48CsLXd7IiInBMEYair50BERNQZMTBORERE1IZEUUR2djaCgoJcPZUOx2g0QqVSuWp4AUAYgFdsNtsrOp0uG8C/AGxXq9X/OXz4cJWrJkb/wy+1/qc5X/xQy8XHx7freXZFhjp1PsyMJSJyjjXGiYiIiNqQ1WrFww8/fN1j4uLi8MEHH1z3mNzcXIwZMwYmk8mx7fLly5g2bVqrzLO9ZWVlYfTo0bhy5YrT/TabDRs2bEBeXp7TfePHj2/tKQUCmAXgYGlpabZer9+o1WpHx8TEyFp7ICIiIiJyrQEDBqh1Op2o0+mKXT0Xch0GxomIiKjTmT59OvR6fZ0gsyv17NkT+/btQ2pq6jWP2bVrF/r37w+lUunYdvjwYfTr1++abaxWKzZv3ozJkyfjnnvuwd13341x48bh7NmzSEpKgl6vd/xvyJAheP3111FYWAgAjv31z5F9u8ViqdPHHXfcgWHDhmHWrFk4dOhQo585KCgIw4YNw8GDB53ul0gkCA0NxVNPPYWff/65zj5RFJGWltboGI24XpamRhTFZwRB2CuXy/N0Ot3m22+//XcDBw5U3OigRERERETUMbCUChEREXUq+/fvx+XLl2+4H5vNhkGDBtXZZrFYEBcXd912ZWVlGDp0KGSyhonITz75ZJ33MpkMP/zwA+677z4YjUZIpVIMHz4cAHDo0CHs27cP6enp+Prrrx1ttmzZgrCwMFRUVGDWrFkQRRF//vOfERsbi6qqKiQlJUGhUMBqtQIAfvzxRyiVSmRlZWH+/PmYN28e1q5d26xz8eOPP0KhUKC4uBgnTpzAmjVr8J///AcLFiyARCJBYmIiZs2a1aCdzWbDwYMHsWHDhgb7fvrpJzzwwAMICQmBSqXC448/jvz8/DrHjBw50vH6u+++a6uSBLcBeFIikTxZWVkJnU73FYDtbTAOXUNSUhKmTp1aZ9uECRMwZ84c10yoDR06dAibNm3CypUrMX36dKxatQq9evVy9bRaQgAXtiXqMLj4JlFDLDFEAAPjRERE1ImYzWa8//77mDp1KlavXn1DfUkkEqxfvx5RUVHw8PBAbm4unnrqKfzxj3/E2bNnGxw/ePBg/PTTT473R48erbPfZrNBImn4MF91dTVKSkocx1dXV2Pw4MGIj4+HUqms08+wYcPg7n719u7DDz9EZWUlPv/8c0cQXiaTYcCAAQCuBhtrCwoKwrPPPosXX3wRNlvz16AUBAHe3t4YNWoU7r77bjzxxBP48ssv8dhjj6Ffv351Pvudd96J/fv3w8fH55r9XbhwAefPn8eDDz4IAPjiiy/qnJO77roL3333XbPn2QpEMODnEvYvcW5VxcXFWLJkCdatW4eAgADMmDED8+bNw9atW53+t6Ej0+l0yaIo/gBg+2233XaENfuJiIioI2JgnIiIiDqNjRs34s4770RsbGyr9HfkyBHs2rUL8+bNw5kzZxATE9Mg4G6xWDBw4MA6gWEAKCwsxLlz5zBw4ECkpKRg7ty52LZtGwAgIyMDq1evxjvvvOM43h7crq6uBgDs2bOnQX3xqqoqSKVSVFVV4ZtvvsHixYudZqZfi9FohEKhuOEgnFqtxhNPPIHt27fjscceq7PParXCZrM1GuC0WCxYtWoVcnJy8MwzzzRp3OYsmqfT6f4N4P4mHFoC4FtRFL/28PD47ujRo+aa9tuaOhZRU2zZsgV9+/ZFVFQUAGD06NFYt24dDhw4gAceeMDFs2u2CEEQegOYWVpaatDpdN8IgrCjpKTk+5SUlEpXT46os2FmLBGRcwyMExERUaeQnp6OnTt34ssvv0RWVlar9Dlz5kxMmTIFhw8fxn/+8x8MGjQIx44dw6ZNm7BmzRpH9rYz+fn5WLBgAfbv34/Q0FCkpaUhNzcX/v7++OWXX1BWVgaJROIIhNc3d+5cvPPOO6iursbQoUMBXA2ay2QypKenw2QyNfkLAFEUkZqairVr12Ly5MnNPg/O9OzZE5cvX26QCV9ZeTUmdt999zltt3nzZvTo0QMxMTFYv349Xn31VYwbN+662eUtdL0AQYEoijsFQdheWVl56PTp05bWHvxGtVHZmE6juLgYixcvxn//+1/4+vrikUcewbp163D06FGcO3cOU6dOrZOhbi/ncvToUchkMlgsFrz33nvYt28frFYrhgwZgjlz5sDT09Nx7MKFC/Hee+9hzJgxmDZtGsaMGYPVq1c7SjBVVFRg1KhRWLFiBQYOHIj9+/fj2WefdcxRIpFg+PDh2L9//80YGJfWeu0LYJooitPUanWpTqfbBWC7IAj74+LiOsZCD0RE1OmwxBABDIwTERFRJ7Fq1So8/fTT8PX1bbXAuFQqxeLFi/HCCy+gqqoKL7/8MlQqFT766COsWbMGr7zySoM29kBxVFQU3N3dcerUKWi1WkRHRyMhIQEPPPAAfvnlFwwZMqROO3ttcTuJRILx48dj5syZiI6Ohr+/P6qqqiCTyRz1w68XmLe79957Hf29/vrrmDhxYktPRx1VVVVwc3NrkH2el5eH4OBgfPvttw3aDBw4sE4meVRUFLZv346SkpI69cTtnG27AdkAdgiCsL1Lly4/svRDx3PvvffC09MTgwYNwmuvvQYvr5b/DbtgwQJUVFRg9+7dEEURr7/+erPaL1myBJmZmdi6dSvkcjnefPNNrF69GgsXLnQcc+zYMezatQuiKMLT0xPDhg3D3r17HYHxgwcPwsvLC3fffTcKCwtx5coV9OnTp844MTEx2Lt3b4s/pwuV4Gp9/vrUAJ4A8IQoiia9Xr/XZrNtl8lke2syWomIiIjaDQPjREREdMs7cuQIsrKyGpT1aA2RkZHQ6/W4dOkS1Go1AGDhwoV48skn8dBDDyEsLKzO8SaTCSqVCgAwaNAg/Pjjj9BqtYiKikJSUhKGDx+OY8eO4aWXXqrT7tChQwD+V18bAMLDwzFp0iSsXLkSb7/9NqqrqyGVShEYGAhBEJCSkgK9Xn/d+f/4448wGo146623sGPHDowdOxYymcxRgqWysrJOsNpiscDNza3REi1JSUno3bt3g+2nTp1yupig1WqFxWJBly5d6mzfuHEjHn30UUc98dz4LC7oAAAgAElEQVTcXEycOBHr1q1znAc7QWjWU+IigDRBELZXV1dvP3ny5C8Aml9c3UWaUzbmJif26dMHP//8M6RSKVJSUvDWW29h4cKFeP/991vUYWFhIX7++Wds3rwZvr6+AIA//vGPeOGFF5rUvqioCHv37sUXX3wBf39/AFcXzn3zzTfrBManTJniuNYBYOLEiXjppZdgMpmgVCqxa9cujB8/HoIgIC8vDwDg5+dXZyw/Pz8UFRWhqqoKOp3ulxZ9YNfwbMIxSlEUJwqCMNFqtUKn0+0TBGGbKPJhCKLWxsxYooZYYogABsaJiIjIRbRabeukJjfBt99+i5ycHIwYMQIAHItLjh49GsuXL8fAgQNb3HdKSgqOHz+OoKAg7N27F2PGjEFERAS++eYbdO3aFRZL3Socubm56Nq1K4Cri1B+/vnneOmllxAZGYl9+/bhxIkTCAoKahBQv5YpU6YgPz8fFosFEokEUqkUUqkUAwYMwN/+9rdGA+PA1eDbsmXLMGnSJKxbtw6zZ89GSEgIJBIJkpKS6mSvJycnIyIi4rr95efnY9u2bfjzn//cYN/OnTudZqWXlJRAKpXWCcLn5uZi8+bNeOqppxzbVqxYgUmTJuGuu+7C8ePHIZVKodVqG/2M9QmCMD0uLi4DXEizw3Nzc4ObmxuAq08RPP/883jllVeuuWBtY3JzcwEAoaGhjm2enk2J416Vk5MDURSdlh2yP60BAN26dauzT6/XIzAwEIcOHYJer8epU6ewbNkyAFfLGQENv9yxv6/ZP6DJk7w5jRZFMcDVkyAiIqLOg4FxIiIicglBEL5qr7HqL4hprwG8b98+RyDWXt+7OUpKSvDaa69h9uzZ0Gq1mDVrFoYMGQJPT09H8Lu+5ORkR8b0nXfeic8++wwWiwX33Xcfhg4dinXr1jWrRIhMJkNwcDAKCwshl8sd219//XU8/fTTeO211zB9+nT06NEDRqMRcXFxdQKCdl26dMGcOXPwpz/9CaNGjUJ0dDRGjRqFt99+G3K5HN27d8fp06fx2Wef4cUXX2zQXhRFFBUV4ZdffsFHH32EBx98EPffX3dty2+//Rb5+fkNtgNXg+n1S2P88MMPdcqr7Ny5E6WlpXj++ecBAHK5HPPnz8fWrVsbXcyzvri4uPRmNaAOw2KxQC6Xt3iRWPtTCQUFBY6AuD1jG/jfQrcVFRWOf1fl5eWO/fZ693v27EFAwLXjuM6eYJg4cSL27NmD7OxsDB8+HN7e3gAAjUYDADAYDHWemigoKIBarYZUKgWAln+D1/6+Q9OyxiGK4mkAx2Qy2fJjx45dYP18otbHzFgiIucYGCciIiJX2d6OY0243k6LxYLp06fjkUcewdNPP92kDouLizFr1izceeedeOihhwAAL774IsxmMzw8PGC1WuHh4YHz58/Dw8PD0e7777/Ho48+CuBqgG3btm0A4FjQ7+DBg9i8eXOD8QYPHnzd+Vy4cKHOApWhoaHYsmULNmzYgBdeeAEGgwEKhQK9evXC/PnznfYxZMgQ3H///fjLX/6Cf/zjH5g3bx7effddzJ07F2VlZQgKCsKMGTMwfvz4Ou3uvfdeCIIAtVqNvn37Yu7cubjnnnvqHHPs2DFHyRf7Z83Pz4evry/c3NywZ8+eBlny+/fvd2SXf/fdd/j73/+OdevWoaSkBKWlpRBFER4eHo450q3p0KFDiIqKQkBAAM6cOYMPPvgAv/vd7xz7m/ulVrdu3RAREYE1a9Zg4cKFKCsrq3PNde/eHUqlErt378aUKVNQWVlZZ7+/vz90Oh1WrVqFV199FRqNBqmpqSguLm5Q3qe+Bx98EB999BEyMjLwl7/8xbHdz88PXbt2RXJyMrp37+7YnpycjJiYGABAfHz8TVNKRafTOV81+CoRwE+CIGyXSCQ7Tpw4kdFe8yIiIrJjiSECGBgnIiIiF4mPj2+3UiqoVy4jNjYWcXFxjvcymQwbN27EzJkzUVJSgpdffrnRDiUSCe68807Mnj3bse2+++4DAGRmZjoCd1KpFNOmTQMAHD58GFlZWRg+fPg1y7dUV1c7AucAsGPHDgDATz/95NhvD74dPXoUCxcuhKenJ3JycvDss8/W6SsgIAALFiy45meofQ7slixZ4nitUCgwZ84czJkzx2n7+ufxWhISEvDKK6/gzTffdHzuiooKjBs3DtXVV+NnGo0GK1eudLS5cuUKkpOTHWVc/vrXv8JsNmPKlCnw8fGBt7c3vL29cccdd2D79u1Os9Dp1pCUlIS33noLJpMJXbt2xcMPP+z4t96SL7UAYPny5Vi0aBFGjRqFiIgITJo0CUlJSQCuPomwdOlSrFq1Cl9//TX8/PwwbNgwHDt2zNF+xYoVWL58OSZOnAir1Yrw8PA6/y24li5dumDYsGE4c+YMdDpdnX2jRo3C999/jzFjxgC4+hTGoUOH8MwzzzT5c3Ug9RferAZwuCYY/q8TJ07kuGJSRERERLUxME5ERESEqxmb69evR2pqapOOV6vVeOWVV5zu69atG/773//CZrPVKfkQFRWF+fPnQyaT4ejRo02e26ZNmxyv3dzcsHPnTgDAHXfcgY8//hiVlZXw8vK6blkHV+rfvz/+9re/oWfPno5tarUax48fR2VlJaqqqqBUKuuUnlAoFFiwYIGjrMSuXbugUqmclqeIjIx0lKKgW8/s2bOvGXRuyZdawNWFa//+97873tuD4nZDhgypU1sfuLrApp2Pj0+dL3Jqa+wLo/Pnz2PChIYPsUyZMgUTJkxAamoqIiIi8N1338HNzQ2jR49u0mfqYEpwNTi+XxTFLyUSybdxcXEFrp4UUWfFzFiihlhiiAAGxomIiIgcNBpNqwVYa9f7tgsMDERgYGCz+4qNja3zPiQkBMDVbPQePXq0bILtSCKR1AmK1yaXy52eKx8fHzz44IOO99dbHLF+aRfqXJr7pZarlJSUYP/+/TAYDBg7dmyD/b6+vpg7dy4WL16Mt99+G2vXrsWyZcvs9cVvKqIo/lEUxe9PnjxZ7Oq5EBEREV0LA+NERER0yxOcpRkT0S2jNb/UaisPPPAAAgIC8M4771xzsdiRI0c6Ft+1PxlyM0pISPja1XMgov9hZiwRkXMMjBMRERERUYfU3l9qOXt6obXdzAFvIiKiWwVLDBEASFw9ASIiIiIiIiIiIiKi9sSMcfr/7N15eFTl+f/xz5nsK1kIECABgoACBmaGXUSwSMWCKEELFLeKiFLFX60iAqIixQWshW+LKCoFXItYEGkVF1qqyJJJRIUChhRICBDIRjYmyZzfHybTRBJIAslA8n5dV65r5pzzPM99JhyWOzf3AwAAAAAAmigqY4Ez0WIIEhXjAAAAAAAAAIBmhopxAAAAAACAJorKWACoHolxAAAAAAAAAM0GLYYg0UoFAAAAAAAAANDMUDEOAAAAAADQRFEZC5yJFkOQqBgHAAAAAAAAADQzVIwDAAAAAAA0UVTGAkD1SIwDAAAAAAAAaDZoMQSJVioAAAAAAAAAgGaGinEAAAAAAIAmispY4Ey0GIJExTgAAAAAAAAAoJmhYhwAAAAAAKCJojIWAKpHYhwAAAAAAABAs0GLIUi0UgEAAAAAAAAANDNUjAMAAAAAADRRVMYCZ6LFECQqxgEAAAAAAAAAzQwV4wAAAAAAAE0UlbEAUD0S4wAAAAAAAACaDVoMQaKVCgAAAAAAAACgmaFiHAAAAAAAoImiMhY4Ey2GIFExDgAAAAAAAABoZqgYBwAAAAAAaKKojAWA6pEYBwAAAAAAANBs0GIIEq1UAAAAAAAAAADNDBXjAAAAAAAATRSVscCZaDEEiYpxAAAAAAAAAEAzQ8U4AAAAAABAE0VlLABUj8Q4AAAAAAAAgGaDFkOQaKUCAAAAAAAAAGhmqBgHAAAAAABooqiMBc5EiyFIJMYBAAAAAKi3K6+8Mtzb23u0xWIxEhMT/+LpeAAAQO2QGAcAAAAAoA7sdntLSTeZppkg6XpJMk1zmSQS47joUBkLANUjMQ4AAAAAwDnY7fZoSTebpplgmuY1krw8HRMAoH5oMQSJxDgAAAAAANWy2+2xpmmOlZRgmuZVouoWAIAmg8Q4AAAAAADl7HZ7Z5fL9ZikX5umaanD0CttNttDDRUXUF9UxgJnosUQJBLjAAAAAABIkqxW6yemaV5nGPXKlQwq/6qrsvosBgAAzg+JcQAAAAAAJLVo0eKG3NzcqwzDmCPpZ3Uc/q2kz+ux7M56jAFqjcpYAKgeiXEAAAAAACRt3ry5VNI/y78sNputn6QEwzASTNPsdI7hXzkcDlqpAMAlgBZDkEiMAwAAAABQHZfD4fha0teSHrXb7VbTNBMkJUjq5tnQAADA+SIxDgAAAADA2ZmJiYkOSQ5Js3v16tXdy8trnH5Mkl/ZUIvabDbzp8fKysqyv/nmm4gLtUZAQMCAK664YqvD4QiQVFyHoW1iYmKeaNGixSgfH5/WJSUlx3Jzc9ccPnz4KUm5Fyq++goLCxvbunXrGYcOHRrXuXPnf6ampt5cUFDwjafj8gQqY4Ez0WIIEolxAAAAAADqwvzmm2++l/S9pKd69erV1dvbO8E0zaILvZDD4aiStImJifnThV6jPgIDA9vGxcV9XVBQ8NX+/fuHnz59+r++vr6XxcTELLj88sv/+Z///OcqSQUeDLFlbGzsKykpKcOLiooOZ2RkzI2NjV29Z8+e3mKzUwBAORLjAAAAAADU0zfffLNP0oJGWMovIiJiwv79+3/eCGudVevWrf9QXFy8JzU1dYIkU5KcTufulJSUsVdcccXOdu3aPZ6enj7LU/G1a9fu/xUUFGwrKChIlqSTJ0++GR0dPS88PPzW7Ozstz0Vl6dQGQsA1bN4OgAAAAAAAHB2ERERN5WUlBwpLCzccb5TxcXFvd+7d+/Cnj17/jcsLGz4T877RkdHP9OzZ8//Wq1WZ8+ePQ+1adPmCUle5ecDw8LCbs7MzFyo8qR4JWUnT558NSws7JfSj21aytvBBFdcUOmYf/kh/5iYmCXx8fEne/funR8XF/e2pBaVr42IiLgrPj7+RPv27V+S1MpqtZ4ODQ29odK6gb169coNDQ39uSSFh4dPyMnJ+Wul867c3Ny14eHhE+r/sQFoSvr37x9qs9lMm82W4+lY4DlUjAMAAAAAcJGLiIj49YkTJ1ac7zxxcXErvLy8QpKTkztLUteuXd+rfD42NnZZUFBQn9TU1DEFBQW7AwIC+nTu3Pldi8XifeTIkSeCgoI6G4bhk5ubm1zd/IWFhXv8/Pw6qZaFeB06dHjFz88vbv/+/b2KioqKu3Tp8k6HDh3+cPDgwV9XXBMaGjp8165dcfqx6jk3Jyfng4iIiEl5eXkbJSkyMjKhtLT0RF5e3ieSWvn6+nY6depUlR8g5Ofnb4+JiZlUl88KANC0UTEOAAAAAMBFLCAgoH1ISMjQ48ePrz7PqVqFhYWNTk9Pf0RShqSMo0ePPlPpfMuWLVvekZaWNrV8o8qSoqKirUeOHJnbsmXLe8uvqagcP2Nj0IrjpmmaZzlfWVRkZOSk9PT0aUVFRWmSThw7duzFsLCwhMoXHT9+fKGkPJVv6pmZmbk0LCxsjKQQSQoPD7/z5MmTr0gyAwMD20uS0+k8UnmOkpKSI97e3lGSfGoRV5NCZSxwpm3btuU5HA6DDWmbNyrGAQAAAAC4iIWFhd2Rl5e3SdLR85knMDAwRpIKCwv3VxwrKSnJrXS+gyTj1KlT31ceV1JSst/b27uVJEtBQcEB0zTLgoODr8zPz/+imjWuOH369F7VIjEeGBgYK8no1q1bddXnvhUvCgsLUyqfyM/P/6fT6TwYGRk5tqCgYHNQUNCgH374YXz56Ype2lXWNwzD/Ml5AEAzR2IcAAAAAICLWERExJ1paWkzz3eesrKyXEny9fVt53Q6K163rzhfWFh4RJICAgK6FRUVbas47uvr27mkpCRNkktSXm5u7vrWrVs/VE1i3DsiIuLeig0uDcM4XX48UFK+JPn4+LSouNg0zeOStGfPng5FRUWHzhK666cHMjMzX46IiLjNx8enQ25u7geSMstPZZTH3MbpdLorpH18fKLLysqyJTnPsk6TxOabAFA9WqkAAAAAAHCRCg4OHuLl5RWRm5u7/qfnAgICYuoy1+nTp38oLi7e3b59+2clRfj7+3dq06bNI5UuycjJyXm/Q4cOy4KCguIleQcEBPSPjo5+6ujRoy+4L8rImB4YGNinQ4cOr/v7+3eS5BMUFBR/2WWXrTcMw8zIyHhRkgoLC/9TVlZ2qk2bNndUhNyqVauHK+YpKio6nJ+f/6/o6OiXyu/FOygoqFdQUNDPznUvmZmZK4OCgvq3bNny1ydOnHi54nhhYeGRkpKS9KCgoD6Vrw8MDOxTUFCwvS6fF4CmixZDkEiMAwAAAABw0YqIiLirvAL7p5XO/nFxcV+0bt26TpXkP/zww62+vr7RVqv1aMeOHf+amZn5SuXzBw4cuD0/P39zXFzcx1artSguLm7l8ePHn8vMzFxccU1RUdHhH374ob9pmpauXbtut9lszi5dunxVWFi4a8+ePddIKqy49NChQ7+KjIyc2rNnzwNdu3b9JC8v7+PK6+3bt+9WSa5u3brttlqtBTExMW+odtXNOdnZ2R+4XK6C/Pz8f1U+kZWV9U5ERMQtlQ4ZLVq0GJuVlfVuXT4rAEDTRisVAAAAAAAuUocOHbqrhlPFqampQzp27Pipj49PRFpa2iM1XFeF0+n8/j//+U/fyseysrJeq/S2MC0t7aG0tLSHzjZPUVFR2qFDh+48dOiQQkJCBnfq1Gmtt7d3C39//4ji4uIi/ZjcdmZnZ3+YnZ39YeWxx48fX1Tp7bEDBw6Mq2GNrx0OR41J8sDAwF6ZmZkv//R4enr6wl69eu0JDg7umZ+f/11ERMStksqysrLePNs9NVX9+/cPLe8ln8tGg8CPaDEEiYpxAAAAAAAuSYWFhUd27979s+zs7I/PfXXDOXXq1L/3799vNQwjqGvXrjutVmtBcHDwoAZcMjIqKmqat7d368zMzDeqOX/08OHD97Zt2/bVwMDAttHR0c+kpqZOVDPsLw4AqBkV4wAAAAAAXLoyCgoKMjwdRFFRUfrBgwdvb4y1rFZrutPpPPTDDz/cpPJNPX8qKyvrvaysrPck6fvvv+/SGHFdrKiMBYDqkRgHAAAAAACXjKSkJH9PxwDg0kaLIUgkxgEAAAAAkCTZbDazsdc0TXNzUlLSsMZeFwCA5o7EOAAAAAAAHmIYxlBPx4CmjcpY4Ey0GIJEYhwAAAAAAEmSw+Fo1CRJpQp1Q1KjV6sDANCckRgHAAAAAMCzSIyjwVAZCwDVs3g6AAAAAAAAmilTkm655RaSlgDQiPr37x9qs9lMm82W4+lY4DkkxgEAAAAA8AxTkjIzM0mMAwDQyGilAgAAAACAZ5iSdOrUKRLjaDBsvgmciRZDkKgYBwAAAADAU0xJKi4uJjkDAEAjo2IcAAAAAADPMCXp9OnTJMbRYKiMBYDqUTEOAAAAAIBnmJLUvn17kpYA0IjYfBMSiXEAAAAAADyFinEAADyEVioAAAAAAHiGKUlOp5PEOBoMm28CZ6LFECQqxgEAAAAA8BRTkkpKSkjOAADQyKgYBwAAAADAM0xJKisrIzGOBkNlLABUj8Q4AAAAAACeYUpSWFgYSUsAaES0GIJEKxUAAAAAADzFlKTS0lIS4wAANDIqxgEAAAAA8AwS42hwVMYCZ6LFECQqxgEAAAAA8BR6jAPn1iYuLm5t79698+Pj409ER0c/IxKaZwgLCxvbrVu3bQEBATE9e/Y8EBQU1MvTMQEXOxLjAAAAAAB4BolxNLht27blORwO41KtFu/Wrds6SWXJyckxe/fuHRARETGuVatWUz0dV0Pw8/Pr0qNHj32S/Os4tGVsbOwraWlp9xYVFR3OyMiYGxsbu1qSVwOECTQZJMYBAAAAAPAMU5KCg4NJjAPV8PPz6xIUFNQvIyPjYUnZp0+f/uHIkSNPRkRE3O3p2BqCxWKJ9PPz61LXce3atft/BQUF2woKCpIl6eTJk296eXmFhIeH33rho2wa+vfvH2qz2UybzZbj6VjgOSTGAQAAAADwDCrGgbPw9vYOKH/pqjjmdDozAwICep7n1P4xMTFL4uPjT/bu3Ts/Li7ubUktJKlVq1b3x8fHn5QULkkhISGDe/fufcrf3z/uXGPLWdq0aTOjR48eKVar1XnllVceDgwMtAcEBAyw2WympOCKCysd85ekK664Yqsk2Wy2ovLj54xXksLDwyfk5OT8tdL1rtzc3LXh4eETzvNzApo0EuMAAAAAAHiAaZokxtHgLuXK2IKCgt1Op/Ng69at50sKCwwMbNu2bduZhmH4SfKu77wdOnR4JSAgwLp///5eycnJHb28vKI6dOjwB0k6fvz40tOnT/8nJiZmjiRL+/btl6Snpz9eXFx84FxjJSkmJmZRZGTklEOHDt2elJQUtHfv3p+7XK4TtYlrz549AyXJ4XAEOBwO9+8L51izla+vb6dTp07tqDxXfn7+9uDg4AH1/Yyauku9xRAuDBLjAAAAAAB4gGEYpiS5XC4S40D1SlNTU0f7+fl1sVqtxzt16vR5fn7+ZtM0T0sqreecUZGRkZPS09OnFRUVpUk6cezYsRfDwsISys+bqamp90RGRt7Tvn37BWVlZXmZmZn/V8uxYS1btvzNwYMHJ586depLSSVOp3N3cXHxwfp/BGdfMzAwsL0kOZ3OI5UHlZSUHPH29o6S5HMeawNNWr1/ugYAAAAAAM4LFeNocNu2bcuTdMn+GisoKPh27969gyret2zZ8p7i4uK99Z0vMDAwVpLRrVu35GpO+0pyOp3O3VlZWWtatWr16L59+65R+bN6rrGBgYFxhmF45+fnJ9U3vnrEW/G9rdx6xf2DN13C33ugoZEYBwAAAADAM0xJCggIIHEF1FJYWNgtOTk5H9Z3vGmaxyVpz549HYqKig5Vd42fn1/nsLCwG3Nyct5v06bN4z/88MO/ajO24nxgYGCXwsLCKq1NDMM4Xf4yUFK+JPn4+LTQOdQi3gxJ8vX1beN0Ot3tcnx8fKLLysqyJTnPtUZz1L9//9CSkpJcSbm0U2m+aKUCAAAAAIBn0EoFOIeQkJBBksIkhbdr125+QEBAj4yMDHdP74CAgJi6zFdUVHQ4Pz//X9HR0S+Vj/UOCgrqFRQU9LPyS7w6duy46sSJE386cODArwMCAnpFRETcXZuxRUVFaTk5OR/GxsYuCwoK6lV+vre/v39cYWHhf8rKyk61adPmjorQW7Vq9XDl2FwuV7YkBQUFXSUpojZrFhYWHikpKUkPCgrqU3muwMDAPgUFBdvr8tkAzQ2JcQAAAAAAPKBi800S42hIl/Lmm5LUokWLMb179z7cu3fvQwEBAfHlrU1Olp/2j4uL+6J169Yz6zLnvn37bpXk6tat226r1VoQExPzhspbjkRHRz/m7e3d+siRI7+XlHfkyJFHY2JiXqxIwJ9trCQdOHDgVwUFBV937tx5k9VqzY+JiVnhcrn8JRUdOnToV5GRkVN79ux5oGvXrp/k5eV9XDmu06dP7z1x4sQrl1122Yb4+Pg9tYlXkrKyst6JiIi4pdJURosWLcZmZWW9W5fPpTlh801ItFIBAAAAAMAj2HwTOLe0tLQZaWlpM2o4XZyamjqkY8eOn/r4+ESkpaU9Ustpjx04cGBcdScyMjLmZ2RkzK94f/LkyVUnT55cVZux5U4dPnz4/sOHD9//0xPZ2dkfZmdnV2kDc/z48UWV3x86dOjeQ4cO3VvbeCUpPT19Ya9evfYEBwf3zM/P/y4iIuJWSWVZWVlvniVOoNkjMQ4AAAAAgGeQGEeDu9Q33zyXwsLCI7t37/5ZUFBQD0/H4kFHDx8+fG/btm1fTUtLS4iOjn4mNTV1vOgvDpwViXEAAAAAADzDlCTTNJts0hJoJBkFBQUZng7Ck7Kyst7Lysp6T5K+//77Lp6O52LH5puQ6DEOAAAAAICnmJLk5+dHYhwAgEZGxTgAAAAAAB5gGIZpmiatVNCgqIwFztTUWwyhdqgYBwAAAADAA0zTpMc4AAAeQsU4AAAAAACeQY9xNDgqYwGgeiTGAQAAAADwDCrGAcADaDEEiVYqAAAAAAB4CptvAgDgIVSMAwAAAADgAWy+icZAZSxwJloMQaJiHAAAAAAAj6jYfJMe4wAAND4qxgEAAAAA8Ax6jKO+LHa7/demad4mqbukljVdWFJSUvGyhc1mM+u4zglJuw3DWJWYmPi6JFe9ogWAixCJcQAAAAAAPIOKcdSHxWazrTNNc1QjrNVS0hDTNIfYbLYbHQ7HTSI5jiaAFkOQSIwDAAAAAOAppiT5+PiQGEetlVeKj+rQ7jLdN/ExdYrpqkD/oAZZq7C4QKmH92npW8/qYPoPo61W611JSUmvNchiANDI6DEOAAAAAIAHGIZBxTjqrLx9iu6b+Jh6dLE2WFJckgL9g9Sji1VTJ8yQJBmGcVuDLQY0om3btuU5HA6DavHmjcQ4AAAAAAAewOabqKfuktQppmujLRj3v7V6NNqiANDASIwDAAAAAOAZJMZRHy0lNWil+E8FBgRXWRsAmgJ6jAMAAAAAUE9Wq7WtYRg3G4YRl5iY+HAdh5uS5HK5SIwDQCNi801IJMYBAAAAAKgTq9XaQVKCYRgJkgZJkmma2+oxFZtvAgDgISTGAQAAAAA4h969e3fx8vJKME0zQVKfai6p87+vDcMwTdOklQoANLJt27blSeL33maOxDgAAAAAANWwWq3dLRbLuPJkeHz5Xpk1Ka3r/Gy+iUuRzWY764PQEEzT3JyUlDSssdcF0LSRGAcAAAAA4EdGnz59ertcrsmS7pekcyTDK+tgs9leqqtZigAAACAASURBVON6PcvXIDEOnIVhGEM9HQMuCRa73f5r0zRvk9RdDbdZ7AlJuw3DWJWYmPi6JFcDrYMGRmIcAAAAAABJNpvtNZfLdYckSz2Gt5E0vT7renl5FddnHOAJDoejUX+Q44kKdVySLDabbZ1pmqMaYa2WkoaYpjnEZrPd6HA4bhLJ8UsSiXEAAAAAACQ5HI5fx8fHP+bt7X2nYRjzTdOsy7+ZD0qqa8W4JGXs3LlzXz3GAQDKlVeKj7qsXUc9NvE+dY3ppCD/wAZZq6C4UPsOp+rZt5bqh/T/jrZarXclJSW91iCLoUGRGAcAAAAAoNyuXbuOS3pe0vP9+vWLLC0tvVFSgqTrJPmeZehRh8NRn8Q4AOA8lbdP0WMT75O1S48GXSvIP1DWLj00Y8JU3bPwMRmGcZskEuOXIBLjAAAAAABUY/v27SclvSHpDbvd3qL8v+gnSBopyf8nl/PvawDwnO6S1DWmU6MtWGmths3Eo8HwBzcAAAAAAOeQmJiYK+lNSW/Gx8cHeXl5jTQMY5ykX5ZfUuq56ACg2WspqcHap1QnOCCoytq49JAYBwAAAACgDnbt2lUgaY2kNQMHDryrqKhohGEYl3s6LgAAUHskxgEAAAAAqKetW7cWSVpX/gUAAC4RFk8HAAAAAAAAAABAYyIxDgAAAAAAAABoVkiMAwAAAAAAAACaFRLjAAAAAAAAAIBmhcQ4AAAAAAAAAKBZITEOAAAAAAAAAGhWSIwDAAAAAAAAAJoVEuMAAAAAAAAAgGaFxDgAAAAAAAAAoFkhMQ4AAAAAAAAAaFZIjAMAAAAAAKAxGJ4OAAAqeHs6AAAAAAAAADRNdru9hWmaoyQlSPqvw+H4radjAgCJxDgAAAAAAAAuoH79+kWWlJSMkZRgmuZwSb7lp5Z5MCwAqILEOAAAAAAAAM5L375927hcrptN00woLS0dahiGl6djAoCzITEOAAAAAACAOrPb7bGmaY6VlFBWVnaV6CEO4BJCYhwAAAAAAAC1YrPZLjNNM8EwjCdM0wys4/AxVqu1Z4MEBgB1RGIcAAAAAAAAtWKa5gzDMG6SVNekuCS1MQyjTT3GnajHGAA4KxLjAAAAAAAAqJWkpKR7hg4del9+fv4tpmlOMk2zv6TI2ow1DGOdpIV1XbO0tDS1rmMA4FxIjAMAAAAAAKDWNm/eXCrp7fIvS58+fQa6XK4ESQmSYmsaZ5rmUYfD8e9GChMAzorEOAAAAAAAAOrLtXPnzi8lfSnp4d69e/fx8vJKME1znKTOHo4NAGpEYhwAAAAAAAAXgpmcnLxD0g5JM61Wa7ykBMMw7pbU1rOhAUBVJMYBAAAAAABwoZlJSUnfSPpG0hM2m+0Ki8XS2tNBAUAFEuMAAAAAAABoUA6HY4+kPZ6OAwAqWDwdAAAAAAAAAAAAjYnEOAAAAAAAAACgWaGVCgAAAAAATYxpmqanY7hYGIZheDoGAMDFh4pxAAAAAAAAAECzQmIcAAAAAAAAANCskBgHAAAAAKAJ2rt3r+6//34NHjxYV111lR588EEdPnzY02E1iM8//1y33367jh49qhtvvFH79u3zdEg1stlso2022+O9evXq6ulYAKA5IzEOAAAAAEATU1hYqKlTp6p79+76+9//rg0bNqhFixZ66KGHPB3aBZeTk6NnnnlGs2bNUps2bXTvvfdq9uzZcrlcng6tJh0kzffy8tprs9m+tdlsT9rt9isl0QsdABoRiXEAAAAAAJqYtLQ05eXladKkSQoJCVF4eLhGjRql9PR0NbV9Od9880317NlT3bp1kySNHDlShYWF+uSTTzwcWa30lDTXNM1dNpttr9VqXWC1WvuIJDkANDgS4wAAAAAANDGdOnVSTEyMlixZIqfTqezsbC1fvlw33HCDDKP+OdecnBw9/PDDGjhwoEaNGqXly5fLbrfL6XTq22+/ld1uV2Fhofv6imNOp1OS5HQ69fzzz2vYsGEaPHiwHn/8ceXn51e5dv369br22mu1cOFCZWVlacCAAfryyy/dcxYXF2vIkCHaunWrJOnjjz/Wdddd5z5vsVh07bXX6uOPP673fXpIF8MwHjMMY4fNZku12Wwv9unT5yqRuwGABuHt6QAAAAAAALgY2Gy2JlNK7ePjo2XLlmnmzJn6xS9+ocLCQo0ZM0a//e1vz2veJ554QsXFxdqwYYNM09SMGTPqNP6ZZ55RWlqa3nnnHfn5+WnmzJlatGiR5s6d675m27Zt+vDDD2WapoKDgzVs2DBt3LhRV111lSTps88+U1hYmAYMGKCsrCylp6ere/fuVdbp0aOHNm7cKEmy2WxPntdNX2CmafarxQ8nOkj6fy6X6//ZbDYZhpFsmubDoaGh/8rLy2uEKAGg6SMxDgAAAABAE/TVV19p//79+tWvfqXU1FRt2LBBQ4cOVb9+/eo1X1ZWlr788kutWrVKkZGRkqTJkyfrN7/5Ta3GZ2dna+PGjXrrrbfUunVrSdKkSZM0c+bMKonx22+/XUFBQe7348aN04MPPqjCwkIFBgbqww8/1NixY2UYho4fPy5JioqKqrJWVFSUsrOzVVpaKklzdRGpT8W+aZq9JX2Wl5e3+8JHBADNE4lxAAAAAAAkORyOJtPX+dSpU+YLL7ygp59+WsOHD5ck/eEPf9D8+fO1bt26es157NgxSVJsbKz7WHBwcK3HHz16VKZpasKECWecKykpcb9u3759lXN2u13R0dH6/PPPZbfb9c0332jBggWS5O6X/tNkc8X78vNP1TrIRlBeMT6yjsOSDMN4OCQkZEteXl7JuS8HAJwLiXEAAAAAAJqYI0eO6PTp07Lb7e5jgwcP1ptvvimXyyWLpe5tq0NCQiRJJ06ccCfEKyq2JcnX11fSjz3AAwMDJcndP1ySIiIiJEkfffSR2rRpU+M61VVUjxs3Th999JEyMjJ07bXXKjw8XJLUsmVLSdLJkyfd8VXEGBoaKh8fHzkcjifrfLMNyGaz/UbSuRLjBw3DeL+srOz95OTkryW5Ko1v0PgaitnUdn1FgzDOZxMEoI7YwAEAAAAAgCYmNjZWoaGhWr58ufLy8pSZmak333xTNpvNnRSvqACvrfbt26tz585asmSJ8vLylJ6erlWrVrnPd+zYUYGBgdqwYYMk6fTp01XOt27dWjabTQsXLtSxY8dUVlamffv2afv27edc+xe/+IW+++47rVu3TgkJCe7jUVFRatWqlXbvrtphZPfu3erRo0ed7s/TDMPYZ5rmAkl9HA5Hp8TExIeTk5O/UqWkOADgwiExDgAAAABAExMQEKDFixfr22+/1XXXXadbb71VAQEB7hYkTqdTU6ZM0RtvvFGneZ999lllZmZqxIgRevTRR3XTTTe5z/n5+Wn+/Plas2aNbrzxRt1///0aNGhQlfHPPfecLBaLxo0bp6uuukpPPvmkalNIHBISomHDhikgIOCMiukRI0bo008/db83TVOff/65RowYUad785BvJT1psViuTExMvDwpKelxh8ORKInqagBoYLRSAQAAAACgCbryyiu1cuXKas/5+vpq+fLluu+++5Sbm6uHHnqoVnPGxcVVmfPbb7+tcn7IkCEaMmRIlWOTJk1yv46IiNDzzz9fY7yJiYk1rr1v374q1eIVbr/9diUkJCglJUWdO3fWpk2b5OXlpZEj69rGu9EclDSrrKxszTfffLPP08E0JpfLpV27dumzzz7T9OnT5e3tfcb5P/7xj1q/fr1M09TYsWP1wAMP1GvDUunHX5933nmntmzZ4m7v05Aq1tu6dav27t1b67UrxlUICgrSwIEDNWPGDHcLooaM91wxHjt2TP/3f/+nrVu3Kjc3V4GBgZowYYKmTp16wWOyWq0rDMN4PzQ0dNPmzZuLL/gCQCVUjAMAAAAA0AxFRUXp5Zdf1sCBAz0dylnl5ubqvffe08mTJ3XjjTeecT4yMlKzZs3SvHnzlJmZqT//+c+aP3++fHx8PBDtuTkcjg8dDsfvm1tSXJKuv/56zZgxQ2+99ZZcrjM7xKxcuVL//ve/9fbbb+v111/X+vXr671Z7KVoy5YtSkxM1DvvvKMTJ05o9uzZjbr+oUOHdPPNN8vpdLqPlZaW6p577lFERITeffddbd26VStWrNCVV155XvPWxDCMOyStz8vLO26z2d62Wq3j4uPjg+pzP8C5UDEOAAAAAEAz1bJlS/cGlher66+/Xm3atNGLL75YY1Xrddddp+uuu06S9Le//a0xw0MdLF68WCUlJVWqoyv761//qvvuu8+9OevNN9+sjz76qErLnuagbdu2uueee/TAAw/Ue7Pc+sjNzdWhQ4eqHEtJSVF6erruuOMOd/V6p06d1KlTp/OatxZCJI03DGO8t7d3kc1m+4ek9w3D2JCYmJhb18mA6lAxDgAAAABAE2M0kvj4eMPhcBh+fn4NtsbXX39t/O1vfzPi4+PrNd7T3wv8z+WXX17juZMnT+ro0aNVKpG7d++u/fv3n/e6u3bt0sSJEzVgwADdcsstVVoAbd++XRMnTlT//v01evRobd26VdKPbUbsdru2bdvmHnvrrbdqz5497rF5eXl65JFHNGjQII0aNUrbtm2rMQan06nnn39ew4YN0+DBg/X4448rPz+/xusLCgoUEBDgToqfa/w777yjESNGaODAgVq4cGGVeygsLHRfV3Gsuurtih9YDBw4UHa7XZIUHR0tf39/LV68uMo8dbm36uatKeYaBEi6WdJq0zSPW63Wj6xW66/79esXebZBwLlQMQ4AAAAAAIBasVqtF76xtKQTJ05IUpWe2mFhYTp16tR5V02/9957eumll+Tv7685c+bomWee0bvvvivpxwT07Nmzddlll2nJkiVasGCB1q9f7x67du1aLV68WL6+vpo9e7bmzZunt956S5I0d+5cFRQUuK+fMWNGjTE888wzSktL0zvvvCM/Pz/NnDlTixYt0ty5c6tcZ5qmUlJS9Oc//1kTJkyo1fi0tDS98MILWrp0qXr27KnU1NR6fU4rVqxw90j39fWVJIWGhuq5557TE088oX//+9+aOHGixo8fX+V/b5zr3qqb9zxi9jUM4wZJN5SWlr5ms9k+Mwzj/dps4gv8FBXjAAAAAAAAqBXDMJbW5+tc85aVlUlSlQS4xWKp98ablU2fPl2tWrVSaGioJkyYoJSUFHeP82HDhikuLk4pKSkKDg5Wenq6SktL3WN/85vfqGXLlgoNDdX48eO1b98+uVwuZWVl6V//+pceeughd0uiyZMnV7t+dna2Nm7cqMcee0ytW7dWWFiYJk2apM8++6zKdVdffbX69OmjCRMmaMKECbrvvvtqNd7Hx0eGYejo0aMKDAxUjx49zvszq2zw4MFat26dxo0bp5UrV2rcuHHat29fne7tpy5gzKbL5SIrjnqhYhwAAAAAAAC1taye4+4928nQ0FBJP/ajDgr6ca/FnJwchYWFnXeP7aioKPfroKAgmaap0tJS+fr6asmSJVq/fr3i4+Pl5+cnSVU2Bo2M/F+3jpCQEPfYY8eOSZJiY2Pd54ODg6td/+jRozJNs0oFeIWSkhL36y1btqigoEBPPfWU1q5dqxtvvFG+vr7nHN+6dWvNmzdPf/zjH7V69WrNnDlTVqu1th9PrYSEhGjq1KmaOHGiHnvsMT3++ONas2bNOWOraRPc84jZKWmTpPe9vb3Xb9++/aQk2Wy2c/7wBfgpEuMAAAAAAACoFYfDUd9WKmdNjLdt21YhISHavXu32rZtK0navXu3evbsWc/lzi0tLU0rVqzQX//6V8XFxWnr1q36+OOPazW2Igl+/Phx9+uKZPlPVbSH+eijj9wbi9YkKipKCxYs0C233KKlS5dq+vTptRo/cuRIDR8+XIsXL9ajjz6qTZs2uduWFBcXu1ufnK2veW2Ehobqrrvu0n333SeXy1Wne6tNzDUokvR3wzDe9/b23rBt27a887oJoBytVAAAAAAAAOBRFotFo0eP1uuvv64TJ07owIEDWrt2rX75y1+6r6kp8VxfFS1TMjIylJeXp7fffrvWY2NiYhQXF6clS5YoLy9P6enpWrlyZbXXtm7dWjabTQsXLtSxY8dUVlamffv2afv27dVeHxISoscff1yrV6/Wnj17zjk+IyNDycnJMgxDMTExcjqdMk1THTt2VGBgoDZs2CBJOn36tFatWlXjPVVU7ScnJysv78fc8/79+/Xqq6/q0KFDKisr08mTJ/XBBx+oX79+slgstbq36uatKeZKThmG8bZpmuNKS0ujHA5HQmJi4lskxXEhUTEOAAAAAACABme3292vBw4c6H6dmJgo6cd+3vPnz9eYMWMUEhKie++9132d0+nUlClTdNNNN+muu+66IPF07NhR48eP1yOPPKJWrVpp/Pjx+vLLL2s9/tlnn9WTTz6p6667Tl26dNG4ceP0/fffV3vtc889p2effVbjxo1TSUmJ4uLiNH369BrnHjJkiH7+85/r6aef1urVq886vqysTE8//bTS09PVrl07PfPMMzIMQ35+fpo/f74WLlyoNWvWKCoqSsOGDdO2bduqXbNDhw4aO3aspk+fruDgYG3atEmhoaFKTEzUW2+9pfz8fEVGRurqq6+ustHoue6tunlrilnSCknvh4aGfrp58+biWn8zgHo4/x0MUGs2m82UpA2JrzTquqPsUyRJDoeD7zeg/z2Lia807rNon8KziIuL+1lo5D+X7Py5hCag4vl5JXFDo647xT5KEs8Pmi73s/VhYqOuO2X0j8k6ni1cCiqekw9fadznZPSU83tOzJ+UA9dHZmam7rvvPg0ePFgPPfTQ+U6Hi5BRz91W//fv/Mb9u5l9Cn83u5RRMQ4AAAAAAICLXlRUlF5++WWlpKR4OhQATQCJcQAAAAAAAFwSWrZsqZYtW3o6DABNAIlxAAAAAAAANKj6tsgAgIZi8XQAAAAAAAAAAAA0JhLjAAAAAAAAAIBmhcQ4AAAAAAAAAKBZITEOAAAAAAAAAGhWSIwDAAAAAAAAAJoVEuMAAAAAAAAAgGaFxDgAAAAAAAAAoFkhMQ4AAAAAAAAAaFZIjAMAAAAAAAAAmhUS4wAAAAAAAACAZoXEOAAAAAAAAACgWfH2dAAAAAAAAKBhmKZpejoGTzMMw/B0DACAiw8V4wAAAAAAwGOOHTsmp9Ppfp+Xl6esrKx6zVVcXHyhwgIANHEkxgEAAAAAOA9Wq7WDp2M4m507dyozM/OM4y6XS/n5+Tp8+LCSk5P10Ucf6cCBA40e35w5c/T555+7369cuVKrVq2q9tpjx44pPT1dknTNNddIklJSUnTixAkVFhZq6NChVZLsAADUhFYqAAAAAADUkc1mu8w0zQRJYw3D6Cfpom3XsX37di1fvlxLly6VYRgaNmyYfHx85O3tLX9/fwUHBys8PFwREREKDQ1V+/btNXDgQAUHB59z7vz8fG3evFkhISGSpAEDBqhbt241Xn/8+HH9/e9/d7//9ttvlZubqxEjRkiSTp06pTVr1sjf379KslyS1q1bpy1btmjTpk1atmyZJMk0Tc2fP1/Tpk1TaWmpYmNj5evrW+fPCADQ/JAYBwAAAACgFqxWa3eLxTKuPCEef6m0rp48ebLGjx+vd999V+PHj1dJSYm++OKLGq+vqLjetGnTOZPMdrv9jGNeXl61jm3p0qWaPn26EhMTlZ6erv3796u0tFRLlixRly5dJEnLly/Xrl27JEljx47V5s2blZGRIUnavXu3OnXqJLvdrkWLFik+Pr7WawMAmjcS4wAAAAAAVM+w2+3WispwSZdfintZ+vr6as6cObWqAD9f4eHhev3112s8P3LkSPfrL774Qt7e3howYIAmTZoku92u7du3a+HChZo7d66WL18uh8Oh9evXa8WKFZKkcePGSZKmTZumwsJCzZkzR5L01VdfaePGjfL19dWoUaNUUFCgkpISPfzwww13swCASxqJcQAAAAAA/sdis9n6maY5zmKxjDVNs5OnA7oQrFarpB9bjxQXF1dJUFeoaHMSFhZW5bjdblerVq2qXJeYmFjtOtnZ2brjjjtqFdP69eu1Z88ejRo1Sp06ddLw4cM1cuRIde/eXd99950mT56s/Px8LV68WBEREZKktWvX6uDBg5o/f76OHDmi66+/XpMmTdIHH3ygnJwc/eMf/1BUVJReffVV5efn6+abb65VLACA5ofEOAAAAAAAkux2+2LTNMdKamcYhupSHW61WqcmJSW9LEk2m+1lSfeapnmfp4+99tprWrlypZxOp7Zu3ar8/HyFh4dr+fLlCg8PV2BgoCQpKSlJ8+bNU1RUlEpKSqrcm8ViqdIXvG/fvmfc/6RJkyRJISEhKisrq/FzKi0t1aRJkzRixAg999xzKioq0sSJEzVjxgzFxsZKkg4ePKi9e/fK5XKptLRUycnJio6OlmEYWrZsmZKTkzV37lzddttt6tKli6ZOnapevXqpT58+SklJUVRUlFJSUjRo0CBdbN+PC3Gsxg8XAFAnJMYBAAAAAJDkcrlMi8ViXortUmpy99136+6779bAgQMlSenp6YqMjNSOHTu0atUqzZ49W927d9eCBQv04IMPqr5901evXq0xY8Zo06ZN7mNjxozRunXrzjpu/vz5SkhIUGxsrL7++mutXr1a6enpmjx5sm644Qbt27dPf/rTn7Ro0SKNHj1aNptN06ZN06JFizRnzhwNGzZMffr0UUhIiN59911t2bJFffv21c6dO/XAAw/U615w8WlSD2UTZ1wqmy8Auoh3zW6KbDabKUkbEl9p1HVH2adIkhwOB99vQP97FhNfadxn0T6FZxEXF/ez0Mh/Ltn5cwlNQMXz80rihkZdd4p9lCSeHzRd7mfrw+rbdDSUKaN/3ECy/Nmy2O32vqZpjjMMI6G2rVQu1ueyIqE4cOBAbd26VatXr9bBgwc1a9Ys7d27V7NmzZJhGOrTp49mzJgh6cfNNyuu9/X1Vd++fbVjxw73nJXf2+12bd68WSEhIRozZkyVNiyHDh3SJ598oqFDh6pjx47y9vZWUVGRUlNTtWPHDm3atElPPPGERo8erfT0dA0bNkxt2rSR3W7Xc889p0GDBmnw4MEKDAxUenq68vLyNGvWLLlcLh0+fFgdOnRwr/X666/L6XRqwoQJuueee7Rx40atXLlSUtNL1FU8Jx++0rjPyegpVZ6TRkVivHrHjh1TeHi4e5PcvLw8lZaWulsP1UVxcbH8/f3POyZPPW//+3d+4/7dzD6Fv5tdyiyeDgAAAAAAgIuIKzExcZvD4XgkMTGxs8VisUmaL+k/ng7sfDmdTq1Zs0ajRo1yv7dYLAoICNB3332nw4cPVzvO5XJp5MiR7i+Xy1XjGn/5y1/cX6GhofLx8dGNN96o2267TX/5y180dOhQd9/v0NBQ3X777bJarbr//vt10003afDgwfL29tagQYP08ccf6/rrr9dTTz2ldu3a6YorrtCKFStUWlqqtWvXau3atZo/f768vb0VGhqqVq1aafDgwXrhhRc0efLkC/8B4nxdconDnTt3KjMz84zjLpdL+fn5Onz4sJKTk/XRRx/pwIEDjR7fnDlz9Pnnn7vfr1y5UqtWrar22mPHjik9PV2SdM0110iSUlJSdOLECRUWFmro0KFyOp3Vjv33v/99gSMHLg60UgEAAAAAoHrmzp07kyQlSZpttVq7WyyWBNM0EyT18nBstVaR7NqxY4e6desmb29vPfroo/rvf/+rRx55RH379tV7772nO++8U7///e/dG3VWuOOOO/Tggw+63y9evLjGtSpvvJmXlydJuvPOO3X//fcrJCREmzZt0htvvCFJ6t+/v/r37y+n06k9e/bo+++/V1BQkLKysjRs2DCNGDFCWVlZ2rdvn3vO/Px89ezZU3PnztVNN92kv/zlL5o7d64sFos7WVn5nuFxlt69ew/w8vJKME1zrMPhqPdmti6XS7t27dJnn32m6dOny9vbu07n62P79u1avny5li5dKsMwNGzYMPn4+Mjb21v+/v4KDg5WeHi4IiIiFBoaqvbt22vgwIEKDg4+59z5+fnu/20hSQMGDFC3bt1qvL5ic9wK3377rXJzczVixAhJ0qlTp7RmzRr5+/tXSZZL0rp167RlyxZt2rRJy5Ytk/TjRrzz58/XtGnTVFpaqtjYWHfl+U/NmjVL//znPzV27Fi5XC5ZLGfW2ebk5JyxLnCxIzEOAAAAAEAtJCUl7Za0W9I8u93e2TTNBNM0EwzD6Ofp2GqSnZ2t3/72t2rfvr2+/vpr/e53v9P333+v4cOHa/jw4e4E16233qrLL7/cvQFmZZWT4tW9r2zevHnKzMxURkaGXnzxRc2dO1dTp07VkCFD9OCDD+qxxx5zt1tZuXKlPv30U2VkZKh79+765S9/qdzcXL311lvau3evbDabhgwZoquvvto9f9u2bfX000/rj3/8oxYtWiR/f3/t3btXPXv21Lx585STk6NFixZp9uzZysvL09ixYy/Ex4g6uOWWW7xSU1OvdrlcCZLGSmp7ITqhXH/99TIMQydOnKi2f/y5ztfH5MmTNX78eL377rsaP368SkpK9MUXX9R4fcUPZDZt2lRjkrmC3W4/45iXl1etY1u6dKmmT5+uxMREpaena//+/SotLdWSJUvUpUsXSdLy5cu1a9cuSdLYsWO1efNmZWRkSJJ2796tTp06yW63a9GiRYqPj6/VuitWrKjSMqnCtddeW+vYgYsFiXEAAAAAAOooMTExRdLzkp63Wq0dznW9p/z973+X3W7XlClTtGzZMt19990qLi6WxWLRSy+95K60Li0tVWlpqdq0aaMVK1ZIkn7xi1/Uep3HH39cERERevXVV9WuXTu1a9dOvr6+uvbaa/XCCy8oKytLL730klauXKnPPvtMkydPpvXAaAAAIABJREFUVo8ePdSvXz917dq1SgXqkCFDdOrUKW3ZskWffvqpnn32WS1YsEB9+vTRCy+8oMTERF1zzTVat26dsrOz9eWXX+r+++9XQECAlixZosDAQC1cuFAzZsyotrIVF57dbveRNMw0zYSUlJSbJUVd6DUWL16skpIS3XnnnfU6Xx++vr6aM2dOrSrAz1d4eLhef/31Gs+PHDnS/fqLL76Qt7e3BgwYoEmTJslut2v79u1auHCh5s6dq+XLl8vhcGj9+vXu53ncuHGSpGnTpqmwsFBz5syRJH311VfauHGjfH19NWrUKBUUFKikpEQPP/ywVq1apZycHBUUFOjaa69VWFiY7r777jol8IGLGYlxAAAAAADOQ1JS0kFPx1CTcePGuStXH3jggSqVtGVlZSorK5Npmu4vLy8vWSwWjRo1SnPmzDlnO4q5c+fKx8dHv//97884t3fvXnXs2FE///nPdd1118lisejqq6/W3r17FRAQUG11eoWQkBDdcMMNuuGGG3Tq1Cn5+/vLx8dHP/vZzzRz5kz3JoERERHq3LmzevbsKavVqop9/wYMGKD33ntP4eHhdf7MUDuXXXaZX2ho6HWSEkzTHCOpQT/syy+/XN9++229z9dXRWsh0zRVXFxcJUFdoaLNyU8rqe12u1q1alXlusTE6jdNzc7OrtKK6GzWr1+vPXv2aNSoUerUqZOGDx+ukSNHqnv37vruu+80efJk5efna/Hixe6NONeuXauDBw9q/vz5OnLkiK6//npNmjRJH3zwgXJycvSPf/xDUVFRevXVV5Wfn6+bb77ZvR/ANddco88//1xjx47Va6+95r7PBQsWaObMmZKkJ554olaxAxcTEuMAAAAAADRRZ2vn4OXlVWPl51NPPVWr+c923e9+9ztJUocOVQvqz9ZHuToVPZilH6vJq2Oz2c441rp16zqtg9qx2Wxjy1sITazrWLvd/oRpmtdKetrhcHxel2ON7bXXXtPKlSvldDq1detW5efnKzw8XMuXL1d4eLgCAwMlSUlJSZo3b56ioqJUUlJSZQ6LxVKlL3jfvn3PWGfSpEmSfvx1XlZWVmM8paWlmjRpkkaMGKHnnntORUVFmjhxombMmOH+IdPBgwe1d+9e9/8CSU5OVnR0tAzD0LJly5ScnKy5c+fqtttuU5cuXTR16lT16tVLffr0UUpKiqKiopSSkqJBgwbV6jPatGmTOzH+9NNPS5JsNpvp5eUVvWPHjqOSZLVajxqG0bqhj9UqYOAnSIwDAAAAANBEGRUl1MCFM9swDOu5LzuTaZrdJV1jmmaruh5rbHfffbfuvvtuDRw4UJKUnp6uyMhI7dixQ6tWrdLs2bPVvXt3LViwQA8++KDq+6itXr1aY8aM0aZNm9zHxowZo3Xr1p113Pz585WQkKDY2Fh9/fXXWr16tdLT0zV58mTdcMMN2rdvn/70pz9p0aJFGj16tGw2m6ZNm6ZFixZpzpw5GjZsmPr06aOQkBC9++672rJli/r27audO3e6/2dJaWmp9u/fr9OnT+uOO+7Q0aNHdfvtt7vv9dSpUxozZow7pieffLJenwHgKSTGAQAAAAAALh0nJLUsLC5QoH9QoyxYWJTvXtvhcNj69u0bV1ZW9htJAyUNqO08pmk+7eXl9bLT6dxd12OetnPnTl155ZW66aabdMUVV2jWrFkyDEN9+vTR0KFDz3v+ym1U8vLyVFJSoqFDh6pjx47y9vZWUVGRUlNTtWPHDm3atEmffPKJRo8erWnTpmnYsGEaP3687Pb/3969RzdVp/sf/yS9TCgUbRWHoVxFRbEjNikU+EGhUBGxWqZwEPmB4gH7QzjgLEVBoSdHK7eBIsIIIpVL4TBHdHDBeLwVBYfjcClpvAGrVRROpyLitNAGqGma/fsDk6ESoChNL3m/1upaOzu7+/km8F1tnzzf52vTggULFBERoX79+mnp0qUqLS1VRUWFZs2apT/+8Y8qKSnRrl27tHz5cknS6tWrlZKSovvvv18dOnRQu3btFBcXJ4/Ho4yMDHXr1k3h4eF67rnnlJmZqTfeeMO/0mTQoEHnJfALCwtrfULgdDrb/vS11sc5q9X6y3d4RcghMQ4AAAAAANB0HJCU/HVJsW698WcVbl+2r0qKfYf7JamgoOArSY9J0m233dY+IiIiwzCMEZL6S7pg6bTT6Tygs+O/7HMNye126/XXX/e3DnK73TKbzbJYLPr8889VUlKiDh06nPd9Xq+3Vk9yr9d7wRjr1q3zH6enpysiIkL33nuvevTooaFDh2r58uW6/fbbJUmtW7fWAw88oM6dOys9Pd2fvK6urlbfvn317rvv6rnnntPgwYNlt9sVFxentWvXasyYMdq8ebM6deqkgwcPym63q3Xr1jKbzerXr58WLlyo559/XpIUHh6urVu3SjrbY7x9+/Zyu90KCwvTqFGjJJ2tGPcdx8XF+b8XaCpIjAMAAAAAADQRJpNpvWEYySs2ztek+2fo+g43KapFq3qJdfqMS1+VFOulPy2QJBmGsf6n13z66ad/l7RU0tKePXu29Xg8w00m0whJKZICN7FvAMeOHbvsvvNut1uSVFBQ4E8+P/nkkzp8+LCeeOIJ9ezZU5s2bdL48eM1d+5c/0adPg8++KCmTZvmf7x06dILxvppxbgkjR8/XpMnT1Z0dLTy8/O1Zs0aSVJSUpKSkpLkdrt18OBB7d+/Xy1btlRZWZlSUlI0ZMgQlZWVqbjY/4GGXC6X4uPjZbfbNXz4cK1bt052u11ms1ler1cul6vWa/6pb7/9Vm3atJEkff/99/rgg3+2fj9x4oT+9V//9dJvKNDIkBgHAAAAAABoIhwOx2qr1Zp+pPTLtKcWPRzM0H9xOp2rL3bBj5shviTppV69el1TXV2dLmmEyWQa9kuD22w2/7Gv77ckORyOSz7vdruVmZmp4cOH66GHHqpTvPLycj322GNq3769du/erenTp2v//v1KTU1VamqqzGazJGnUqFG6+eab/RtgnuvcpHigx+fKzs7W8ePHdfToUS1evFh2u12TJk1ScnKypk2bppkzZ+rqq6+WJOXl5Wnbtm06evSounfvrvvuu08nT57Uxo0bVVRUJKvVquTkZPXv399//3bt2unZZ5/VCy+8oJycHFksFhUVFSk+Pl7Z2dk6ceKEcnJyNHv2bFVUVCgjI6PW+D755BN17dq1Tu8d0FSQGAcAAAAAAGg6vIWFhekJCQkPmUymcZJulXRtPcX6XtJ+wzDWO53ONZLq3Md57969/5C0WtJqm812lWEYab9kIL4E+M95PjIyUrm5uXrkkUd08uRJ/f73v79kvLfffls2m02ZmZlauXKlJkyYoKqqKpnNZi1ZssRfae3xeOTxeNS2bVutXbtWknT33XfX+XU9/fTTio2N1apVqxQXF6e4uDhFRkZq0KBBWrhwocrKyrRkyRLl5eXp/fff18SJE3XrrbeqV69euummm/wJeklKTk5WZWWldu7cqW3btmn+/PmaN2+eEhMTtXDhQjkcDg0YMEBbtmxReXm5PvroI02ePFktWrTQsmXLFBUVpUWLFmnGjBn+9irV1dWKjIzUO++8owEDBkiq3UJFkmpqaur8eoHGhMQ4AAAAAABA0+J1Op2vSHrlUhcmJSW1rq6uPinpZGFh4dX1P7TzORyOk5L+syFi+7Rp00YvvfSSDh06VKfrR44cqcjISEnS1KlTNXXqVP9zNTU1qqmpkWEY/q+wsDCZzWalpaUpKytL4eEXT7nZ7XZFRERo7ty55z1XVFSkzp07684779Qdd9whs9ms/v37q6ioSC1atAhYne4THR2tYcOGadiwYaqsrJTFYlFERIQGDx6sp556ShaLRZIUGxurrl27Kj4+XgkJCTKZzraG7927tzZt2qSYmBiNHz9e33zzje677z55PB4NGjTIH2PTpk3+mLRSQVNFYhwAAABAo2UYRp2rE5srky9bAQD4Ra699lpde23diut9SfFAwsLCFBYWuH26b4POS7nYddOnT5ckderUqdb5bt261enePtHR0f7j5OTkgNdYrdbzzvl6sW/cuNF/zjAMf/L83P7iknT11Vdr8+bNlzU2oDEgMQ4AAAAAv8CxY8cUExPjT6JUVFTI4/EoNjb2su9VVVXlr+YDgCthz549FZKa9AdsfEAIoD6YL30JAAAAgOYgISGh06Wvanz27dun48ePn3fe6/XK5XKppKREH3/8sf77v/9bX331VdDHl5WVVat6Li8vT+vXrw947bFjx1RaWipJ/l6thw4d0vfff6/Tp09r4MCBcrvd9T9oAACAEEfFOAAAANCMWa3WGwzDGCEpw2Qy9VITrBrcu3evcnNztWLFCplMJqWkpCgiIkLh4eGyWCxq1aqVYmJiFBsbq9atW6t9+/bq06ePWrVqdcl7u1wu7dixw7/cvHfv3hddqv7dd9/p7bff9j/+7LPPdPLkSQ0ZMkTS2Q3JXn/9dVkslvOWmm/ZskU7d+5Ufn6+Vq5cKens0vQ5c+ZoypQp8ng86tix40WX7wMAgIC+l3TtqarTammJCkpA15lT58ZGE0RiHAAAAGhmEhISupvN5pE/JsRva+or0CdOnKjRo0fr1Vdf1ejRo1VdXa3t27df8HpfxXV+fv4lk8w2m+28cxfqGxvIihUr9Oijj8rhcKi0tFRffPGFPB6Pli1bphtvvFGSlJubq08//VSSlJGRoR07dujo0aOSpAMHDqhLly6y2WzKycnRbbfdVufYAFAXjWHzTSAIDkhKLi75Wgk33hqUgMUlX/sO9wclIK44EuMAAABA02ey2WwJvspwSTc3pz0rIyMjlZWVVacK8F8qJiZGq1evvuDzd911l/94+/btCg8PV+/evTV27FjZbDbt3btXixYtkt1uV25urgoLC7V161atXbtWkjRy5EhJ0pQpU3T69GllZWVJkv72t7/prbfeUmRkpNLS0nTq1ClVV1fr8ccfr78XCwBAM2EymdYbhpE8f+MKzbh/km7q0EWtWrSsl1iuM6dUXPK1FvzpJUmSYRiB+6eh0SMxDgAAADRNZqvV2sswjJFmsznDMIwuDT2g+pSQkCDpbOuRqqqqWglqH1+bk6uvrl0QabPZdN1119W6zuFwBIxTXl6uBx98sE5j2rp1qw4ePKi0tDR16dJFqampuuuuu9S9e3d9/vnnmjhxolwul5YuXerfiHPz5s06cuSI5syZo2+++UZDhw7V2LFj9cYbb+jEiRN655131KZNG61atUoul0u/+93v6jQWALiQ5rD5JnApDodjtdVqTf+y9HDaw4tmBjP0X5xO54U/UUejRmIcAAAAaGJsNttSwzAyJMWZTCZdbnW41Wp9SdL/MwzjEafT+VJjPvfKK68oLy9Pbrdbu3btksvlUkxMjHJzcxUTE6OoqLN9RJ1Op7Kzs9WmTRtVV1fXer1ms7lWX/CePXue956MHTtWkhQdHa2ampoLvncej0djx47VkCFDtGDBAp05c0ZjxozRjBkz1LFjR0nSkSNHVFRUJK/XK4/Ho48//li/+c1vZDKZtHLlSn388cey2+0aN26cbrzxRk2aNEk9evRQYmKiDh06pDZt2ujQoUPq27dvk/13+7nnLvjGAwBwcd7CwsL0hISEh0wm0zhJt0q6tp5ifS9pv2EY651O5xpJzWeZXoghMQ4AAAA0MV6v1zCbzUZzapdyIRMmTNCECRPUp08fSVJpaamuueYaFRQUaP369Zo9e7a6d++uefPmadq0afq5/dQ3bNig9PR05efn+8+lp6dry5YtF/2+OXPmaMSIEerYsaN2796tDRs2qLS0VBMnTtSwYcNUXFysF198UTk5ObrnnntktVo1ZcoU5eTkKCsrSykpKUpMTFR0dLReffVV7dy5Uz179tS+ffs0derUn/VaAAAIUV6n0/mKpFcudSG99yGxlCaorFarIUlvOl4Oatw0W6YkqbCwkH9vQP+ci46XgzsXbZmNfy6GRIblEkxNfYe6y+CfC0H+uWTj5xKaAd/8ednxZlDjZtrSJPnnj9lms/U0DGOkyWQaUddWKk1t7vl+NvXp00e7du3Shg0bdOTIEc2aNUtFRUWaNWuWTCaTEhMTNWPGDElnN9/0XR8ZGamePXuqoKDAf89zH9tsNu3YsUPR0dFKT0+v1Yblf//3f/Xee+9p4MCB6ty5s8LDw3XmzBl9/fXXKigoUH5+vv793/9d99xzj0pLS5WSkqK2bdvKZrNpwYIF6tu3r/r166eoqCiVlpaqoqJCs2bNktfrVUlJiTp16uSPtXr1arndbt1///16+OGH9dZbbykvL09SaP5sevkvgVvd1JfMe85uwtrU5gdQFyQAASAwKsYBAE3KsWPHFBMTo8jISElSRUWFPB6Pv3fr5aiqqpLFYrnSQwSAYPE6HI49kvZIejIxMfF2r9c7QtIISTc37NDqh9vt1uuvv65nnnnG/9hsNstisejzzz9XSUmJOnTocN73eb3eWj3JvV7vBWOsW7fOf5yenq6IiAjde++96tGjh4YOHarly5fr9ttvlyS1bt1aDzzwgDp37qz09HR169ZN4eHhqq6uVt++ffXuu+/queee0+DBg2W32xUXF6e1a9dqzJgx2rx5szp16qSDBw/KbrerdevWMpvN6tevnxYuXKjnn3/+Sr1tAAAACIDEOACgln379qlTp05q06ZNrfNer1enT59WeXm5/vGPf6i0tFS33HKLrr/++qCOLysrSxkZGRo6dKgkKS8vTzU1NXr00UfPu/bYsWPyeDyKi4vTgAED9OGHH+rQoUO66qqrFBUVpUGDBumvf/2rP8kOAE2YsW/fPqckp6TZCQkJ3c1m8wjDMEZI6tHAY/vF3G63JKmgoMCffH7yySd1+PBhPfHEE+rZs6c2bdqk8ePHa+7cuf6NOn0efPBBTZs2zf946dKlF4x17sabFRUVkqTx48dr8uTJio6OVn5+vtasWSNJSkpKUlJSktxutw4ePKj9+/erZcuWKisrU0pKioYMGaKysjIVFxf77+lyuRQfHy+73a7hw4dr3bp1stvtMpvN8nq9crlctV4zAPxSbL4JAIGRGMcFJSQkdHI6nUcaehwAgmvv3r3Kzc3VihUrZDKZlJKSooiICIWHh8tisahVq1aKiYlRbGysWrdurfbt26tPnz5q1arVJe/tcrn8y9UlqXfv3urWrdsFr//uu+9qbZb22Wef6eTJkxoyZIgkqbKyUq+//rosFos++OCDWt+7ZcsW7dy5U/n5+Vq5cqUkyTAMzZkzR1OmTJHH41HHjh1JigNolpxO5wFJByRl22y2roZhjDAMY4TJZOrV0GO7XOXl5XrsscfUvn177d69W9OnT9f+/fuVmpqq1NRUmc1mSdKoUaN08803+zfAPNe5SfFAj8+VnZ2t48eP6+jRo1q8eLHsdrsmTZqk5ORkTZs2TTNnzvS3W8nLy9O2bdt09OhRde/eXffdd59OnjypjRs3qqioSFarVcnJyerfv7///u3atdOzzz6rF154QTk5ObJYLCoqKlJ8fLyys7N14sQJ5eTkaPbs2aqoqFBGRsaVeBsBAMA5aDEEicQ4fsJqtd7wY2VRxo9/OPGpMhBiJk6cqNGjR+vVV1/V6NGjVV1dre3bt1/wel9FW35+/iWTzDab7bxzYWFhdR7bihUr9Oijj8rhcKi0tFRffPGFPB6Pli1bphtvvFGSlJubq08//VSSlJGRoR07dujo0aOSpAMHDqhLly6y2WzKycnRbbfdVufYANBUORyOQ5L+IOkPCQkJnS51fWPz9ttvy2azKTMzUytXrtSECRNUVVUls9msJUuW+CutPR6PPB6P2rZtq7Vr10qS7r777jrHefrppxUbG6tVq1YpLi5OcXFxioyM1KBBg7Rw4UKVlZVpyZIlysvL0/vvv6+JEyfq1ltvVa9evXTTTTf5E/SSlJycrMrKSu3cuVPbtm3T/PnzNW/ePCUmJmrhwoVyOBwaMGCAtmzZovLycn300UeaPHmyWrRooWXLlikqKkqLFi3SjBkzat0XAAAAVw6JcejHpbYjf0yI3xZCe/sACCAyMlJZWVl1qgD/pWJiYrR69eoLPn9uP9jt27crPDxcvXv31tixY2Wz2bR3714tWrRIdrtdubm5Kiws1NatW/0JkZEjR0qSpkyZotOnTysrK0uS9Le//U1vvfWWIiMjlZaWplOnTqm6ulqPP/64rFbrS5L+n2EYjzidzpckNetz0tnNMJ966v9q5MgBkqS5czfoz3/+a72e+3E8RmN4DzjHuZ9zTk1UU1wNOHLkSP8Hr1OnTtXUqVP9z9XU1KimpkaGYfi/wsLCZDablZaWpqysLIWHX/xPHrvdroiICM2dO/e854qKitS5c2fdeeeduuOOO2Q2m9W/f38VFRWpRYsWAavTfaKjozVs2DANGzZMlZWVslgsioiI0ODBg/XUU0/597iIjY1V165dFR8fr4SEBPl+F+/du7c2bdqkmJiYy37PAOBcVMYC56PFECQS46HKZLPZEnyV4ZJuNgyjoccEoBHx9WY1DENVVVW1EtQ+vjYnvuXkPjabTdddd12t6xwOR8A45eXltXq5XszWrVt18OBBpaWlqUuXLkpNTdVdd92l7t276/PPP9fEiRPlcrm0dOlS/0acmzdv1pEjRzRnzhx98803Gjp0qMaOHas33nhDJ06c0DvvvKM2bdpo1apVcrlc+t3vfqfnnnuuTuMBAATHxVYjhYWFXXDlkW+Dzku52HXTp0+XJHXqVLvQ/mJtwALxtRCTzlaTB2K1Ws879+tf//qy4gAAAKDu+GQkiKxWqyFJbzpeDmrcNFum77CPYRgjzWZzhmEYXeryvYWFhfwfQbPjm4uOl4M7F22ZZ+diY55Xubm5Rl5entxut3bt2qXKykplZGRo7dq1iomJUVRUlCTJ6XQqOztbf/7zn1VdXa0+ffpo165dioyMVM+ePVVQUOC/57mPbTabduzYoUceeUTS2c0xL/ZHv+/5IUOGaPTo0Tpz5ozGjBmjFStW+Kv0jhw5oj/+8Y8qKSlRRUWFMjMzddddd8lkMmnlypX6+OOPZbfbNW7cOP3Hf/yH1qxZox49eqi4uFgPPfSQevfurZkzZ6pv37669957ZQqhZTP+uRDkn0s2W+OfC8Cl+ObPy443gxo305YmifmD5ss/t/4S+EP1+pJ5z9l2b8wtAABCBw3rmjGv19DnhcXnntplMpker2tS3Mdqtb5ktVqNhISESZzjXHM4p5+Yu2GDbJmZev3DD+v13E81tvfFarUaEyZM0IfnjLu0tFTXXHONCgoKNG7cODmdTv3www+aN2+epk2bpp+bQ96wYYMqKyuVn5+vDRs2+B/7jn1fvucfeOABRUZGavHixRoxYoQ6duyo3bt369/+7d/0+9//XgMHDtSf/vQnPf/88/rggw+UmpqqJUuW6JZbbtGqVav06quvKisrSykpKXrxxRf1+OOPa9CgQdq5c6dqamq0b9++gP3PAQAAAADNT1JSUmur1WpYrdYTDT0WNBxaqTRzIVT4CKAe7Nu3T7/97W81fPhw3XLLLZo1a5ZMJpMSExM1cODAX3z/c9uoVFRUqLq6WgMHDlTnzp0VHh6uM2fO6Ouvv1ZBQYHy8/P13nvv6Z577tGUKVOUkpKi0aNHy2azacGCBYqIiFC/fv20dOlSlZaWqqKiQrNmzfJXk+/atUvLly+XJK1evVopKSm6//771aFDB7Vr105xcXG/+PUAAAAAAICmgaxpEDV0KxWTydTbMIyRJpNpBK1UEMpopXJhxo8bDvTp00cffvihRo0apWeeeUY9evTQZ599puzsbFksFhmGoblz56pDhw5yu921WqlcrMe4r5VKdHS00tPTtWXLFv91vscLFixQjx49NHToUC1fvlwnTpzQ008/rT179qiwsFCdO3dWx44d1a1bN4WHh6u6ulrbt2/Xu+++q4KCAg0ePFh2u13S2WT7mDFj9OKLL6pTp046ePCg7Ha7/uu//ktms1l2u11vvvmmnn/+eX/PV1qp1D9aqaA5oJUKUD9opQJceWy+CQCBUTEeQhwOxx5JeyQ9mZiYeLvX6x0haYSkmxt2ZAAaE7fbLUkqKCjwJ5+ffPJJHT58WE888YR69uypTZs2afz48Zo7d65/o06fBx98UNOmTfM/Xrp06QVj/bRiXJLGjx+vyZMnKzo6Wvn5+VqzZo0kKSkpSUlJSXK73Tp48KD279+vli1bqqysTCkpKRoyZIjKyspUXPzPFlIul0vx8fGy2+0aPny41q1bJ7vdLrPZLK/XK5fLVes1AwAAAACA0EBiPDQZ+/btc0pySpqdkJDQ3Ww2jzAMY4SkHg08NgANqLy8XI899pjat2+v3bt3a/r06dq/f79SU1OVmpoqs/ns1hSjRo3SzTff7N8A81znJsUDPT5Xdna2jh8/rqNHj2rx4sWy2+2aNGmSkpOTNW3aNM2cOVNXX322qCUvL0/btm3T0aNH1b17d9133306efKkNm7cqKKiIlmtViUnJ6t///7++7dr107PPvusXnjhBeXk5MhisaioqEjx8fHKzs7WiRMnlJOTo9mzZ6uiokIZGRlX4m0EAAAAGo09e/ZUiI4BAHAeEuOQ0+k8IOmApGybzdbVMIwRhmGMMJlMvRp6bACC6+2335bNZlNmZqZWrlypCRMmqKqqSmazWUuWLPFXWns8Hnk8HrVt21Zr166VJN199911jvP0008rNjZWq1atUlxcnOLi4hQZGalBgwZp4cKFKisr05IlS5SXl6f3339fEydO1K233qpevXrppptu8ifoJSk5OVmVlZXauXOntm3bpvnz52vevHlKTEzUwoUL5XA4NGDAAG3ZskXl5eX66KOPNHnyZLVo0ULLli1TVFSUFi2ZxSQ6AAAK4UlEQVRapBkzZtS6LwAAAACgeaLFECQS4/gJh8NxSNIfJP0hISGhU0OPB0BwjRw5UpGRkZKkqVOnaurUqf7nampqVFNTI8Mw/F9hYWEym81KS0tTVlaWwsMv/mPFbrcrIiJCc+fOPe+5oqIide7cWXfeeafuuOMOmc1m9e/fX0VFRWrRokXA6nSf6OhoDRs2TMOGDVNlZaUsFosiIiI0ePBgPfXUU7JYLJKk2NhYde3aVfHx8UpISPBvUNy7d29t2rRJMTExl/2eAQAAAACApofEOC7I6XQeaegxAAguX1I8kLCwMIWFhQV87plnnqnT/S923fTp0yVJnTrV/kyuW7dudbq3T3R0tP/Yt6HmT1mt1vPO/frXv76sOAAAAEBTQGUscD5aDEEiMQ4AOIfJV0INAAAAAADQjJEYBwAAAAAAaKaojAWAwEiMAwAAAAAAAAgZtBiCJJkbegAAAAAAAAAAAAQTFeMAAAAAAADNFJWxwPloMQSJinEAAAAAAAAAQIihYhwAAAAAAKCZojIWAAIjMQ4AAAAAAAAgZNBiCBKtVAAAAAAAAAAAIYaKcQAAAAAAgGaKyljgfLQYgkTFOAAAAAAAAAAgxFAxDgAAAAAA0ExRGQsAgZEYBwAAAAAAABAyaDEEiVYqAAAAAAAAAIAQQ8U4AAAAAABAM0VlLHA+WgxBomIcAAAAAAAAABBiqBgHAAAAAABopqiMBYDASIwDAAAAAAAACBm0GIJEKxUAAAAAAAAAQIihYhwAAAC4fKcktaz+wa2IX0UGJWD1D27foSsoAYGGcXZuuX9QROSvghKw2v2D75C5hWaJyljgfLQYgkTFOAAAAPBzHJCk438/GrSAvliGYRwIWlAg+M7OraN/D1pAXyzmFgAAoYXEOAAAAHCZDMN4R5LeeDFPZ1yn6j3e6cpTeuPFPN/Dd+s9INBA/HNr/Ys6c7r+C7hPn6rUG+tf9D1kbqFZ2rNnT0VhYaGJanEAqI1WKgAAAMBlslgs835wu+//5MM9N0wfMk7X/OY6tWjVsl5inXGd0vffHJPHXS2ZTF9afvWrefUSCGgE/HNrz4c3TB83RNdc9xu1iGpVL7HOnHbp+2PfyFPtZm4BQIihxRAkEuMAAISy7yVde+pUlVq2tAQloMt15tzYQJO1a9euM3369EmqqqpaUP2De+y3h/9e35OoyjCMDZ7q6icLHY4zl74caJpqzS33D2O//fth5hYAAKgXJMYBAAhdByQlFxeXKCHhxqAELC4u8R3uD0pAoB7t2rWrTNLD//Iv/zLpq6++6mwYRpv6iGMymY5ff/31h1977bWa+rg/0Nj83LllGEZLk8m0TWc30bzjUtcztxAqqIwFzsfmm5BIjAMAELJMJtN6wzCS58/fqBkz7tdNN3VQq1Yt6iWWy3VGxcUlWrDgT5IkwzDW10sgoAH8mFQ79ONXvXA4HPV1a6DRuty59WPyT5JqCgsLd9fle5hbAACELhLjAELRSUlXna6qUpQlOO0jTldVnRsbaBQcDsdqq9Wa/uWXpWkPP7womKH/4nQ6VwczIACg+aP6DwiMuQEAgZkbegAA0AAOSNLhb78NWsBzYtE+Ao2Jt7CwMN0wjImSPlT99v3+XtKHhmFMLCwsHC7JqMdYQKOXlJTU2mq1Glar9URDjwUAACDU8LsYJCrGAYQgk8m02TCMPotfe03PPPSQ2l1zjUym+imgMAxD3/zjH1r82mu+2G/USyDg5/M6nc5XJL1yoQusVutDklZLWl1YWDghaCMDAAAAAKCesJQmiKxWqyFJbzpeDmrcNFumJKmwsJB/b0CSzWaL8Hq9/2MymXpJUpTFolYt6qmv8pkz/jYqhmHsveqqq/7Pjh07PPUSDAAAIISxwSAQGHMDAAKjYhxAyHE4HNU33HBDcuvWrWdKGne6qur601VV9fXBkSHpK0nrKysr5zudTpLiAAAAAAAADYzEOICQ9OWXX/4g6RlJz9hstqjq6urY+ogTERFR5nA4TtfHvQEAAPBPbDAIBMbcAIDASIwDCHk/Jq4vmry2Wq3vSLrTZDLd6XA43gvOyIDGgR7jwJXHsnYAAICGw+9ikCRzQw8AAAAAAAAAAIBgYilNELH5JgAAAADUD6r/gMCYGwAQGBXjAAAAAAAAAICQQo9xAAAAAECTxwaDQGDMDQAIjMQ4ANQBm28ilLH5JnDlsawdAACg4fC7GCRaqQAAAAAAAAAAQgxLaYKIzTcBAAAAoH5Q/QcExtwAgMCoGAcAAAAAAAAAhBR6jAMAAAAAmjw2GAQCY24AQGAkxgGgDth8E6GMzTeBK49l7QAAAA2H38Ug0UoFAAAAAAAAABBiWEoTRGy+CQAAAAD1g+o/IDDmBgAERsU4AAAAAAAAACCk0GMcAAAAANDkscEgEBhzAwACIzEOAHXA5psIZWy+CVx5LGsHAABoOPwuBolWKgAAAAAAAACAEMNSmiBi800AAAAAqB9U/wGBMTcAIDAqxgEAAAAAAAAAIYUe4wAAAACAJo8NBoHAmBsAEBiJcQCoAzbfRChj803gymNZOwAAQMPhdzFItFIBAAAAAAAAAIQYltIEEZtvAgAAAED9oPoPCIy5AQCBUTEOAAAAAAAAAAgp9BgHAAAAADR5bDAIBMbcAIDASIwDQB2w+SYA4EpiWTsAAADQsGilAgAAAAAAAAAIKVSMA0AdFBYWDm3oMQAAmg+WtQMAAAANi4rx4DIkyev1Bi3gObGMoAUFAAAAAAAAgEaMxHgQmUymw5JUceJU0GKeLHf5Dr8OWlAAAAAAAAAAaMRIjAeRYRifSFLBzk+DFnPf/3zmOwxeUAAAAAAAAABoxOgxHlzPSbp3+bz/NH1VXGLqcmN7RbVqUS+BTrvO6Osv/q53/vxXQ5JhMpmy6yUQAAAAAAAAADQxbPgTZAkJCRNMJtMSSa2CFNJlGMajTqdzdZDiAQAAAAAAAECjRmK8AfTo0SMuPDz8Xq/X+1uTyXRdfcQwDOM7s9n8mcfj2frJJ5+U1kcMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgR/x+U6or6xrYl2QAAAABJRU5ErkJggg==","width":1478,"y":-30,"x":-34},"elements":{"page":{"lineJumps":false,"gridSize":15,"showGrid":true,"orientation":"portrait","height":2260,"backgroundColor":"transparent","width":1404,"padding":20},"elements":{"1712bb52a94fc8":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb52a94fc8","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"激活","category":"uml_sequence","name":"sequenceActivation","path":[{"actions":[{"action":"move","y":"4","x":"0"},{"y1":"0","action":"quadraticCurve","y":"0","x":"4","x1":"0"},{"action":"line","y":"0","x":"w-4"},{"y1":"0","action":"quadraticCurve","y":"4","x":"w","x1":"w"},{"action":"line","y":"h-4","x":"w"},{"y1":"h","action":"quadraticCurve","y":"h","x":"w-4","x1":"w"},{"action":"line","y":"h","x":"4"},{"y1":"h","action":"quadraticCurve","y":"h-4","x":"0","x1":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"255,255,204","type":"solid"},"locked":false,"group":"","props":{"w":30,"angle":0,"h":104.44444444444446,"y":854.000006781684,"zindex":37,"x":1132.3125808693871}},"1712fd3f07489f":{"to":{"id":"1712bd84450cc2","angle":3.1415926535897927,"y":1707,"x":709},"id":"1712fd3f07489f","linkerType":"broken","text":"返回最终数","lineStyle":{"lineStyle":"dot"},"name":"linker","from":{"id":"1712bd8a8207c6","y":1707,"angle":0,"x":895},"dataAttributes":[],"locked":false,"points":[{"y":1707,"x":802},{"y":1707,"x":802}],"group":"","props":{"zindex":75}},"1712bb6e9620d8":{"id":"1712bb6e9620d8","to":{"y":940.6666734483507,"x":616.2222120496962},"text":"return MapperProxy","linkerType":"broken","name":"linker","lineStyle":{"lineStyle":"dot"},"points":[{"y":940.6666734483507,"x":728.9999898274739},{"y":940.6666734483507,"x":728.9999898274739}],"locked":false,"dataAttributes":[],"from":{"id":"1712bb4a0991a1","angle":0,"y":940.6666734483507,"x":841.7777676052517},"group":"","props":{"zindex":41}},"1712bd83a8a4af":{"id":"1712bd83a8a4af","to":{"id":"1712bd84450cc2","y":1488.6666531032986,"angle":0,"x":679.5555453830295},"text":"4、对应的CRUD方法","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":1495.3333197699653,"x":590.1111009385851},{"y":1488.6666531032986,"x":590.1111009385851}],"locked":false,"dataAttributes":[],"from":{"id":"1712bd74a300fb","angle":3.141592653589793,"y":1495.3333197699653,"x":500.6666564941406},"group":"","props":{"zindex":59}},"1712bb040c8741":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb040c8741","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"230,255,204","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":148.00000054495672,"h":516.4857254028323,"angle":0,"x":38.079352000403006,"zindex":0}},"1712bd74a300fb":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bd74a300fb","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"255,255,204","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":1370.8688538722988,"h":380,"angle":0,"x":471.73896803006494,"zindex":56}},"1712bb4a0991a1":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb4a0991a1","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"255,204,230","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":835.1111178927952,"h":142.22222222222217,"angle":0,"x":841.2347493013517,"zindex":35}},"1712b9b93c817d":{"id":"1712b9b93c817d","to":{"id":"1712b9bb236492","y":272.7428594316756,"angle":0,"x":371.7428479875836},"text":"1、build配置文件","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":267.5712636268855,"x":221.18547093840345},{"y":272.7428594316756,"x":221.18547093840345}],"locked":false,"dataAttributes":[],"from":{"y":267.5712636268855,"x":70.62809388922302},"group":"","props":{"zindex":3}},"1712bd7d5d519c":{"textBlock":[{"position":{"w":"w","y":0,"h":"h","x":0},"text":"3、查找crud方法"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712bd7d5d525a","category":"default","name":"序号","value":"","type":"number"},{"id":"1712bd7d5d5eda","category":"default","name":"名称","value":"","type":"string"},{"id":"1712bd7d5d504a","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712bd7d5d59f6","category":"default","name":"连接","value":"","type":"link"},{"id":"1712bd7d5d5bd8","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712bd7d5d519c","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"basic","title":"文本","name":"text","fillStyle":{},"path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":160,"y":1370.5185049551503,"h":40,"angle":0,"x":508.776005067102,"zindex":58}},"1712bb1967487":{"textBlock":[{"position":{"w":"w-20","h":"30","y":"0","x":"10"},"text":"Configuration"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb1967487","anchors":[],"title":"生命线","category":"uml_sequence","name":"sequenceLifeLine","path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"204,204,255","type":"solid"},"locked":false,"group":"","props":{"w":136.44934251872365,"angle":0,"h":486.6666666666665,"y":741.7777845594619,"zindex":27,"x":526.3885422429039}},"1712fd2e72b75":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712fd2e72b75","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"255,204,230","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":1606,"h":100,"angle":0,"x":1294.1111009385845,"zindex":72}},"1712bbf15b84fd":{"textBlock":[{"position":{"w":"w-20","y":"0","h":"30","x":"10"},"text":"DefaultSqlSession"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bbf15b84fd","anchors":[],"category":"uml_sequence","title":"生命线","name":"sequenceLifeLine","fillStyle":{"color":"204,255,230","type":"solid"},"path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":133.88888888888914,"y":1305.6673669024533,"h":478.34938862939134,"angle":0,"x":628.9999898274737,"zindex":49}},"1712fd1ba34154":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712fd1ba34154","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"激活","category":"uml_sequence","name":"sequenceActivation","path":[{"actions":[{"action":"move","y":"4","x":"0"},{"y1":"0","action":"quadraticCurve","y":"0","x":"4","x1":"0"},{"action":"line","y":"0","x":"w-4"},{"y1":"0","action":"quadraticCurve","y":"4","x":"w","x1":"w"},{"action":"line","y":"h-4","x":"w"},{"y1":"h","action":"quadraticCurve","y":"h","x":"w-4","x1":"w"},{"action":"line","y":"h","x":"4"},{"y1":"h","action":"quadraticCurve","y":"h-4","x":"0","x1":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"229,204,255","type":"solid"},"locked":false,"group":"","props":{"w":30,"angle":0,"h":101,"y":1596.0003387017562,"zindex":68,"x":1096.1832166369377}},"1712bbec199fd2":{"textBlock":[{"position":{"w":"w-20","y":"0","h":"30","x":"10"},"text":"MapperProxy"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bbec199fd2","anchors":[],"category":"uml_sequence","title":"生命线","name":"sequenceLifeLine","fillStyle":{"color":"255,204,204","type":"solid"},"path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":110.5555555555556,"y":1305.9142804827002,"h":478.39367482018906,"angle":0,"x":234.55554538302948,"zindex":47}},"1712fd16cf7efd":{"textBlock":[{"position":{"w":"w","h":"h","y":0,"x":0},"text":"7、doQuery()"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712fd16ddeade","category":"default","name":"序号","value":"","type":"number"},{"id":"1712fd16dde2f5","category":"default","name":"名称","value":"","type":"string"},{"id":"1712fd16dde83c","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712fd16dde55c","category":"default","name":"连接","value":"","type":"link"},{"id":"1712fd16dde93e","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712fd16cf7efd","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"文本","category":"basic","name":"text","path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"fillStyle":{},"locked":false,"group":"","props":{"w":111.81678336306231,"angle":0,"h":26.355896267496746,"y":1534.6441037325033,"zindex":66,"x":948.1832166369377}},"1712fd2944d2e9":{"id":"1712fd2944d2e9","to":{"id":"1712fd1ba34154","y":1629.33,"angle":3.141592653589793,"x":1126},"text":"","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":1605.09,"x":1156},{"y":1629.33,"x":1156}],"locked":false,"dataAttributes":[],"from":{"id":"1712fd1ba34154","angle":3.141592653589793,"y":1605.09,"x":1126},"group":"","props":{"zindex":69}},"1712bbf14e5c91":{"textBlock":[{"position":{"w":"w-20","h":"30","y":"0","x":"10"},"text":"MapperMethod"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bbf14e5c91","anchors":[],"title":"生命线","category":"uml_sequence","name":"sequenceLifeLine","path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"255,255,204","type":"solid"},"locked":false,"group":"","props":{"w":119.23633043938435,"angle":0,"h":473.9492303757456,"y":1305.6473454492314,"zindex":48,"x":422.5414371658675}},"1712fd3599e6cf":{"to":{"id":"1712fd1ba34154","angle":3.490658503988659,"y":1692.2427982762053,"x":1125.3015368960705},"id":"1712fd3599e6cf","linkerType":"broken","text":"11、返回最终数据","lineStyle":{"lineStyle":"dot"},"name":"linker","from":{"id":"1712fd2e72b75","y":1692,"angle":0,"x":1295},"dataAttributes":[],"locked":false,"points":[{"y":1692,"x":1210.1507684480353},{"y":1692.2427982762053,"x":1210.1507684480353}],"group":"","props":{"zindex":73}},"1712bb52230dc3":{"to":{"id":"1712bb52a94fc8","angle":0,"y":906.2222290039062,"x":1132.3125808693871},"id":"1712bb52230dc3","linkerType":"broken","text":"4、构造方法","lineStyle":{},"name":"linker","from":{"id":"1712bb4a0991a1","y":906.2222290039062,"angle":3.141592653589793,"x":871.2347493013517},"dataAttributes":[],"locked":false,"points":[{"y":906.2222290039062,"x":1001.7736650853694},{"y":906.2222290039062,"x":1001.7736650853694}],"group":"","props":{"zindex":36}},"1712bd8a8207c6":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bd8a8207c6","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"激活","category":"uml_sequence","name":"sequenceActivation","path":[{"actions":[{"action":"move","y":"4","x":"0"},{"y1":"0","action":"quadraticCurve","y":"0","x":"4","x1":"0"},{"action":"line","y":"0","x":"w-4"},{"y1":"0","action":"quadraticCurve","y":"4","x":"w","x1":"w"},{"action":"line","y":"h-4","x":"w"},{"y1":"h","action":"quadraticCurve","y":"h","x":"w-4","x1":"w"},{"action":"line","y":"h","x":"4"},{"y1":"h","action":"quadraticCurve","y":"h-4","x":"0","x1":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"204,229,255","type":"solid"},"locked":false,"group":"","props":{"w":30,"angle":0,"h":282.2222222222222,"y":1465.3333197699653,"zindex":62,"x":894.1832166369377}},"1712bb672276f7":{"id":"1712bb672276f7","to":{"id":"1712bb4a0991a1","y":939.5555623372395,"angle":3.1415926535897936,"x":870.6666564941406},"text":"return MapperProxy","linkerType":"broken","name":"linker","lineStyle":{"lineStyle":"dot"},"points":[{"y":939.5555623372395,"x":1001.7777676052517},{"y":939.5555623372395,"x":1001.7777676052517}],"locked":false,"dataAttributes":[],"from":{"id":"1712bb52a94fc8","angle":0,"y":939.5555623372395,"x":1132.8888787163628},"group":"","props":{"zindex":40}},"1712bcaa3bc591":{"textBlock":[{"position":{"w":"w-20","h":"30","y":"0","x":"10"},"text":"ResultSetHandler"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bcaa3bc591","anchors":[],"title":"生命线","category":"uml_sequence","name":"sequenceLifeLine","path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"255,204,230","type":"solid"},"locked":false,"group":"","props":{"w":133.88888888888914,"angle":0,"h":478.34938862939134,"y":1301.2471871955856,"zindex":52,"x":1240.1396932224998}},"1712bd7c5d5523":{"to":{"id":"1712bd74a300fb","angle":3.141592653589794,"y":1459.7777642144097,"x":500.6666564941406},"id":"1712bd7c5d5523","linkerType":"broken","text":"","lineStyle":{},"name":"linker","from":{"id":"1712bd74a300fb","y":1399.7777642144097,"angle":3.141592653589793,"x":500.6666564941406},"dataAttributes":[],"locked":false,"points":[{"y":1399.7777642144097,"x":530.6666564941406},{"y":1459.7777642144097,"x":530.6666564941406}],"group":"","props":{"zindex":57}},"1712bb24ba0387":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb24ba0387","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"204,255,230","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":800.6666734483507,"h":205.55555555555554,"angle":0,"x":277.59153536006585,"zindex":31}},"1712bceb4002b5":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bceb4002b5","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"255,204,204","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":1353.111097547743,"h":401.1111789279514,"angle":0,"x":276.50911449331693,"zindex":54}},"1712ba8916b9ef":{"id":"1712ba8916b9ef","to":{"y":427.34285409109935,"x":735.7428479875836},"text":"4、openSession","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":424.48202093593585,"x":402.8494053646328},{"y":427.34285409109935,"x":402.8494053646328}],"locked":false,"dataAttributes":[],"from":{"y":424.48202093593585,"x":69.95596274168206},"group":"","props":{"zindex":13}},"1712fd2a665495":{"textBlock":[{"position":{"w":"w","y":0,"h":"h","x":0},"text":"9、execute()"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712fd2a74923c","category":"default","name":"序号","value":"","type":"number"},{"id":"1712fd2a7497be","category":"default","name":"名称","value":"","type":"string"},{"id":"1712fd2a749ebc","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712fd2a7493f8","category":"default","name":"连接","value":"","type":"link"},{"id":"1712fd2a7497fc","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712fd2a665495","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"basic","title":"文本","name":"text","fillStyle":{},"path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":111.81678336306231,"y":1565.6441037325033,"h":26.355896267496746,"angle":0,"x":1140.1832166369377,"zindex":70}},"1712baa1770a98":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712baa1770a98","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"255,204,204","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":423.14287240164623,"h":100,"angle":0,"x":1082.2428479875844,"zindex":19}},"1712ba9492a62b":{"textBlock":[{"position":{"w":"w","y":0,"h":"h","x":0},"text":"5、openSessionFromDataSource"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712ba9492a0ed","category":"default","name":"序号","value":"","type":"number"},{"id":"1712ba9492a613","category":"default","name":"名称","value":"","type":"string"},{"id":"1712ba9492a8a1","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712ba9492ab6f","category":"default","name":"连接","value":"","type":"link"},{"id":"1712ba9492a6a4","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712ba9492a62b","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"basic","title":"文本","name":"text","fillStyle":{},"path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":263,"y":389.3428540910994,"h":33.800018310546875,"angle":0,"x":765.7428479875836,"zindex":16}},"1712bb776020c9":{"id":"1712bb776020c9","to":{"id":"1712bb09b306b5","y":944.000006781684,"angle":3.141592653589793,"x":73.99998982747395},"text":"return MapperProxy","linkerType":"broken","name":"linker","lineStyle":{"lineStyle":"dot"},"points":[{"y":944.000006781684,"x":176.22221204969617},{"y":944.000006781684,"x":176.22221204969617}],"locked":false,"dataAttributes":[],"from":{"id":"1712bb24ba0387","angle":0,"y":944.000006781684,"x":278.4444342719184},"group":"","props":{"zindex":43}},"1712b9bb236492":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712b9bb236492","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"204,229,255","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":218.74286324637274,"h":141.99999618530273,"angle":0,"x":371.7428479875836,"zindex":4}},"1712bb24056da8":{"to":{"id":"1712bb24ba0387","angle":0,"y":850.6666734483507,"x":278.4444342719184},"id":"1712bb24056da8","linkerType":"broken","text":"1、getMapper(class)","lineStyle":{},"name":"linker","from":{"id":"1712bb09b306b5","y":850.6666734483507,"angle":3.141592653589793,"x":73.99998982747395},"dataAttributes":[],"locked":false,"points":[{"y":850.6666734483507,"x":176.22221204969617},{"y":850.6666734483507,"x":176.22221204969617}],"group":"","props":{"zindex":30}},"1712bd7417b223":{"id":"1712bd7417b223","to":{"id":"1712bd74a300fb","y":1419.7777642144097,"angle":0,"x":471.7777676052517},"text":"2、execute()","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":1420.8888753255208,"x":388.99998982747394},{"y":1419.7777642144097,"x":388.99998982747394}],"locked":false,"dataAttributes":[],"from":{"id":"1712bceb4002b5","angle":3.141592653589793,"y":1420.8888753255208,"x":306.22221204969617},"group":"","props":{"zindex":55}},"1712fd2dc1ba8f":{"id":"1712fd2dc1ba8f","to":{"id":"1712fd2e72b75","y":1656,"angle":0,"x":1294.1111009385845},"text":"10、handleResultSets","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":1656.6,"x":1210.0555504692923},{"y":1656,"x":1210.0555504692923}],"locked":false,"dataAttributes":[],"from":{"id":"1712fd1ba34154","angle":3.141592653589793,"y":1656.6,"x":1126},"group":"","props":{"zindex":71}},"1712bb0c14e1e":{"textBlock":[{"position":{"w":"w-20","y":"0","h":"30","x":"10"},"text":"DefaultSqlSession"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb0c14e1e","anchors":[],"category":"uml_sequence","title":"生命线","name":"sequenceLifeLine","fillStyle":{"color":"204,255,230","type":"solid"},"path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":136.44934251872365,"y":744.0000067816841,"h":486.6666666666665,"angle":0,"x":224.21731397541697,"zindex":25}},"1712bb5760cdde":{"to":{"id":"1712bb52a94fc8","angle":3.141592653589793,"y":924.7901302384741,"x":1161.7777676052517},"id":"1712bb5760cdde","linkerType":"broken","text":"","lineStyle":{},"name":"linker","from":{"id":"1712bb52a94fc8","y":877.2098833248939,"angle":3.141592653589793,"x":1161.7777676052517},"dataAttributes":[],"locked":false,"points":[{"y":877.2098833248939,"x":1191.7777676052517},{"y":924.7901302384741,"x":1191.7777676052517}],"group":"","props":{"zindex":38}},"1712ba70bb4988":{"id":"1712ba70bb4988","to":{"id":"1712b9bb236492","y":336.7428594316756,"angle":3.1415926535897927,"x":401.7428479875836},"text":"返回DefaultSqlSessionFactory对象","linkerType":"broken","name":"linker","lineStyle":{"lineStyle":"dot"},"points":[{"y":339.7428594316756,"x":568.7428479875836},{"y":336.7428594316756,"x":568.7428479875836}],"locked":false,"dataAttributes":[],"from":{"id":"1712ba69e81c22","angle":0,"y":339.7428594316756,"x":735.7428479875836},"group":"","props":{"zindex":11}},"1712bcea919f92":{"id":"1712bcea919f92","to":{"id":"1712bceb4002b5","y":1403.1111653645833,"angle":0,"x":277.3333231608073},"text":"1、invoke()","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":1403.111097547743,"x":176.77776760525177},{"y":1403.1111653645833,"x":176.77776760525177}],"locked":false,"dataAttributes":[],"from":{"id":"1712bbe9c02dbb","angle":3.141592653589793,"y":1403.111097547743,"x":76.22221204969618},"group":"","props":{"zindex":53}},"1712ba8df35751":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712ba8df35751","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"229,204,255","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":391.3428540910994,"h":159,"angle":0,"x":735.7428479875836,"zindex":14}},"1712ba920e2ee1":{"id":"1712ba920e2ee1","to":{"id":"1712ba8df35751","y":451.3428540910995,"angle":3.141592653589793,"x":765.7428479875836},"text":"","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":430.3428540910994,"x":795.7428479875836},{"y":451.3428540910995,"x":795.7428479875836}],"locked":false,"dataAttributes":[],"from":{"id":"1712ba8df35751","angle":3.1415926535897927,"y":430.3428540910994,"x":765.7428479875836},"group":"","props":{"zindex":15}},"1712bb49614fc":{"id":"1712bb49614fc","to":{"id":"1712bb4a0991a1","y":889.5555623372395,"angle":0,"x":841.7777676052517},"text":"3、getMapper(class,SqlSession)","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":890.6666734483507,"x":725.111100938585},{"y":889.5555623372395,"x":725.111100938585}],"locked":false,"dataAttributes":[],"from":{"id":"1712bb2b0c83c8","angle":3.141592653589793,"y":890.6666734483507,"x":608.4444342719183},"group":"","props":{"zindex":34}},"1712fd3b6b1bd8":{"to":{"id":"1712bd8a8207c6","angle":3.1415926535897927,"y":1684,"x":924},"id":"1712fd3b6b1bd8","linkerType":"broken","text":"返回最终数","lineStyle":{"lineStyle":"dot"},"name":"linker","from":{"id":"1712fd1ba34154","y":1684,"angle":0,"x":1097},"dataAttributes":[],"locked":false,"points":[{"y":1684,"x":1010.5},{"y":1684,"x":1010.5}],"group":"","props":{"zindex":74}},"1712baad672d89":{"id":"1712baad672d89","to":{"id":"1712ba8df35751","y":507.3428540910994,"angle":3.141592653589794,"x":765.7428479875836},"text":"返回DefaultSqlSession对象","linkerType":"broken","name":"linker","lineStyle":{"lineStyle":"dot"},"points":[{"y":507.3428540910994,"x":924.2428479875836},{"y":507.3428540910994,"x":924.2428479875836}],"locked":false,"dataAttributes":[],"from":{"id":"1712baa1770a98","angle":0,"y":507.3428540910994,"x":1082.7428479875844},"group":"","props":{"zindex":20}},"1712ba64005576":{"textBlock":[{"position":{"w":"w-20","y":"0","h":"30","x":"10"},"text":"DefaultSqlSessionFactory"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712ba64005576","anchors":[],"category":"uml_sequence","title":"生命线","name":"sequenceLifeLine","fillStyle":{"color":"229,204,255","type":"solid"},"path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":186,"y":161.74286324637276,"h":452.99999618530273,"angle":0,"x":657.7428479875836,"zindex":8}},"1712bc15e1a6aa":{"textBlock":[{"position":{"w":"w-20","y":"0","h":"30","x":"10"},"text":"SimpleExecutor"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bc15e1a6aa","anchors":[],"category":"uml_sequence","title":"生命线","name":"sequenceLifeLine","fillStyle":{"color":"204,229,255","type":"solid"},"path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":133.88888888888914,"y":1303.4697481195637,"h":478.34938862939134,"angle":0,"x":843.776005067102,"zindex":50}},"1712bb1979fc59":{"textBlock":[{"position":{"w":"w-20","y":"0","h":"30","x":"10"},"text":"MapperRegistry"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb1979fc59","anchors":[],"category":"uml_sequence","title":"生命线","name":"sequenceLifeLine","fillStyle":{"color":"255,204,230","type":"solid"},"path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":136.44934251872365,"y":739.5555623372398,"h":486.6666666666665,"angle":0,"x":788.1345739889354,"zindex":28}},"1712ba69e81c22":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712ba69e81c22","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"229,204,255","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":263.7428594316756,"h":100,"angle":0,"x":735.7428479875836,"zindex":10}},"1712bbe5f339d9":{"textBlock":[{"position":{"w":"w","y":0,"h":"h","x":0},"text":"Executor执行流程"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{"color":"255,0,0","size":30},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712bbe604f216","category":"default","name":"序号","value":"","type":"number"},{"id":"1712bbe604f3d7","category":"default","name":"名称","value":"","type":"string"},{"id":"1712bbe604f336","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712bbe604ff75","category":"default","name":"连接","value":"","type":"link"},{"id":"1712bbe604f07c","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712bbe5f339d9","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"basic","title":"文本","name":"text","fillStyle":{"color":"255,102,102","type":"solid"},"path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":446,"y":1249.9142804827002,"h":56,"angle":0,"x":62.93331981840582,"zindex":44}},"1712bb7520a70a":{"id":"1712bb7520a70a","to":{"id":"1712bb24ba0387","y":944.000006781684,"angle":3.141592653589793,"x":307.3333231608073},"text":"return MapperProxy","linkerType":"broken","name":"linker","lineStyle":{"lineStyle":"dot"},"points":[{"y":944.000006781684,"x":443.999989827474},{"y":944.000006781684,"x":443.999989827474}],"locked":false,"dataAttributes":[],"from":{"id":"1712bb2b0c83c8","angle":0,"y":944.000006781684,"x":580.6666564941406},"group":"","props":{"zindex":42}},"1712bd84450cc2":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bd84450cc2","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"uml_sequence","title":"激活","name":"sequenceActivation","fillStyle":{"color":"204,255,230","type":"solid"},"path":[{"actions":[{"action":"move","y":"4","x":"0"},{"action":"quadraticCurve","y1":"0","y":"0","x1":"0","x":"4"},{"action":"line","y":"0","x":"w-4"},{"action":"quadraticCurve","y1":"0","y":"4","x1":"w","x":"w"},{"action":"line","y":"h-4","x":"w"},{"action":"quadraticCurve","y1":"h","y":"h","x1":"w","x":"w-4"},{"action":"line","y":"h","x":"4"},{"action":"quadraticCurve","y1":"h","y":"h-4","x1":"0","x":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":30,"y":1445.3333197699653,"h":302.2222222222222,"angle":0,"x":679.3703601978444,"zindex":60}},"1712fd15db4ae5":{"to":{"id":"1712bd8a8207c6","angle":3.141592653589793,"y":1606.4444308810764,"x":924.1832166369377},"id":"1712fd15db4ae5","linkerType":"broken","text":"","lineStyle":{},"name":"linker","from":{"id":"1712bd8a8207c6","y":1558,"angle":3.141592653589793,"x":924},"dataAttributes":[],"locked":false,"points":[{"y":1558,"x":954},{"y":1606.4444308810764,"x":954.1832166369377}],"group":"","props":{"zindex":65}},"1712b9cf9096b4":{"id":"1712b9cf9096b4","to":{"id":"1712b9bb236492","y":289.7428613390242,"angle":3.141592653589793,"x":401.7428479875836},"text":"","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":244.30285714285728,"x":431.7428479875836},{"y":289.7428613390242,"x":431.7428479875836}],"locked":false,"dataAttributes":[],"from":{"id":"1712b9bb236492","angle":3.141592653589793,"y":244.30285714285728,"x":401.7428479875836},"group":"","props":{"zindex":6}},"1712bb2a6a3e08":{"id":"1712bb2a6a3e08","to":{"id":"1712bb2b0c83c8","y":868.4444512261284,"angle":0,"x":580.6666564941406},"text":"2、getMapper(class)","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":868.4444512261284,"x":443.999989827474},{"y":868.4444512261284,"x":443.999989827474}],"locked":false,"dataAttributes":[],"from":{"id":"1712bb24ba0387","angle":3.141592653589793,"y":868.4444512261284,"x":307.3333231608073},"group":"","props":{"zindex":32}},"1712b9a3ccb5ab":{"textBlock":[{"position":{"w":"w-20","y":"0","h":"30","x":"10"},"text":"SqlSessionFactoryBuilder"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712b9a3ccb5ab","anchors":[],"category":"uml_sequence","title":"生命线","name":"sequenceLifeLine","fillStyle":{"color":"204,229,255","type":"solid"},"path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":180,"y":158.74286324637276,"h":495,"angle":0,"x":293.7428479875836,"zindex":1}},"1712ba9b234f71":{"textBlock":[{"position":{"w":"w-20","y":"0","h":"30","x":"10"},"text":"DefaultSqlSession"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712ba9b234f71","anchors":[],"category":"uml_sequence","title":"生命线","name":"sequenceLifeLine","fillStyle":{"color":"255,204,204","type":"solid"},"path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":137,"y":156.34285409109933,"h":463.8000144958496,"angle":0,"x":1028.7428479875844,"zindex":17}},"1712b9d3e968ec":{"textBlock":[{"position":{"w":"w","y":0,"h":"h","x":0},"text":"2.build配置文件"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712b9d3e96ab","category":"default","name":"序号","value":"","type":"number"},{"id":"1712b9d3e96af7","category":"default","name":"名称","value":"","type":"string"},{"id":"1712b9d3e960eb","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712b9d3e9663","category":"default","name":"连接","value":"","type":"link"},{"id":"1712b9d3e96708","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712b9d3e968ec","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"basic","title":"文本","name":"text","fillStyle":{"color":"204,229,255","type":"solid"},"path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":160,"y":215.74285943167547,"h":40,"angle":0,"x":407.7428479875836,"zindex":7}},"1712bb1fdf23ff":{"textBlock":[{"position":{"w":"w-20","h":"30","y":"0","x":"10"},"text":"MapperProxyFactory"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb1fdf23ff","anchors":[],"title":"生命线","category":"uml_sequence","name":"sequenceLifeLine","path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"255,255,204","type":"solid"},"locked":false,"group":"","props":{"w":158.08763806076058,"angle":0,"h":491.11111111111063,"y":737.3333401150178,"zindex":29,"x":1068.1345739889355}},"1712bb2b0c83c8":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb2b0c83c8","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"激活","category":"uml_sequence","name":"sequenceActivation","path":[{"actions":[{"action":"move","y":"4","x":"0"},{"y1":"0","action":"quadraticCurve","y":"0","x":"4","x1":"0"},{"action":"line","y":"0","x":"w-4"},{"y1":"0","action":"quadraticCurve","y":"4","x":"w","x1":"w"},{"action":"line","y":"h-4","x":"w"},{"y1":"h","action":"quadraticCurve","y":"h","x":"w-4","x1":"w"},{"action":"line","y":"h","x":"4"},{"y1":"h","action":"quadraticCurve","y":"h-4","x":"0","x1":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"204,204,255","type":"solid"},"locked":false,"group":"","props":{"w":30,"angle":0,"h":204.44444444444446,"y":818.4444512261284,"zindex":33,"x":580.666656494141}},"1712bb1229cbea":{"textBlock":[{"position":{"w":"w-20","h":"h-20","y":10,"x":10},"text":"开始执行"}],"lineStyle":{"lineWidth":0},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712bb1229c993","category":"default","name":"序号","value":"","type":"number"},{"id":"1712bb1229c8fc","category":"default","name":"名称","value":"","type":"string"},{"id":"1712bb1229cc25","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712bb1229c2b","category":"default","name":"连接","value":"","type":"link"},{"id":"1712bb1229cfd9","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712bb1229cbea","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"备注","category":"basic","name":"note","path":[{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w-16"},{"action":"line","y":"16","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"line","y":"0","x":"0"},{"action":"close"}]},{"fillStyle":{"color":"r-50,g-50,b-50","type":"solid"},"actions":[{"action":"move","y":"0","x":"w-16"},{"action":"line","y":"16","x":"w-16"},{"action":"line","y":"16","x":"w"},{"action":"close"}]},{"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w-16"},{"action":"line","y":"16","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"line","y":"0","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"255, 255, 170"},"locked":false,"group":"","props":{"w":80,"angle":0,"h":43.33333333333337,"y":740.1728462878575,"zindex":26,"x":20.909647940654924}},"1712bd969e4a2a":{"to":{"id":"1712bd8a8207c6","angle":3.141592653589794,"y":1539.7777642144097,"x":923.9999898274739},"id":"1712bd969e4a2a","linkerType":"broken","text":"","lineStyle":{},"name":"linker","from":{"id":"1712bd8a8207c6","y":1484.2222086588542,"angle":3.1415926535897927,"x":923.9999898274739},"dataAttributes":[],"locked":false,"points":[{"y":1484.2222086588542,"x":953.9999898274739},{"y":1539.7777642144097,"x":953.9999898274739}],"group":"","props":{"zindex":63}},"1712fd418ceede":{"to":{"id":"1712bbe9c02dbb","angle":3.141592653589793,"y":1717,"x":77},"id":"1712fd418ceede","linkerType":"broken","text":"返回最终数","lineStyle":{"lineStyle":"dot"},"name":"linker","from":{"id":"1712bd84450cc2","y":1714,"angle":0,"x":680},"dataAttributes":[],"locked":false,"points":[{"y":1714,"x":378.5},{"y":1717,"x":378.5}],"group":"","props":{"zindex":76}},"1712bb59db8772":{"textBlock":[{"position":{"w":"w","y":0,"h":"h","x":0},"text":"newInstance"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712bb59db8dd6","category":"default","name":"序号","value":"","type":"number"},{"id":"1712bb59db878f","category":"default","name":"名称","value":"","type":"string"},{"id":"1712bb59db80c8","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712bb59db8999","category":"default","name":"连接","value":"","type":"link"},{"id":"1712bb59db8eef","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712bb59db8772","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"basic","title":"文本","name":"text","fillStyle":{},"path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":105.55555555555543,"y":856.0987722137826,"h":41.111111111111086,"angle":0,"x":1199.555545383029,"zindex":39}},"1712bc9f614e55":{"textBlock":[{"position":{"w":"w-20","y":"0","h":"30","x":"10"},"text":"PrepareStatement"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":false,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bc9f614e55","anchors":[],"category":"uml_sequence","title":"生命线","name":"sequenceLifeLine","fillStyle":{"color":"229,204,255","type":"solid"},"path":[{"lineStyle":{"lineStyle":"dot","lineWidth":2},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"30","x":"w*(1/2)"},{"action":"line","y":"h","x":"w*(1/2)"}]},{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"30","x":"w"},{"action":"line","y":"30","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":133.88888888888914,"y":1303.4474356732865,"h":478.34938862939134,"angle":0,"x":1042.3287583652036,"zindex":51}},"1712bd8a09377b":{"id":"1712bd8a09377b","to":{"id":"1712bd8a8207c6","y":1494.2222086588542,"angle":0,"x":895.1111009385851},"text":"5、query()","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":1491.9999864366318,"x":801.7777676052517},{"y":1494.2222086588542,"x":801.7777676052517}],"locked":false,"dataAttributes":[],"from":{"id":"1712bd84450cc2","y":1491.9999864366318,"angle":3.1415926535897927,"x":708.4444342719183},"group":"","props":{"zindex":61}},"1712fd0f3eb46":{"textBlock":[{"position":{"w":"w","y":0,"h":"h","x":0},"text":"6、QueryFromDatabase()"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712fd0f3ec2f4","category":"default","name":"序号","value":"","type":"number"},{"id":"1712fd0f3ec7db","category":"default","name":"名称","value":"","type":"string"},{"id":"1712fd0f3ecf1b","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712fd0f3ec17c","category":"default","name":"连接","value":"","type":"link"},{"id":"1712fd0f3ec905","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712fd0f3eb46","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"basic","title":"文本","name":"text","fillStyle":{},"path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":160,"y":1438,"h":40,"angle":0,"x":936.1832166369377,"zindex":64}},"1712bbe9c02dbb":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bbe9c02dbb","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"激活","category":"uml_sequence","name":"sequenceActivation","path":[{"actions":[{"action":"move","y":"4","x":"0"},{"y1":"0","action":"quadraticCurve","y":"0","x":"4","x1":"0"},{"action":"line","y":"0","x":"w-4"},{"y1":"0","action":"quadraticCurve","y":"4","x":"w","x1":"w"},{"action":"line","y":"h-4","x":"w"},{"y1":"h","action":"quadraticCurve","y":"h","x":"w-4","x1":"w"},{"action":"line","y":"h","x":"4"},{"y1":"h","action":"quadraticCurve","y":"h-4","x":"0","x1":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"230,255,204","type":"solid"},"locked":false,"group":"","props":{"w":30,"angle":0,"h":486.66666666666663,"y":1301.7777845594615,"zindex":45,"x":49.48523436681367}},"1712baa0fc1574":{"id":"1712baa0fc1574","to":{"id":"1712baa1770a98","y":474.34285409109964,"angle":0,"x":1082.2428479875844},"text":"6、调用构造方法","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":470.8428540910996,"x":923.9928479875836},{"y":474.34285409109964,"x":923.9928479875836}],"locked":false,"dataAttributes":[],"from":{"id":"1712ba8df35751","angle":3.141592653589793,"y":470.8428540910996,"x":765.7428479875836},"group":"","props":{"zindex":18}},"1712b9c9055e71":{"textBlock":[{"position":{"w":"w-20","h":"h-20","y":10,"x":10},"text":"开始执行"}],"lineStyle":{"lineWidth":0},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712b9c90558e1","category":"default","name":"序号","value":"","type":"number"},{"id":"1712b9c9055b97","category":"default","name":"名称","value":"","type":"string"},{"id":"1712b9c9055e7","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712b9c9055dd1","category":"default","name":"连接","value":"","type":"link"},{"id":"1712b9c9055b9a","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712b9c9055e71","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"备注","category":"basic","name":"note","path":[{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w-16"},{"action":"line","y":"16","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"line","y":"0","x":"0"},{"action":"close"}]},{"fillStyle":{"color":"r-50,g-50,b-50","type":"solid"},"actions":[{"action":"move","y":"0","x":"w-16"},{"action":"line","y":"16","x":"w-16"},{"action":"line","y":"16","x":"w"},{"action":"close"}]},{"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w-16"},{"action":"line","y":"16","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"line","y":"0","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"255, 255, 170"},"locked":false,"group":"","props":{"w":107,"angle":0,"h":41,"y":183.7428594316755,"zindex":5,"x":5.344646130172542}},"1712bac7ae21e7":{"textBlock":[{"position":{"w":"w","y":0,"h":"h","x":0},"text":"加载配置文件到开启会话的流程"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{"color":"255,0,0","size":30},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712bac7ae2da4","category":"default","name":"序号","value":"","type":"number"},{"id":"1712bac7ae2248","category":"default","name":"名称","value":"","type":"string"},{"id":"1712bac7ae2b77","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712bac7ae2219","category":"default","name":"连接","value":"","type":"link"},{"id":"1712bac7ae205a","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712bac7ae21e7","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"category":"basic","title":"文本","name":"text","fillStyle":{"color":"255,102,102","type":"solid"},"path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"locked":false,"group":"","props":{"w":446,"y":43.34285409109937,"h":56,"angle":0,"x":60.74284798758369,"zindex":22}},"1712bbe9c02f56":{"textBlock":[{"position":{"w":"w-20","h":"h-20","y":10,"x":10},"text":"开始执行"}],"lineStyle":{"lineWidth":0},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712bbe9d685b7","category":"default","name":"序号","value":"","type":"number"},{"id":"1712bbe9d68559","category":"default","name":"名称","value":"","type":"string"},{"id":"1712bbe9d6878b","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712bbe9d68a93","category":"default","name":"连接","value":"","type":"link"},{"id":"1712bbe9d687e2","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712bbe9c02f56","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"备注","category":"basic","name":"note","path":[{"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w-16"},{"action":"line","y":"16","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"line","y":"0","x":"0"},{"action":"close"}]},{"fillStyle":{"color":"r-50,g-50,b-50","type":"solid"},"actions":[{"action":"move","y":"0","x":"w-16"},{"action":"line","y":"16","x":"w-16"},{"action":"line","y":"16","x":"w"},{"action":"close"}]},{"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w-16"},{"action":"line","y":"16","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"line","y":"0","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"255, 255, 170"},"locked":false,"group":"","props":{"w":80,"angle":0,"h":43.33333333333337,"y":1297.9506240656349,"zindex":46,"x":24.479399015427614}},"1712bafc8271f2":{"textBlock":[{"position":{"w":"w","h":"h","y":0,"x":0},"text":"MapperProxy的构建流程"}],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{"color":"255,0,0","size":30},"resizeDir":["tl","tr","br","bl"],"dataAttributes":[{"id":"1712bafc907fe9","category":"default","name":"序号","value":"","type":"number"},{"id":"1712bafc9072c6","category":"default","name":"名称","value":"","type":"string"},{"id":"1712bafc90786d","category":"default","name":"所有者","value":"","type":"string"},{"id":"1712bafc907829","category":"default","name":"连接","value":"","type":"link"},{"id":"1712bafc90778e","category":"default","name":"便笺","value":"","type":"string"}],"shapeStyle":{"alpha":1},"id":"1712bafc8271f2","anchors":[{"y":"0","x":"w/2"},{"y":"h","x":"w/2"},{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"文本","category":"basic","name":"text","path":[{"lineStyle":{"lineWidth":0},"fillStyle":{"type":"none"},"actions":[{"action":"move","y":"0","x":"0"},{"action":"line","y":"0","x":"w"},{"action":"line","y":"h","x":"w"},{"action":"line","y":"h","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"255,102,102","type":"solid"},"locked":false,"group":"","props":{"w":446,"angle":0,"h":56,"y":669.9142804827005,"zindex":23,"x":52.17141941615509}},"1712ba68eec308":{"id":"1712ba68eec308","to":{"id":"1712ba69e81c22","y":313.7428594316756,"angle":0,"x":735.7428479875836},"text":"3、构造方法","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":311.04285534994966,"x":568.7428479875836},{"y":313.7428594316756,"x":568.7428479875836}],"locked":false,"dataAttributes":[],"from":{"id":"1712b9bb236492","angle":3.141592653589793,"y":311.04285534994966,"x":401.7428479875836},"group":"","props":{"zindex":9}},"1712bab2784625":{"id":"1712bab2784625","to":{"y":502.64059939103146,"x":70.62809388922302},"text":"返回DefaultSqlSession对象","linkerType":"broken","name":"linker","lineStyle":{"lineStyle":"dot"},"points":[{"y":506.3428540910994,"x":403.1854709384033},{"y":502.64059939103146,"x":403.1854709384033}],"locked":false,"dataAttributes":[],"from":{"id":"1712ba8df35751","angle":0,"y":506.3428540910994,"x":735.7428479875836},"group":"","props":{"zindex":21}},"1712bb09b306b5":{"textBlock":[],"lineStyle":{},"link":"","children":[],"parent":"","attribute":{"linkable":true,"visible":true,"container":false,"rotatable":true,"markerOffset":5,"collapsable":false,"collapsed":false},"fontStyle":{},"resizeDir":["t","b"],"dataAttributes":[],"shapeStyle":{"alpha":1},"id":"1712bb09b306b5","anchors":[{"y":"h/2","x":"0"},{"y":"h/2","x":"w"}],"title":"激活","category":"uml_sequence","name":"sequenceActivation","path":[{"actions":[{"action":"move","y":"4","x":"0"},{"y1":"0","action":"quadraticCurve","y":"0","x":"4","x1":"0"},{"action":"line","y":"0","x":"w-4"},{"y1":"0","action":"quadraticCurve","y":"4","x":"w","x1":"w"},{"action":"line","y":"h-4","x":"w"},{"y1":"h","action":"quadraticCurve","y":"h","x":"w-4","x1":"w"},{"action":"line","y":"h","x":"4"},{"y1":"h","action":"quadraticCurve","y":"h-4","x":"0","x1":"0"},{"action":"line","y":"4","x":"0"},{"action":"close"}]}],"fillStyle":{"color":"230,255,204","type":"solid"},"locked":false,"group":"","props":{"w":30,"angle":0,"h":486.66666666666663,"y":744.000006781684,"zindex":24,"x":45.8571297781808}},"1712fd1afb6b4b":{"id":"1712fd1afb6b4b","to":{"id":"1712fd1ba34154","y":1646.5,"angle":0,"x":1096.1832166369377},"text":"8、query()","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":1646,"x":1010.0916083184688},{"y":1646.5,"x":1010.0916083184688}],"locked":false,"dataAttributes":[],"from":{"id":"1712bd8a8207c6","angle":3.1415926535897927,"y":1646,"x":924},"group":"","props":{"zindex":67}},"1712ba84744966":{"id":"1712ba84744966","to":{"y":335.4406024427892,"x":70.62809388922302},"text":"返回DefaultSqlSessionFactory对象","linkerType":"broken","name":"linker","lineStyle":{},"points":[{"y":337.3428540910994,"x":221.18547093840345},{"y":335.4406024427892,"x":221.18547093840345}],"locked":false,"dataAttributes":[],"from":{"id":"1712b9bb236492","angle":0,"y":337.3428540910994,"x":371.7428479875836},"group":"","props":{"zindex":12}}}}},"meta":{"id":"5e81f218e4b0069b2bbd4131","member":"mashibing","exportTime":"2020-04-05 17:14:40","diagramInfo":{"category":"uml","title":"mybatis流程图","created":"2020-03-30 21:20:24","creator":"mashibing","modified":"2020-03-31 17:03:47"},"type":"ProcessOn Schema File","version":"1.0"}} \ No newline at end of file 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/01\351\234\200\346\261\202\345\210\206\346\236\220\345\222\214\347\216\257\345\242\203\346\220\255\345\273\272/property-server-manage-master.zip" "b/project/01\351\234\200\346\261\202\345\210\206\346\236\220\345\222\214\347\216\257\345\242\203\346\220\255\345\273\272/property-server-manage-master.zip" new file mode 100644 index 00000000..d0e3e668 Binary files /dev/null and "b/project/01\351\234\200\346\261\202\345\210\206\346\236\220\345\222\214\347\216\257\345\242\203\346\220\255\345\273\272/property-server-manage-master.zip" differ diff --git "a/project/01\351\234\200\346\261\202\345\210\206\346\236\220\345\222\214\347\216\257\345\242\203\346\220\255\345\273\272/\345\222\214\345\256\266\344\272\221\346\234\215\345\212\241\347\256\241\347\220\206\344\272\221\345\271\263\345\217\260.docx" "b/project/01\351\234\200\346\261\202\345\210\206\346\236\220\345\222\214\347\216\257\345\242\203\346\220\255\345\273\272/\345\222\214\345\256\266\344\272\221\346\234\215\345\212\241\347\256\241\347\220\206\344\272\221\345\271\263\345\217\260.docx" new file mode 100644 index 00000000..41f66ec1 Binary files /dev/null and "b/project/01\351\234\200\346\261\202\345\210\206\346\236\220\345\222\214\347\216\257\345\242\203\346\220\255\345\273\272/\345\222\214\345\256\266\344\272\221\346\234\215\345\212\241\347\256\241\347\220\206\344\272\221\345\271\263\345\217\260.docx" differ diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/01\351\241\271\347\233\256\347\216\257\345\242\203\345\207\206\345\244\207.md" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/01\351\241\271\347\233\256\347\216\257\345\242\203\345\207\206\345\244\207.md" new file mode 100644 index 00000000..831c564e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/01\351\241\271\347\233\256\347\216\257\345\242\203\345\207\206\345\244\207.md" @@ -0,0 +1,338 @@ +# 项目开发流程 + +### 1、根据需求文档分析整个项目,进行相关表的设计 + +​ 通过需求文档分析各个模块需要的表以及相应的表之间的关系,此阶段主要是想让大家熟悉这个过程,后续实际开发的时候我会将表结构直接给出,大家做对比即可,记住一句话,**表设计没有对错之分,只有合适与不合适** + +### 2、搭建前端项目 + +​ 此项目的开发我们使用的是阿里开源的前端框架Ant Design,此框架是使用vue来完成具体功能的,因为在现在的公司的开发中,几乎都是前后端分离,前端工程师完成前端功能,后端工程师完成后端逻辑的编写,我们教学的侧重点在于后端,因此前端直接使用给大家提供好的模板,大家只需要下载即可。 + +操作步骤: + +​ 1、下载项目并完成解压的功能 + +​ 2、在当前项目的根路径下打开cmd,然后运行npm install + +​ 3、在整个安装过程中一般不会出现任何错误,如果出现错误,自行上网解决,解决不了联系我,(别怂,干就完了)。 + +​ 4、安装完成之后,可以使用 npm run serve命令来进行 运行 + +### 3、搭建后端项目 + +​ 后端我们抛弃使用ssm的这种老的项目搭建模式,使用现在应用最多的springboot来进行实现。 + +操作步骤: + +​ 1、创建springboot项目 + +​ 2、导入需要的依赖 + +pom.xml + +```xml + + + 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 + + + com.alibaba + fastjson + 1.2.9 + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + mysql + mysql-connector-java + runtime + + + org.springframework.boot + spring-boot-starter-test + test + + + org.junit.vintage + junit-vintage-engine + + + + + + 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 + + + + log4j + log4j + 1.2.17 + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + src/main/java + + **/*.xml + + + + + +``` + +​ 3、修改配置文件 + +application.yaml + +```yaml +server: + port: 8080 +spring: + datasource: + username: root + password: 123456 + url: jdbc:mysql://localhost:3306/family_service_platform?useSSL=false&serverTimezone=UTC + driver-class-name: com.mysql.cj.jdbc.Driver +mybatis: + mapper-locations: classpath:com/mashibing/mapper/common/*.xml + configuration: + map-underscore-to-camel-case: true +logging: + level: + com: + mashibing: + mapper: + common: debug +``` + +log4j.properties + +```properties +# 全局日志配置%n +log4j.rootLogger=info, stdout +# MyBatis 日志配置 +log4j.logger.com.mashibing.mapper=TRACE +# 控制台输出 +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m + +log4j.logger.java.sql=DEBUG +log4j.logger.java.sql.Connection = DEBUG +log4j.logger.java.sql.Statement = DEBUG +log4j.logger.java.sql.PreparedStatement = DEBUG +log4j.logger.java.sql.ResultSet = DEBUG +``` + +​ 4、通过mybatis-plus反向生成对应的实体类 + +```java +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 MyTest { + + + @Test + public void testGenerator() { + AutoGenerator autoGenerator = new AutoGenerator(); + + //全局配置 + GlobalConfig globalConfig = new GlobalConfig(); + globalConfig.setAuthor("lian") + .setOutputDir("E:\\self_project\\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(); + } +} +``` + +​ 5、运行springboot项目,保证项目能够运行起来。 + +​ 6、运行之后发现项目报错,报错原因是因为mapper对象无法自动装配,因此需要在启动的application类上添加@MapperScan注解或者在每一个mapper的接口上添加@Mapper注解,此处不做任何限制,大家开心就好。当然不可否认的是我们当前项目的表比较多,因此在每一个Mapper上添加@Mapper注解比较麻烦 + +*** + +​ 总结,截止到此处为止,我们需要环境准备工作已经完成,下面开始进行下一步的开发。 + +​ 因为现在大家在访问的时候用到的是两个独立的项目,所以必须要保证两个项目之间能够进行通信,此时对于前端和后端而言,我们都需要进行相关的配置,来保证两个项目可以进行正常的数据通信 + +### 4、修改前端项目配置,完成通信功能 + +​ 1、修改.env.development文件 + +```tex +NODE_ENV=development +VUE_APP_PREVIEW=false +VUE_APP_API_BASE_URL=http://localhost:8080/ +``` + +​ 2、删除main.js的mock数据挂载,在src目录下打开main.js文件,将import './mock'代码注释 + +​ 3、当修改成功之后,重新运行服务,点击登录请求,查看发送的地址是什么地址,如果出现http://localhost:8080/auth/login,则表示前端项目的修改已经成功,只需要去修改后端项目的配置即可。不要问我不成功怎么办,你按照我的方式,不可能不成功! + +### 5、修改后端项目的配置,完成通信功能 + +​ 1、在项目中新建一个config的包,添加跨域的配置类 + +```java +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 corsConfiguration = new CorsConfiguration(); + // 你需要跨域的地址 注意这里的 127.0.0.1 != localhost + // * 表示对所有的地址都可以访问 + corsConfiguration.addAllowedOrigin("*"); + // 跨域的请求头 + corsConfiguration.addAllowedHeader("*"); // 2 + // 跨域的请求方法 + corsConfiguration.addAllowedMethod("*"); // 3 + //加上了这一句,大致意思是可以携带 cookie + //最终的结果是可以 在跨域请求的时候获取同一个 session + corsConfiguration.setAllowCredentials(true); + return corsConfiguration; + } + @Bean + public CorsFilter corsFilter() { + UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); + //配置 可以访问的地址 + source.registerCorsConfiguration("/**", buildConfig()); // 4 + return new CorsFilter(source); + } +} +``` + +​ 或者可以在controller类的上面添加注解 + +```java +@CrossOrigin(origins = "*",allowCredentials="true",allowedHeaders = "*",methods = {}) +``` + +​ 2、添加对应的controller进行处理 + +LoginController.java + +```java +package com.bjmsb.controller; + +import org.springframework.web.bind.annotation.CrossOrigin; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@CrossOrigin(origins = "*",allowCredentials="true",allowedHeaders = "*",methods = {}) +public class LoginController { + + @RequestMapping("/auth/2step-code") + public boolean step_code2(){ + System.out.println("此请求是前端框架带的默认请求,可以不做任何处理,也可以在前端将其删除"); + System.out.println("step_code2"); + return true; + } + + @RequestMapping("/auth/login") + public String login(){ + System.out.println("login"); + return "success"; + } +} +``` + +如果能请求成功,那么就意味着整个项目已经可以顺利进行通信,后续的话只需要完成对应业务的编写即可, + +*** + +​ 从下面开始,我们就要开始进行整个项目的业务开发了,所以希望大家能提起精神,干他!!! \ No newline at end of file diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/02\347\231\273\345\275\225\345\212\237\350\203\275\345\256\236\347\216\260.md" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/02\347\231\273\345\275\225\345\212\237\350\203\275\345\256\236\347\216\260.md" new file mode 100644 index 00000000..63705fda --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/02\347\231\273\345\275\225\345\212\237\350\203\275\345\256\236\347\216\260.md" @@ -0,0 +1,986 @@ +# 02登录功能实现 + +​ 在上一节中我们把基本的环境都准备好了,下面开始进行登录模块的编写。 + +### 1、登录请求 + +​ 打开登录页面之后,用户可以输入用户名和密码,然后点击登录,需要去数据库验证用户名和密码是否正确。在 输入用户名和密码之后,需要在springboot中接受参数,而前后端分离的项目参数的接受比较有意思,不能直接接受,需要进行转换。 + +​ 下面介绍两种方式,大家按照自己喜欢的方式编写即可: + +​ (1)使用@RequestBody接受参数 + +```java + @RequestMapping("/auth/login") + public String login(@RequestBody Map map){ + System.out.println("login"); + System.out.println(map); + return "success"; + } +``` + +​ (2)在前端传递参数的时候,进行数据的转换,转换成后端能直接接受的方式 + +​ 在前端项目的根目录下运行 npm install qs,安装对应的组件,并且在登录的方法调用前添加如下代码: + +```js + const QS = require('qs') + const data = QS.stringify(loginParams) +``` + +​ 在接受参数的方法上controller方法上编写如下代码: + +```java + @RequestMapping("/auth/login") + public String login(String username,String password){ + System.out.println("login"); + System.out.println(username+"------"+password); + return "success"; + } +``` + +### 2、编写登录后续逻辑 + +1、编写mapper类及对应的配置文件 + +TblUserRecordMapper.java + +```java +public interface TblUserRecordMapper extends BaseMapper { + public TblUserRecord login(@Param("username") String username,@Param("password") String password); +} +``` + +TblUserRecordMapper.xml + +```xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +``` + +LoginService.java + +```java +package com.bjmsb.service; + +import com.bjmsb.bean.TblUserRecord; +import com.bjmsb.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); + } +} +``` + +LoginController.java + +```java +@RequestMapping("/auth/login") + public TblUserRecord login(String username,String password){ + System.out.println("login"); + TblUserRecord tblUserRecord = loginService.login(username, password); + System.out.println(tblUserRecord); + return tblUserRecord; + } +``` + +按道理来说,我们现在运行应该是可以成功的,但是事与愿违,发现运行不成功,下面开始来排查问题。 + +##### 1、类型不匹配 + +​ 因为是关联查询,需要在对应的实体类上添加对应的实体类,而不是属性值 + +```java +package com.bjmsb.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-15 + */ +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; + + private String token; + + public String getToken() { + return token; + } + + public void setToken(String token) { + this.token = token; + } + + 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 TblRole getTblRole() { + return tblRole; + } + + public void setTblRole(TblRole tblRole) { + this.tblRole = tblRole; + } + + public String getUserGender() { + return userGender; + } + + public void setUserGender(String userGender) { + this.userGender = userGender; + } + + public TblDept getTblDept() { + return tblDept; + } + + public void setTblDept(TblDept tblDept) { + this.tblDept = tblDept; + } + + 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 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; + } + + @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 + + '}'; + } +} +``` + +##### 2、页面无法实现跳转,报错信息还是**请求出现错误,请稍后再试** + +​ 前端在进行数据回显的时候,会发生写错误,这个错误很难去做判断,但是可以一步步观察,注意细节和过程。 + +​ 用户在验证完用户名和密码之后,会回显数据,我们看到请求确实是200,但是依然有问题,会执行requestFailed方法,此时意味着一定出现了问题 + +```js +requestFailed(err) { + this.isLoginError = true + this.$notification['error']({ + message: '错误', + description: ((err.response || {}).data || {}).message || '请求出现错误,请稍后再试', + duration: 4 + }) + } +``` + +问题出现在哪里呢?其实很简单,我们在进行数据回显的时候,要求是json格式,而我们回显的直接是一个对象,所以此时肯定是有问题的,因此需要把具体的对象转换成json格式进行返回。 + +```java + @RequestMapping("/auth/login") + public JSONObject login(String username,String password){ + System.out.println("login"); + TblUserRecord tblUserRecord = loginService.login(username, password); + System.out.println(tblUserRecord); + return JSONObject.parseObject(JSONObject.toJSONString(tblUserRecord)); + } +``` + +##### 3、此时发现还是没有办法跳转,这是为什么呢?可以通过观察他的mock数据集在查看,在auth.js文件中 + +```js +return builder( + { + id: Mock.mock('@guid'), + name: Mock.mock('@name'), + username: 'admin', + password: 'admin', + avatar: 'https://gw.alipayobjects.com/zos/rmsportal/jZUIxmJycoymBprLOUbT.png', + status: 1, + telephone: '', + lastLoginIp: '27.154.74.117', + lastLoginTime: 1534837621348, + creatorId: 'admin', + createTime: 1497160610259, + deleted: 0, + roleId: 'admin', + lang: 'zh-CN', + token: '4291d7da9005377ec9aec4a71ea837f' + }, + '', + 200, + { 'Custom-Header': Mock.mock('@guid') } + ) +``` + +这是预先给出的数据格式,我们在不搭建后端服务的时候,大家发现返回的是这样的数据,也就是说我们需要返回类似于这样的数据,但是观察后发现其实需要的是几个字段,message,code,result,而在执行成功之后需要拉取的数据是result中的token,其实result就是我们要回显的数据,因此我们要组织类似的数据格式。 + +1、在TblUserRecord类中添加token的关键字段 + +2、设置返回的数据类型,添加json包,并且创建common类 + +```java +package com.bjmsb.json; + +public class Common { + private String message = ""; + private Integer code = 200; + private Object result; + + public Common() { + } + + public Common(Object result) { + this.result = result; + } + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message; + } + + public Integer getCode() { + return code; + } + + public void setCode(Integer code) { + this.code = code; + } + + public Object getResult() { + return result; + } + + public void setResult(Object result) { + this.result = result; + } + + @Override + public String toString() { + return "Common{" + + "message='" + message + '\'' + + ", code=" + code + + ", result=" + result + + '}'; + } +} +``` + +3、拼接返回对象 + +```java +@RequestMapping("/auth/login") +public JSONObject login(String username,String password){ + System.out.println("login"); + TblUserRecord tblUserRecord = loginService.login(username, password); + System.out.println(tblUserRecord); + tblUserRecord.setToken(tblUserRecord.getUserName()); + Common common = new Common(tblUserRecord); + return JSONObject.parseObject(JSONObject.toJSONString(common)); +} +``` + +​ 此时大家发现在页面弹出的窗口有两个,一个是成功,一个是失败,成功表明用户名和密码的验证已经成功了,但是依然还有一个错误提示,这又是为什么呢?下面来开始解决这个问题 + +### 3、实现登录成功正常跳转 + +​ 在此前端框架中,有非常严格的权限管理,因此我们在进行数据回显的时候也需要权限的验证,大家可以看permission.js文件 + +```js +router.beforeEach((to, from, next) => { + NProgress.start() // start progress bar + to.meta && (typeof to.meta.title !== 'undefined' && setDocumentTitle(`${to.meta.title} - ${domTitle}`)) + if (Vue.ls.get(ACCESS_TOKEN)) { + /* has token */ + if (to.path === '/user/login') { + next({ path: defaultRoutePath }) + NProgress.done() + } else { + if (store.getters.roles.length === 0) { + store + .dispatch('GetInfo') + .then(res => { + const roles = res.result && res.result.role + console.dir(roles) + store.dispatch('GenerateRoutes', { roles }).then(() => { + // 根据roles权限生成可访问的路由表 + // 动态添加可访问路由表 + router.addRoutes(store.getters.addRouters) + console.log(store.getters.addRouters) + // 请求带有 redirect 重定向时,登录自动重定向到该地址 + const redirect = decodeURIComponent(from.query.redirect || to.path) + if (to.path === redirect) { + // hack方法 确保addRoutes已完成 ,set the replace: true so the navigation will not leave a history record + next({ ...to, replace: true }) + } else { + // 跳转到目的路由 + next({ path: redirect }) + } + }) + }) + .catch(() => { + notification.error({ + message: '错误', + description: '请求用户信息失败,请重试' + }) + store.dispatch('Logout').then(() => { + next({ path: '/user/login', query: { redirect: to.fullPath } }) + }) + }) + } else { + next() + } + } + } else { + if (whiteList.includes(to.name)) { + // 在免登录白名单,直接进入 + next() + } else { + next({ path: '/user/login', query: { redirect: to.fullPath } }) + NProgress.done() // if current page is login will not trigger afterEach hook, so manually handle it + } + } +}) +``` + +​ 此时的话,可以看到紧接着会发送一个/auth/info的请求,相当于发送请求,获取权限,来判断可以显示哪些模块功能。此处的话可以参考官方文档: + +https://pro.loacg.com/docs/authority-management + +这个权限管理包含了非常细致的权限管理,我们其实不需要这么多,此框架提供的粒度太细致了,包含了按钮的具体操作,因此我们需要简化开发,只需要返回类似于这样的数据格式即可: + +```json +{ + message: "ok", + result: { + name: "admin", + avatar: "/avatar2.jpg", + role: { + permissions: [ + { + permissionId: "901" + }, + { + permissionId: "221" + }, + { + permissionId: "223", + }, + { + permissionId: "226", + }, + ], + }, + }, + code: 200, +} +``` + +下面开始组织这样的样式: + +定义对应的实体类,在json包下: + +Permission.java + +```java +package com.bjmsb.json; + +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 + '\'' + + '}'; + } +} +``` + +Permissions.java + +```java +package com.bjmsb.json; + +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 + + '}'; + } +} +``` + +UserInfo.java + +```java +package com.bjmsb.json; + +public class UserInfo { + + private String name; + private String avatar = "/avatar2.jpg"; + private Permissions role; + + public UserInfo() { + } + + 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 + + '}'; + } +} +``` + +编写对应的controller中的方法,在编写此逻辑的时候我们发现需要获取用户的数据,此处如果重新发送请求的话会比较麻烦,因此我们需要从login中设置session,然后在另外的一个方法中获取session中的值,因此需要修改我们的代码如下: + +```java +@RequestMapping("/auth/login") + public JSONObject login(String username, String password, HttpSession session){ + TblUserRecord tblUserRecord = loginService.login(username, password); + tblUserRecord.setToken(tblUserRecord.getUserName()); + session.setAttribute("userRecord",tblUserRecord); + Common common = new Common(); + common.setResult(tblUserRecord); + return JSONObject.parseObject(JSONObject.toJSONString(common)); + } + + @RequestMapping("/user/info") + public JSONObject userInfo(HttpSession session){ + //获取用户数据 + TblUserRecord userRecord = (TblUserRecord) session.getAttribute("userRecord"); + //获取对应用户需要账务的功能模块 + String[] rolePrivileges = userRecord.getTblRole().getRolePrivileges().split("-"); + // 拼接需要返回的数据对象的格式 + Permissions permissions = new Permissions(); + List permissionList = new ArrayList<>(); + for (String rolePrivilege : rolePrivileges) { + permissionList.add(new Permission(rolePrivilege)); + } + permissions.setPermissions(permissionList); + UserInfo userInfo = new UserInfo(userRecord.getUserName(),permissions); + Common common = new Common(userInfo); + return JSONObject.parseObject(JSONObject.toJSONString(common)); + } +``` + +​ 当你这样写完之后,发现并没有成功,报了空指针异常,其实就是从session中并没有获取到对应的数据,为什么呢?为什么不是同一个session对象呢? + +​ 其实最根本的原因就在于跨域的问题,导致开启了不同的会话,因此需要在前端添加额外的设置。 + +​ 需要在request.js中添加如下配置: + +```js +axios.defaults.withCredentials = true +``` + +当完成这步操作之后,大家发现我们终于进入到页面中了,怎么样是不是很嗨皮!!!开发项目的时候会遇到各种各样的问题,但是遇到项目不要慌,(先拿出手机拍个抖音),开玩笑而已,遇到问题解决问题即可,不要觉得麻烦,也不要觉得累,出现的错误越多,那么你成长的就越快,所以,**干就完了!!!** + +![](image\崩溃.jpg) + +### 4、登录退出 + +​ 找到退出登录的页面,在src\components\tools\UserMenu.vue目录下,并且在controller中添加退出登录的方法: + +```java + @RequestMapping("/auth/logout") + public JSONObject loginOut(HttpSession session){ + System.out.println("退出登录"); + session.invalidate(); + return JSONObject.parseObject(JSONObject.toJSONString(new Common(null))); + } +``` + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform.sql" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform.sql" new file mode 100644 index 00000000..ff29f067 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform.sql" @@ -0,0 +1,9839 @@ +/* + Navicat Premium Data Transfer + + Source Server : localhost + Source Server Type : MySQL + Source Server Version : 50528 + Source Host : localhost:3306 + Source Schema : family_service_platform + + Target Server Type : MySQL + Target Server Version : 50528 + File Encoding : 65001 + + Date: 18/04/2020 14:07:17 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for fc_building +-- ---------------------------- +DROP TABLE IF EXISTS `fc_building`; +CREATE TABLE `fc_building` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `estate_code` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产编码', + `building_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇编码', + `building_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇名称', + `building_function` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇功能', + `used_area` double NULL DEFAULT NULL COMMENT '使用面积', + `build_area` double NULL DEFAULT NULL COMMENT '建筑面积', + `build_permission_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '建设许可证号', + `sale_permission_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '销售许可证号', + `finish_date` datetime NULL DEFAULT NULL COMMENT '竣工日期', + `over_roof_date` datetime NULL DEFAULT NULL COMMENT '封顶日期', + `decorate` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '装修', + `struct_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '结构类别', + `damage_grade` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '完损等级', + `unit_count` double NULL DEFAULT NULL COMMENT '单元数量', + `building_type` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇类型', + `clean_floor` int(11) NULL DEFAULT NULL COMMENT '清扫层数', + `mop_floor` int(11) NULL DEFAULT NULL COMMENT '拖洗层数', + `channel_area` double NULL DEFAULT NULL COMMENT '楼狼通道地面', + `elevator` int(11) NULL DEFAULT NULL COMMENT '电梯轿箱', + `channel_door` int(11) NULL DEFAULT NULL COMMENT '通道门', + `evevator_door` int(11) NULL DEFAULT NULL COMMENT '电梯门', + `water_well_door` int(11) NULL DEFAULT NULL COMMENT '水井门', + `electric_well_door` int(11) NULL DEFAULT NULL COMMENT '电井门', + `window_shades` int(11) NULL DEFAULT NULL COMMENT '百叶窗', + `hydrant` int(11) NULL DEFAULT NULL COMMENT '消防栓', + `mirrors` int(11) NULL DEFAULT NULL COMMENT '整容镜', + `unit_door` int(11) NULL DEFAULT NULL COMMENT '单元门', + `harden_ground_area` double NULL DEFAULT NULL COMMENT '硬化地面', + `green_area` double NULL DEFAULT NULL COMMENT '提纯绿地', + `no_green_area` double NULL DEFAULT NULL COMMENT '不提纯绿地', + `water_by_person` double NULL DEFAULT NULL COMMENT '人工水面', + `is_elevator` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否使用电梯', + `is_second_water_electric` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要二次水电', + `random_identify` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '随机标识码', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '楼宇信息表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fc_building +-- ---------------------------- +INSERT INTO `fc_building` VALUES (1, '11', 'B1', '第1号楼', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_building` VALUES (2, '11', 'B2', '第2号楼', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_building` VALUES (3, '22', 'B3', '第1号楼', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_building` VALUES (4, '22', 'B4', '第2号楼', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_building` VALUES (5, '22', 'B5', '第3号楼', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for fc_cell +-- ---------------------------- +DROP TABLE IF EXISTS `fc_cell`; +CREATE TABLE `fc_cell` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '房间编号', + `unit_code` int(11) NULL DEFAULT NULL COMMENT '单元编码', + `cell_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间编码', + `cell_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间名称', + `cell_house_code` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '户型编码', + `cell_toward_code` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '朝向编码', + `cell_function` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' 功能', + `cell_decorate_code` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '装修编码', + `cell_used_area` double NULL DEFAULT NULL COMMENT '使用面积', + `cell_build_area` double NULL DEFAULT NULL COMMENT '建筑面积', + `carport_area` double NULL DEFAULT NULL COMMENT '车库面积', + `car_area` double NULL DEFAULT NULL COMMENT '车位面积', + `loft_area` double NULL DEFAULT NULL COMMENT '阁楼面积', + `store_area` double NULL DEFAULT NULL COMMENT '储藏室面积', + `floor_number` int(11) NULL DEFAULT NULL COMMENT '楼层数', + `last_debt` double NULL DEFAULT NULL COMMENT '上次欠缴', + `property_type` bigint(20) NULL DEFAULT NULL COMMENT '物业类型', + `rent_money` double NULL DEFAULT NULL COMMENT '租金', + `length` double NULL DEFAULT NULL COMMENT '长度', + `width` double NULL DEFAULT NULL COMMENT '宽度', + `stall_use` bigint(20) NULL DEFAULT NULL COMMENT '档口用途', + `stall_area` bigint(20) NULL DEFAULT NULL COMMENT '档口区域', + `is_sale` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否已售', + `is_rent` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否已租', + `sale_contract_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '销售合同编号', + `rent_contract_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '租赁合同编号', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `factor` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '系数', + `cell_property` int(11) NULL DEFAULT NULL COMMENT '房间性质', + `store_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '储藏室号', + `car_licence_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '车牌号', + `car_space_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '车位号', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '房间信息表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fc_cell +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fc_cell_addbuild +-- ---------------------------- +DROP TABLE IF EXISTS `fc_cell_addbuild`; +CREATE TABLE `fc_cell_addbuild` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '所属房间id', + `addbuild_area` double NULL DEFAULT NULL COMMENT '加建面积', + `addbuild_time` datetime NULL DEFAULT NULL COMMENT '加建时间', + `addbuild_state` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '加建状态', + `addbuild_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '加建说明', + `addbuild_accessory` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '加建附件', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '房间加建信息' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fc_cell_addbuild +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fc_estate +-- ---------------------------- +DROP TABLE IF EXISTS `fc_estate`; +CREATE TABLE `fc_estate` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `estate_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产编码', + `estate_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产名称', + `estate_addr` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产地址', + `cover_area` double NULL DEFAULT NULL COMMENT '占地面积', + `build_area` double NULL DEFAULT NULL COMMENT '建筑面积', + `green_area` double NULL DEFAULT NULL COMMENT '绿地面积', + `road_area` double NULL DEFAULT NULL COMMENT '道路面积', + `building_number` double NULL DEFAULT NULL COMMENT '楼宇数量', + `building_leader` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '负责人', + `company_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公司名称', + `company_behalf` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '法人代表', + `contact` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系人', + `contact_phone` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `contact_addr` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系地址', + `car_space_delay_rate` double NULL DEFAULT NULL COMMENT '车位滞纳金比率', + `car_space_over_day` int(11) NULL DEFAULT NULL COMMENT '车位超期天数', + `estate_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产类型', + `street_lamp_number` int(11) NULL DEFAULT NULL COMMENT '路灯数量', + `hfcNum` int(11) NULL DEFAULT NULL COMMENT '化粪池数量', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '楼盘信息' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fc_estate +-- ---------------------------- +INSERT INTO `fc_estate` VALUES (1, '11', '11', '', NULL, NULL, NULL, NULL, 2, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '0'); +INSERT INTO `fc_estate` VALUES (2, '22', '22', '', NULL, NULL, NULL, NULL, 3, '', '', '', '', '', NULL, NULL, NULL, NULL, NULL, NULL, '', '0'); + +-- ---------------------------- +-- Table structure for fc_unit +-- ---------------------------- +DROP TABLE IF EXISTS `fc_unit`; +CREATE TABLE `fc_unit` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `building_code` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇编号', + `unit_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单元编码', + `unit_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单元名称', + `start_floor` int(11) NULL DEFAULT NULL COMMENT '开始楼层', + `stop_floor` int(11) NULL DEFAULT NULL COMMENT '结束楼层', + `start_cell_id` int(11) NULL DEFAULT NULL COMMENT '开始房号', + `stop_cell_id` int(11) NULL DEFAULT NULL COMMENT '结束房号', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 13 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '单元信息表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fc_unit +-- ---------------------------- +INSERT INTO `fc_unit` VALUES (1, 'B1', 'U1', '第1单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (2, 'B2', 'U1', '第1单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (3, 'B2', 'U2', '第2单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (4, 'B1', 'U1', '第1单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (5, 'B2', 'U1', '第1单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (6, 'B2', 'U2', '第2单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (7, 'B3', 'U1', '第1单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (8, 'B4', 'U1', '第1单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (9, 'B4', 'U2', '第2单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (10, 'B5', 'U1', '第1单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (11, 'B5', 'U2', '第2单元', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `fc_unit` VALUES (12, 'B5', 'U3', '第3单元', NULL, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for fy_estate_temporary +-- ---------------------------- +DROP TABLE IF EXISTS `fy_estate_temporary`; +CREATE TABLE `fy_estate_temporary` ( + `company` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `estate_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产编码', + `estate_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产名称', + `building_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇编码', + `building_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇名称', + `unit_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单元编码', + `unit_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单元名称', + `cell_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间编码', + `cell_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间名称', + `build_area` double NULL DEFAULT NULL COMMENT '建筑面积', + `floor_number` int(11) NULL DEFAULT NULL COMMENT '楼层数', + `function` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '功能', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人编码' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '房产信息临时表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_estate_temporary +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_history_money_temp +-- ---------------------------- +DROP TABLE IF EXISTS `fy_history_money_temp`; +CREATE TABLE `fy_history_money_temp` ( + `cell_id` int(50) NOT NULL COMMENT '房间id', + `cell_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产名称', + `build_area` double NULL DEFAULT NULL COMMENT '建筑面积', + `price_unit` double NULL DEFAULT NULL COMMENT '单价', + `money` double NULL DEFAULT NULL COMMENT '金额', + `money_start_date` datetime NULL DEFAULT NULL COMMENT '费用起期', + `money_stop_date` datetime NULL DEFAULT NULL COMMENT '费用止期', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人编码' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '历史费用临时表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_history_money_temp +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_invalid_main +-- ---------------------------- +DROP TABLE IF EXISTS `fy_invalid_main`; +CREATE TABLE `fy_invalid_main` ( + `invalid_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '作废单号', + `receive_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属收款单号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间号', + `receive_date` datetime NULL DEFAULT NULL COMMENT '收费日期', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `money` double NULL DEFAULT NULL COMMENT '费用金额', + `real_receive_money` double NULL DEFAULT NULL COMMENT '实收金额', + `discount_money` double NULL DEFAULT NULL COMMENT '优惠金额', + `receive_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款方式', + `is_customer` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否业主', + `receive_money` double NULL DEFAULT NULL COMMENT '收费金额', + `money_id` bigint(20) NULL DEFAULT NULL COMMENT '费项id', + `estate_id` int(11) NULL DEFAULT NULL COMMENT '所属楼盘id', + `current_delay_money` double NULL DEFAULT NULL COMMENT '本次欠缴', + `last_delay_money` double NULL DEFAULT NULL COMMENT '上次欠缴', + `invalid_type` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废类型', + `receipt_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收据号', + `invoice_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发票号', + `receive_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款人', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `invalid_reason` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废原因', + `invalid_date` datetime NULL DEFAULT NULL COMMENT '作废时间', + `invalid_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人', + PRIMARY KEY (`invalid_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '作废单主单' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_invalid_main +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_invalid_sub +-- ---------------------------- +DROP TABLE IF EXISTS `fy_invalid_sub`; +CREATE TABLE `fy_invalid_sub` ( + `invalid_detail_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '作废明细单号', + `invalid_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属作废单号', + `money_setting_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费项名称', + `charge_unit` double NULL DEFAULT NULL COMMENT '计费单价', + `last_read_number` double NULL DEFAULT NULL COMMENT '上次读数', + `current_read_number` double NULL DEFAULT NULL COMMENT '本次读数', + `real_used` double NULL DEFAULT NULL COMMENT '实际用量', + `money` double NULL DEFAULT NULL COMMENT '费用金额', + `delay_money` double NULL DEFAULT NULL COMMENT '滞纳金', + `current_should_pay` double NULL DEFAULT NULL COMMENT '本次应付', + `over_day` int(11) NULL DEFAULT NULL COMMENT '超期天数', + `money_start_date` datetime NULL DEFAULT NULL COMMENT '费用起期', + `money_stop_date` datetime NULL DEFAULT NULL COMMENT '费用止期', + `pay_limit_day` datetime NULL DEFAULT NULL COMMENT '缴费限期', + `input_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '记录人', + `standing_book_id` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属台账id', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `derate_money` double NULL DEFAULT NULL COMMENT '减免金额', + `money_id` int(11) NULL DEFAULT NULL COMMENT '费项id', + `delay_derate_money` double NULL DEFAULT NULL COMMENT '滞纳金减免金额', + `mop_floor` double NULL DEFAULT NULL COMMENT '楼层系数', + `money_mult` int(11) NULL DEFAULT NULL COMMENT '费用倍数', + PRIMARY KEY (`invalid_detail_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '作废单子单' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_invalid_sub +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_money_setting +-- ---------------------------- +DROP TABLE IF EXISTS `fy_money_setting`; +CREATE TABLE `fy_money_setting` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `money_setting_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费项编号', + `money_setting_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费项名称', + `receive_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收费方式', + `price_unit` double NULL DEFAULT NULL COMMENT '单位价格', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `money_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费用类型', + `is_update_price` char(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否允许修改单价', + `is_convenient_money` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否便捷费项', + `min_used_number` double NULL DEFAULT NULL COMMENT '最小使用量', + `is_step_receive` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否阶梯收费', + `step_condition_1` double NULL DEFAULT NULL COMMENT '阶梯条件1', + `step_price_1` double NULL DEFAULT NULL COMMENT '阶梯单价1', + `step_condition_21` double NULL DEFAULT NULL COMMENT '阶梯条件2', + `step_condition_22` double NULL DEFAULT NULL COMMENT '阶梯条件2', + `step_price_2` double NULL DEFAULT NULL COMMENT '阶梯单价2', + `step_condition_31` double NULL DEFAULT NULL COMMENT '阶梯条件3', + `step_condition_32` double NULL DEFAULT NULL COMMENT '阶梯条件3', + `step_price_3` double NULL DEFAULT NULL COMMENT '阶梯单价3', + `step_condition_41` double NULL DEFAULT NULL COMMENT '阶梯条件4', + `step_condition_42` double NULL DEFAULT NULL COMMENT '阶梯条件4', + `step_price_4` double NULL DEFAULT NULL COMMENT '阶梯单价4', + `step_condition_5` double NULL DEFAULT NULL COMMENT '阶梯条件5', + `step_price_5` double NULL DEFAULT NULL COMMENT '阶梯单价5', + `renew_message` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '续费短信', + `receive_warn_stop_day` int(11) NULL DEFAULT NULL COMMENT '从已收费的费用止期后N天发送短信', + `max_warn_number` smallint(6) NULL DEFAULT NULL COMMENT '最多短信重复提醒次数', + `ask_message` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '催缴短信', + `no_receive_warn_stop_day` smallint(6) NULL DEFAULT NULL COMMENT '从未收取的缴费限期前N天发送短信', + `associate_money_id` int(11) NULL DEFAULT NULL COMMENT '关联费项ID', + `delay_rate` double NULL DEFAULT NULL COMMENT '滞纳金比率', + `delay_over_day` int(11) NULL DEFAULT NULL COMMENT '滞纳金超期天数', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `receive_print_hidden` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '常规收费打印时隐藏单价', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '费项设置' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_money_setting +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_money_temporary_01 +-- ---------------------------- +DROP TABLE IF EXISTS `fy_money_temporary_01`; +CREATE TABLE `fy_money_temporary_01` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `money_id` int(11) NULL DEFAULT NULL COMMENT '费项编码', + `record_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '档案名称', + `record_remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '档案备注', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间编码', + `estate_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产名称', + `building_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇名称', + `unit_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单元名称', + `cell_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间名称', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `box_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表编号', + `price_unit` double NULL DEFAULT NULL COMMENT '单位价格', + `last_read_number` double NULL DEFAULT NULL COMMENT '上次读数', + `current_read_number` double NULL DEFAULT NULL COMMENT '本次读数', + `current_use_number` double NULL DEFAULT NULL COMMENT '本次用量', + `should_pay` double NULL DEFAULT NULL COMMENT '应缴费用', + `last_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '上次费用止期', + `current_pay_start_date` datetime NULL DEFAULT NULL COMMENT '本次费用起期', + `current_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '本次费用止期', + `current_pay_limit_date` datetime NULL DEFAULT NULL COMMENT '本次缴费限期', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人编码', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + `floor_factor` double NULL DEFAULT NULL COMMENT '楼层系数', + `money_mult` int(11) NULL DEFAULT NULL COMMENT '费用倍数', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '费用临时表1' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_money_temporary_01 +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_money_temporary_02 +-- ---------------------------- +DROP TABLE IF EXISTS `fy_money_temporary_02`; +CREATE TABLE `fy_money_temporary_02` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `money_id` int(11) NULL DEFAULT NULL COMMENT '费项编码', + `record_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '档案名称', + `record_remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '档案备注', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间编码', + `estate_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产名称', + `building_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇名称', + `unit_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单元名称', + `cell_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间名称', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `charge_unit` double NULL DEFAULT NULL COMMENT '计费单位', + `price_unit` double NULL DEFAULT NULL COMMENT '单位价格', + `should_pay` double NULL DEFAULT NULL COMMENT '应缴费用', + `last_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '上次费用止期', + `current_pay_start_date` datetime NULL DEFAULT NULL COMMENT '本次费用起期', + `current_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '本次费用止期', + `current_pay_limit_date` datetime NULL DEFAULT NULL COMMENT '本次缴费限期', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人编码', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + `floor_factor` double NULL DEFAULT NULL COMMENT '楼层系数', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '费用临时表2' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_money_temporary_02 +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_money_temporary_03 +-- ---------------------------- +DROP TABLE IF EXISTS `fy_money_temporary_03`; +CREATE TABLE `fy_money_temporary_03` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `money_setting_code` int(11) NULL DEFAULT NULL COMMENT '费项编码', + `record_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '档案名称', + `record_remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '档案备注', + `public_box_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公表名称', + `price_unit` double NULL DEFAULT NULL COMMENT '单位价格', + `share_number` double NULL DEFAULT NULL COMMENT '分摊户数', + `last_read_number` double NULL DEFAULT NULL COMMENT '上次读数', + `current_read_number` double NULL DEFAULT NULL COMMENT '本次读数', + `current_use_number` double NULL DEFAULT NULL COMMENT '本次用量', + `should_pay` double NULL DEFAULT NULL COMMENT '应缴费用', + `last_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '上次费用止期', + `current_pay_start_date` datetime NULL DEFAULT NULL COMMENT '本次费用起期', + `current_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '本次费用止期', + `current_pay_limit_date` datetime NULL DEFAULT NULL COMMENT '本次缴费限期', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人编码', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '费用临时表3' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_money_temporary_03 +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_money_temporary_04 +-- ---------------------------- +DROP TABLE IF EXISTS `fy_money_temporary_04`; +CREATE TABLE `fy_money_temporary_04` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `money_setting_code` int(11) NULL DEFAULT NULL COMMENT '费项编码', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间编号', + `estate_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产名称', + `building_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇名称', + `unit_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单元名称', + `cell_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间名称', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `box_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表编号', + `share_money` double NULL DEFAULT NULL COMMENT '分摊金额', + `current_share_number` double NULL DEFAULT NULL COMMENT '本次分摊量', + `price_unit` double NULL DEFAULT NULL COMMENT '单位价格', + `current_pay_start_date` datetime NULL DEFAULT NULL COMMENT '本次费用起期', + `current_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '本次费用止期', + `current_pay_limit_date` datetime NULL DEFAULT NULL COMMENT '本次缴费限期', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `primary_identify` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主键标识', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人编码', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '费用临时表4' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_money_temporary_04 +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_pre_receive +-- ---------------------------- +DROP TABLE IF EXISTS `fy_pre_receive`; +CREATE TABLE `fy_pre_receive` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `voucher_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '凭证号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间号', + `summary` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '摘要', + `money` double NULL DEFAULT NULL COMMENT '金额', + `handler_person` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '经手人', + `receive_date` datetime NULL DEFAULT NULL COMMENT '收款日期', + `input_person` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '录入人', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `receive_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款方式', + `data_source` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据来源', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '预收款管理' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_pre_receive +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_property_money_dist +-- ---------------------------- +DROP TABLE IF EXISTS `fy_property_money_dist`; +CREATE TABLE `fy_property_money_dist` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间编号', + `money_id` int(11) NULL DEFAULT NULL COMMENT '费项编号', + `is_public_money` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否共有费用', + `current_read_number` double NULL DEFAULT NULL COMMENT '当前读数', + `last_charge_unit` double NULL DEFAULT NULL COMMENT '上次计费单位', + `floor_factor` double NULL DEFAULT NULL COMMENT '楼层系数', + `use_number_mult` int(11) NULL DEFAULT NULL COMMENT '使用量倍数', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '物业费分布' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_property_money_dist +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_public_box +-- ---------------------------- +DROP TABLE IF EXISTS `fy_public_box`; +CREATE TABLE `fy_public_box` ( + `public_box_id` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公表编号', + `money_id` int(11) NULL DEFAULT NULL COMMENT '所属费项', + `public_box_read_number` double NULL DEFAULT NULL COMMENT '公表读数', + `share_method` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分摊方法', + `public_box_state` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公表状态' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '公表信息' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_public_box +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_public_box_user +-- ---------------------------- +DROP TABLE IF EXISTS `fy_public_box_user`; +CREATE TABLE `fy_public_box_user` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动增长id', + `public_box_id` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间号', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '公表关联用户' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_public_box_user +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_receipt_main +-- ---------------------------- +DROP TABLE IF EXISTS `fy_receipt_main`; +CREATE TABLE `fy_receipt_main` ( + `id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '收款单号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间号', + `receive_date` datetime NULL DEFAULT NULL COMMENT '收费日期', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `should_pay_total` double NULL DEFAULT NULL COMMENT '应付合计', + `current_should_receive` double NULL DEFAULT NULL COMMENT '本次应收', + `discount_money` double NULL DEFAULT NULL COMMENT '优惠金额', + `receive_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款方式', + `is_customer` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否业主', + `current_real_receive` double NULL DEFAULT NULL COMMENT '本次实收', + `temporary_money_id` bigint(20) NULL DEFAULT NULL COMMENT '临客费项id', + `estate_id` int(11) NULL DEFAULT NULL COMMENT '所属楼盘id', + `current_delay_money` double NULL DEFAULT NULL COMMENT '本次欠缴', + `last_delay_money` double NULL DEFAULT NULL COMMENT '上次欠缴', + `title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题', + `receive_type` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款类型', + `receipt_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收据号', + `invoice_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发票号', + `status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `remark` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `receive_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款人', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `update_reason` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改原因', + `receipt_check_status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据审核状态', + `receipt_check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据审核人', + `receipt_check_time` datetime NULL DEFAULT NULL COMMENT '单据审核时间', + `receipt_check_advice` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据审核意见', + `money_check_status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '现金审核状态', + `money_check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '现金审核人', + `money_check_time` datetime NULL DEFAULT NULL COMMENT '现金审核时间', + `money_check_advice` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '现金审核意见', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '收款单主单' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_receipt_main +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_receipt_sub +-- ---------------------------- +DROP TABLE IF EXISTS `fy_receipt_sub`; +CREATE TABLE `fy_receipt_sub` ( + `receipt_detail_id` int(20) NOT NULL AUTO_INCREMENT COMMENT '收款明细单号', + `receipt_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属收款单号', + `money_setting_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费项名称', + `charge_unit` double NULL DEFAULT NULL COMMENT '计费单价', + `last_read_number` double NULL DEFAULT NULL COMMENT '上次读数', + `current_read_number` double NULL DEFAULT NULL COMMENT '本次读数', + `real_used` double NULL DEFAULT NULL COMMENT '实际用量', + `money` double NULL DEFAULT NULL COMMENT '费用金额', + `delay_money` double NULL DEFAULT NULL COMMENT '滞纳金', + `delay_derate_money` double NULL DEFAULT NULL COMMENT '滞纳金减免金额', + `current_should_pay` double NULL DEFAULT NULL COMMENT '本次应付', + `over_day` int(11) NULL DEFAULT NULL COMMENT '超期天数', + `money_start_date` datetime NULL DEFAULT NULL COMMENT '费用起期', + `money_stop_date` datetime NULL DEFAULT NULL COMMENT '费用止期', + `pay_limit_day` datetime NULL DEFAULT NULL COMMENT '缴费限期', + `floor_factor` double NULL DEFAULT NULL COMMENT '楼层系数', + `input_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '记录人', + `standing_book_id` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属台账id', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `derate_money` double NULL DEFAULT NULL COMMENT '费用减免金额', + `money_id` int(11) NULL DEFAULT NULL COMMENT '费项id', + `update_reason` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '变更原因', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '变更人id', + `update_date` datetime NULL DEFAULT NULL COMMENT '变更时间', + `money_mult` int(11) NULL DEFAULT NULL COMMENT '费用倍数', + PRIMARY KEY (`receipt_detail_id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '收款单子单' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_receipt_sub +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_refund_main +-- ---------------------------- +DROP TABLE IF EXISTS `fy_refund_main`; +CREATE TABLE `fy_refund_main` ( + `refund_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '退款单号', + `receipt_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属收款单号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间号', + `receive_cycle` datetime NULL DEFAULT NULL COMMENT '收费日期', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `money` double NULL DEFAULT NULL COMMENT '费用金额', + `real_receive_money` double NULL DEFAULT NULL COMMENT '实收金额', + `discount_money` double NULL DEFAULT NULL COMMENT '优惠金额', + `receive_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款方式', + `is_customer` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否业主', + `receive_money` double NULL DEFAULT NULL COMMENT '收款金额', + `money_id` bigint(20) NULL DEFAULT NULL COMMENT '费项id', + `estate_id` int(11) NULL DEFAULT NULL COMMENT '所属楼盘id', + `current_delay_money` double NULL DEFAULT NULL COMMENT '本次欠缴', + `last_delay_money` double NULL DEFAULT NULL COMMENT '上次欠缴', + `refund_type` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '退款类型', + `receipt_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收据号', + `invoice_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发票号', + `receive_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款人', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `refund_reason` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '退款原因', + `refund_time` datetime NULL DEFAULT NULL COMMENT '退款时间', + `refund_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '退款人', + `check_status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审核状态', + `check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审核人', + `check_time` datetime NULL DEFAULT NULL COMMENT '审核时间', + `check_advice` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审核意见', + PRIMARY KEY (`refund_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '退款单主单' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_refund_main +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_refund_sub +-- ---------------------------- +DROP TABLE IF EXISTS `fy_refund_sub`; +CREATE TABLE `fy_refund_sub` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '退款单明细单号', + `refund_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属退款单号', + `money_setting_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费项名称', + `charge_unit` double NULL DEFAULT NULL COMMENT '计费单价', + `last_read_number` double NULL DEFAULT NULL COMMENT '上次读数', + `current_read_number` double NULL DEFAULT NULL COMMENT '本次读数', + `real_used` double NULL DEFAULT NULL COMMENT '实际用量', + `money` double NULL DEFAULT NULL COMMENT '费用金额', + `delay_money` double NULL DEFAULT NULL COMMENT '滞纳金', + `current_should_pay` double NULL DEFAULT NULL COMMENT '本次应付', + `over_day` int(11) NULL DEFAULT NULL COMMENT '超期天数', + `money_start_date` datetime NULL DEFAULT NULL COMMENT '费用起期', + `money_stop_date` datetime NULL DEFAULT NULL COMMENT '费用止期', + `pay_limit_day` datetime NULL DEFAULT NULL COMMENT '缴费限期', + `input_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '记录人', + `standing_book_id` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属台账id', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `money_derate` double NULL DEFAULT NULL COMMENT '费用减免金额', + `money_id` int(11) NULL DEFAULT NULL COMMENT '费项id', + `delay_derate_money` double NULL DEFAULT NULL COMMENT '滞纳金减免金额', + `money_mult` int(11) NULL DEFAULT NULL COMMENT '费用倍数', + `floor_factor` double NULL DEFAULT NULL COMMENT '楼层系数', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '退款单子单' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_refund_sub +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_sale_contract +-- ---------------------------- +DROP TABLE IF EXISTS `fy_sale_contract`; +CREATE TABLE `fy_sale_contract` ( + `sale_contract_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '合同编号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '所属房间编号', + `contract_money` double NULL DEFAULT NULL COMMENT '合同金额', + `contract_date` datetime NULL DEFAULT NULL COMMENT '合同日期', + `pay_method` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '付款方式', + `id_number` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身份证号', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `online_phone` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '固定电话', + `phone_number` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机号码', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `contract_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '合同附件', + PRIMARY KEY (`sale_contract_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '销售合同' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_sale_contract +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_share_standing_book +-- ---------------------------- +DROP TABLE IF EXISTS `fy_share_standing_book`; +CREATE TABLE `fy_share_standing_book` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '公摊费用编号', + `standing_book_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '台账名称', + `associate_cost_code` int(11) NULL DEFAULT NULL COMMENT '关联费用编码', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `create_date` datetime NULL DEFAULT NULL COMMENT '生成日期', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成人', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '公摊费用台账概要' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_share_standing_book +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_share_standing_book_detail +-- ---------------------------- +DROP TABLE IF EXISTS `fy_share_standing_book_detail`; +CREATE TABLE `fy_share_standing_book_detail` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '公表明细id', + `standing_book_id` double NULL DEFAULT NULL COMMENT '所属台账编号', + `public_box_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公表名称', + `price_unit` double NULL DEFAULT NULL COMMENT '单位价格', + `share_number` double NULL DEFAULT NULL COMMENT '分摊户数', + `last_read_number` double NULL DEFAULT NULL COMMENT '上次读数', + `current_read_number` double NULL DEFAULT NULL COMMENT '本次读数', + `current_use_number` double NULL DEFAULT NULL COMMENT '本次用量', + `should_pay` double NULL DEFAULT NULL COMMENT '应缴费用', + `last_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '上次费用止期', + `current_pay_start_date` datetime NULL DEFAULT NULL COMMENT '本次费用起期', + `current_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '本次费用止期', + `current_pay_limit_date` datetime NULL DEFAULT NULL COMMENT '本次缴费限期', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '公摊费用台账公表明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_share_standing_book_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_share_user_detail +-- ---------------------------- +DROP TABLE IF EXISTS `fy_share_user_detail`; +CREATE TABLE `fy_share_user_detail` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '用户明细id', + `standing_book_id` double NULL DEFAULT NULL COMMENT '所属台账编号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '所属房间编码', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `box_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表编号', + `share_money` double NULL DEFAULT NULL COMMENT '分摊金额', + `current_share_number` double NULL DEFAULT NULL COMMENT '本次分摊量', + `current_pay_start_date` datetime NULL DEFAULT NULL COMMENT '本次费用起期', + `current_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '本次费用止期', + `current_pay_limit_date` datetime NULL DEFAULT NULL COMMENT '本次缴费限期', + `receive_identify` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收费标识', + `price_unit` double NULL DEFAULT NULL COMMENT '单位价格', + `cost_identify` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费用标识', + `receive_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收费单号', + `refund_number` int(11) NULL DEFAULT NULL COMMENT '退款次数', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `derate_money` double NULL DEFAULT NULL COMMENT '减免金额', + `should_pay` double NULL DEFAULT NULL COMMENT '应收金额', + `invalid_number` int(11) NULL DEFAULT NULL COMMENT '作废次数', + `derate_delay_money` double NULL DEFAULT NULL COMMENT '减免滞纳金', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '公摊费用台账用户明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_share_user_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_standing_book +-- ---------------------------- +DROP TABLE IF EXISTS `fy_standing_book`; +CREATE TABLE `fy_standing_book` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '台账编号', + `standing_book_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '台账名称', + `associate_cost_code` int(11) NULL DEFAULT NULL COMMENT '关联费用编码', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `creation_date` datetime NULL DEFAULT NULL COMMENT '生成日期', + `creation_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生成人', + `associate_standing_book_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '关联台账账号', + `company` int(11) NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '费用台账概要' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_standing_book +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_standing_book_detail +-- ---------------------------- +DROP TABLE IF EXISTS `fy_standing_book_detail`; +CREATE TABLE `fy_standing_book_detail` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '台账明细编号', + `standing_book_id` int(11) NULL DEFAULT NULL COMMENT '所属台账编号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '所属房间编码', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `box_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表编号', + `charge_unit` double NULL DEFAULT NULL COMMENT '计费单位', + `price_unit` double NULL DEFAULT NULL COMMENT '单位价格', + `last_read_number` double NULL DEFAULT NULL COMMENT '上次读数', + `current_read_number` double NULL DEFAULT NULL COMMENT '本次读数', + `current_use_number` double NULL DEFAULT NULL COMMENT '本次用量', + `should_pay` double NULL DEFAULT NULL COMMENT '应缴费用', + `last_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '上次费用止期', + `last_pay_start_date` datetime NULL DEFAULT NULL COMMENT '上次费用起期', + `current_pay_stop_date` datetime NULL DEFAULT NULL COMMENT '本次费用止期', + `current_pay_limit_date` datetime NULL DEFAULT NULL COMMENT '本次费用限期', + `cost_identify` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费用标识', + `receive_identify` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收费标识', + `receive_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收费单号', + `refund_number` int(11) NULL DEFAULT NULL COMMENT '退款次数', + `receive_cycle` int(11) NULL DEFAULT NULL COMMENT '收费周期', + `derate_money` double NULL DEFAULT NULL COMMENT '减免费用', + `should_receive` double NULL DEFAULT NULL COMMENT '应收费用', + `invalid_number` int(11) NULL DEFAULT NULL COMMENT '作废次数', + `floor_factor` double NULL DEFAULT NULL COMMENT '楼层系数', + `derate_delay_money` double NULL DEFAULT NULL COMMENT '减免滞纳金', + `pay_mult` int(11) NULL DEFAULT NULL COMMENT '费用倍数', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '费用台账明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_standing_book_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for fy_temporary_money_setting +-- ---------------------------- +DROP TABLE IF EXISTS `fy_temporary_money_setting`; +CREATE TABLE `fy_temporary_money_setting` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '临客费项id', + `temporary_money_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费项名称', + `upper_money_id` int(11) NULL DEFAULT NULL COMMENT '上级费项id', + `price_unit` double NULL DEFAULT NULL COMMENT '单位价格', + `money_description` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '费项说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '临客费项设置' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of fy_temporary_money_setting +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_advice_box +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_advice_box`; +CREATE TABLE `tbl_advice_box` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称', + `type` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型', + `status` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `admin_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '管理员id', + `user_range_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户范围id', + `User_range_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户范围姓名', + `remark` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '意见箱' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_advice_box +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_answer_data +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_answer_data`; +CREATE TABLE `tbl_answer_data` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '答案编号', + `subject_id` int(11) NULL DEFAULT NULL COMMENT '所属题目编号', + `answer_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '答案名称', + `answer_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '答案类型', + `input_record_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '建档人', + `input_record_date` datetime NULL DEFAULT NULL COMMENT '建档时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '题目可选答案信息表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_answer_data +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_arg_record +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_arg_record`; +CREATE TABLE `tbl_arg_record` ( + `arg_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '参数编码', + `arg_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参数名称', + `arg_value` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参数值', + `arg_desc` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `arg_order` int(11) NULL DEFAULT NULL COMMENT '排序号', + `belong_product` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属产品', + PRIMARY KEY (`arg_code`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '参数档案' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_arg_record +-- ---------------------------- +INSERT INTO `tbl_arg_record` VALUES ('E_DelZc', '是否允许删除资产档案', '是', '是、否。默认为是', 50, 'E'); +INSERT INTO `tbl_arg_record` VALUES ('E_TxmGz', '资产条形码/编码自动生成规则', '1', '1代表资产分类的名称缩写+当前分类的流水号(总长度14位);2代表资产分类编码前2位字符+4个0+6位数流水号(总长度12位)', 54, 'E'); +INSERT INTO `tbl_arg_record` VALUES ('E_UpdateAudi', '资产修改后是否需要审批才能生效', '否', '是、否。默认为否', 53, 'E'); +INSERT INTO `tbl_arg_record` VALUES ('E_UpdateSy', '是否允许直接修改资产的存放/使用属性', '是', '是、否。默认为否,只有在未启用资产转移/借用功能的时候才能设定为[是]', 52, 'E'); +INSERT INTO `tbl_arg_record` VALUES ('E_UpdateZj', '是否允许直接修改资产的折旧相关属性', '是', '是、否。默认为否,只有在未启用资产折旧功能的时候才能设定为[是]', 51, 'E'); +INSERT INTO `tbl_arg_record` VALUES ('E_Wpslxs', '物品报表中的数量默认显示小数位数', '0', '0代表不显示小数;1代表显示1位小数;2代表显示2位小数', 55, 'E'); +INSERT INTO `tbl_arg_record` VALUES ('F_Lstk', '是否允许对本年度以前的收款单进行退款/作废', '是', '是、否。默认为否', 16, 'F'); +INSERT INTO `tbl_arg_record` VALUES ('F_ScPzh', '是否由系统自动生成预收款的凭证号', '是', '是、否。默认为否', 15, 'F'); +INSERT INTO `tbl_arg_record` VALUES ('F_ScSjh', '物业收费时的收据号生成规则', '2', '0代表手工输入;1代表从票据管理中取值;2代表由系统自动生成。默认为0', 14, 'F'); +INSERT INTO `tbl_arg_record` VALUES ('F_skjerad', '常规/公摊物业费用金额的小数点位数', '0.00', '0代表四舍五入到元;0.0代表四舍五入到角;0.00代表四舍五入到分', 12, 'F'); +INSERT INTO `tbl_arg_record` VALUES ('K_cgsfrad', '常规收费金额的小数点位数', '2', '0代表四舍五入到元;1代表四舍五入到角;2代表四舍五入到分', 60, 'K'); +INSERT INTO `tbl_arg_record` VALUES ('M_jjdd_qz', '紧急订单的单号前缀(字母)', 'W', '只能录入1个字符。', 30, 'M'); +INSERT INTO `tbl_arg_record` VALUES ('M_max_chartsize', '图表的自定义宽度限制(px)', '10000', '合理设置该项可以节省服务器资源,建议780至10000之间。', 31, 'M'); +INSERT INTO `tbl_arg_record` VALUES ('M_max_query', '一次性最多查询时间范围(天)', '36500', '合理设置该项可以节省服务器资源,建议90天。', 32, 'M'); +INSERT INTO `tbl_arg_record` VALUES ('M_msg_gys1', '供应商登陆提示信息(非正常状态)', '对不起,该用户目前属于非正常状态,不能登录!', '', 33, 'M'); +INSERT INTO `tbl_arg_record` VALUES ('M_msg_gys2', '供应商登陆提示信息(超过有效期)', '对不起,该用户不在有效期范围内,不能登录!', '', 34, 'M'); +INSERT INTO `tbl_arg_record` VALUES ('P_AttType', '允许上传的附件类型', '.doc|.docx|.xls|.xlsx|.ppt|.pptx|.pdf|.rar|.zip|.gif|.jpg|.jpeg', '请使用“|”隔开', 1, 'P'); +INSERT INTO `tbl_arg_record` VALUES ('P_fj_size', '附件允许最大值(KB)', '10000', '如新品申请、会议起草、站内邮件/站外邮件的单个附件等。', 2, 'P'); +INSERT INTO `tbl_arg_record` VALUES ('P_ImgType', '允许上传的图片类型', '.jpg|.gif|.png|.jpeg|.bmp', '请使用“|”隔开', 4, 'P'); +INSERT INTO `tbl_arg_record` VALUES ('P_IPaddr', '本系统的服务器内网IP地址', '192.168.1.135', '请输入服务器电脑的内网IP地址', 5, 'P'); +INSERT INTO `tbl_arg_record` VALUES ('P_pic_size', '图片允许最大值(KB)', '10000', '如新品申请、银行凭证、商品招商等上传图片页面。', 3, 'P'); +INSERT INTO `tbl_arg_record` VALUES ('P_sdate', '默认查询开始日期', '1', '0代表测试环境;1代表本月初;2代表本年初', 0, 'P'); +INSERT INTO `tbl_arg_record` VALUES ('R_rsurl', '报表服务器路径', 'http://192.168.1.135/ReportServer_SQL2008', '设定报表服务器的文件存放路径', 40, 'R'); +INSERT INTO `tbl_arg_record` VALUES ('screen_bottom', '浏览器系数', 'qstVnZ+S0z4=', '屏幕上下边距缺省值', 94, 'F'); +INSERT INTO `tbl_arg_record` VALUES ('screen_browse', '浏览器版本', '/0F6/fVrxmc=', '包括ie/firefox/navigator等在内', 97, 'P'); +INSERT INTO `tbl_arg_record` VALUES ('screen_paramt', '浏览器系数', '1', '屏幕左右边距缺省值', 96, 'F'); +INSERT INTO `tbl_arg_record` VALUES ('screen_size_x', '默认屏幕的横向尺寸最大值', 'xJiPw0f3+QMo5uAK/2KlHg==', '包括宽屏在内的大部分分辨率', 98, 'P'); +INSERT INTO `tbl_arg_record` VALUES ('screen_size_y', '默认屏幕的纵向尺寸最大值', 'BVqKPfqlWKRw8zXQ3mlXTQ==', '包括宽屏在内的大部分分辨率', 99, 'P'); +INSERT INTO `tbl_arg_record` VALUES ('screen_top', '浏览器系数', '2TiybG+qJWM=', '屏幕上下边距缺省值', 95, 'K'); +INSERT INTO `tbl_arg_record` VALUES ('Y_keytype', '设定启用的UsbKey型号', '2', '1代表ikey1000;2代表ET99', 20, 'Y'); + +-- ---------------------------- +-- Table structure for tbl_attupload +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_attupload`; +CREATE TABLE `tbl_attupload` ( + `attID` int(20) NOT NULL AUTO_INCREMENT COMMENT '附件id', + `attName` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件名称', + `attNewName` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件新名称', + `attKey` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '唯一key', + `attClass` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件分类', + PRIMARY KEY (`attID`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '附件' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_attupload +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_color +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_color`; +CREATE TABLE `tbl_color` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `color` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '颜色', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 61 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '颜色管理' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_color +-- ---------------------------- +INSERT INTO `tbl_color` VALUES (1, '#009900'); +INSERT INTO `tbl_color` VALUES (2, '#00FF00'); +INSERT INTO `tbl_color` VALUES (3, '#33CCFF'); +INSERT INTO `tbl_color` VALUES (4, '#669900'); +INSERT INTO `tbl_color` VALUES (5, '#006699'); +INSERT INTO `tbl_color` VALUES (6, '#CCCCCC'); +INSERT INTO `tbl_color` VALUES (7, '#0000FF'); +INSERT INTO `tbl_color` VALUES (8, '#996699'); +INSERT INTO `tbl_color` VALUES (9, '#333300'); +INSERT INTO `tbl_color` VALUES (10, '#FF00CC'); +INSERT INTO `tbl_color` VALUES (11, '#FFFFCC'); +INSERT INTO `tbl_color` VALUES (12, '#99CCFF'); +INSERT INTO `tbl_color` VALUES (13, '#9900FF'); +INSERT INTO `tbl_color` VALUES (14, '#66FFCC'); +INSERT INTO `tbl_color` VALUES (15, '#FF0000'); +INSERT INTO `tbl_color` VALUES (16, '#99FFFF'); +INSERT INTO `tbl_color` VALUES (17, '#666666'); +INSERT INTO `tbl_color` VALUES (18, '#663399'); +INSERT INTO `tbl_color` VALUES (19, '#669999'); +INSERT INTO `tbl_color` VALUES (20, '#9999CC'); +INSERT INTO `tbl_color` VALUES (21, '#009900'); +INSERT INTO `tbl_color` VALUES (22, '#00FF00'); +INSERT INTO `tbl_color` VALUES (23, '#333300'); +INSERT INTO `tbl_color` VALUES (24, '#669900'); +INSERT INTO `tbl_color` VALUES (25, '#666666'); +INSERT INTO `tbl_color` VALUES (26, '#CCCCCC'); +INSERT INTO `tbl_color` VALUES (27, '#0000FF'); +INSERT INTO `tbl_color` VALUES (28, '#996699'); +INSERT INTO `tbl_color` VALUES (29, '#99FFFF'); +INSERT INTO `tbl_color` VALUES (30, '#FF00CC'); +INSERT INTO `tbl_color` VALUES (31, '#FFFFCC'); +INSERT INTO `tbl_color` VALUES (32, '#99CCFF'); +INSERT INTO `tbl_color` VALUES (33, '#9900FF'); +INSERT INTO `tbl_color` VALUES (34, '#66FFCC'); +INSERT INTO `tbl_color` VALUES (35, '#FF0000'); +INSERT INTO `tbl_color` VALUES (36, '#006699'); +INSERT INTO `tbl_color` VALUES (37, '#33CCFF'); +INSERT INTO `tbl_color` VALUES (38, '#663399'); +INSERT INTO `tbl_color` VALUES (39, '#669999'); +INSERT INTO `tbl_color` VALUES (40, '#9999CC'); +INSERT INTO `tbl_color` VALUES (41, '#009900'); +INSERT INTO `tbl_color` VALUES (42, '#00FF00'); +INSERT INTO `tbl_color` VALUES (43, '#333300'); +INSERT INTO `tbl_color` VALUES (44, '#669900'); +INSERT INTO `tbl_color` VALUES (45, '#666666'); +INSERT INTO `tbl_color` VALUES (46, '#CCCCCC'); +INSERT INTO `tbl_color` VALUES (47, '#0000FF'); +INSERT INTO `tbl_color` VALUES (48, '#996699'); +INSERT INTO `tbl_color` VALUES (49, '#99FFFF'); +INSERT INTO `tbl_color` VALUES (50, '#FF00CC'); +INSERT INTO `tbl_color` VALUES (51, '#FFFFCC'); +INSERT INTO `tbl_color` VALUES (52, '#99CCFF'); +INSERT INTO `tbl_color` VALUES (53, '#9900FF'); +INSERT INTO `tbl_color` VALUES (54, '#66FFCC'); +INSERT INTO `tbl_color` VALUES (55, '#FF0000'); +INSERT INTO `tbl_color` VALUES (56, '#006699'); +INSERT INTO `tbl_color` VALUES (57, '#33CCFF'); +INSERT INTO `tbl_color` VALUES (58, '#663399'); +INSERT INTO `tbl_color` VALUES (59, '#669999'); +INSERT INTO `tbl_color` VALUES (60, '#9999CC'); + +-- ---------------------------- +-- Table structure for tbl_common_language +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_common_language`; +CREATE TABLE `tbl_common_language` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `content` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '内容', + `status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `category` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分类', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '常用语' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_common_language +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_common_message +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_common_message`; +CREATE TABLE `tbl_common_message` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '短信编码', + `message_content` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '短信内容', + `message_type` bigint(20) NULL DEFAULT NULL COMMENT '类型', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '常用短信' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_common_message +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_company +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_company`; +CREATE TABLE `tbl_company` ( + `id` int(10) NOT NULL AUTO_INCREMENT COMMENT '企业编号', + `company_full_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业全称', + `company_simple_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业简称', + `company_english_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '英文名称', + `company_brand` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业品牌', + `company_type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业类型', + `company_trade` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属行业', + `company_addr` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业地址', + `post_code` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮政编码', + `company_phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业电话', + `company_fax` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业传真', + `company_website` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业网站', + `company_email` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业邮箱', + `company_national` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '国税号', + `company_land` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地税号', + `open_bank` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '开户银行', + `bank_account` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '银行账号', + `company_leader` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '法人代表', + `register_date` datetime NULL DEFAULT NULL COMMENT '注册时间', + `register_money` double NULL DEFAULT NULL COMMENT '注册资金', + `employee_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '员工人数', + `company_intro` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '企业简介', + `remark` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '企业档案' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_company +-- ---------------------------- +INSERT INTO `tbl_company` VALUES (1, '马士兵教育科技有限公司', '马士兵老师', 'mashibing', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `tbl_company` VALUES (2, '马士兵教育上海分公司', '马士兵_SH', 'mashibing_sh', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `tbl_company` VALUES (3, '马士兵教育深圳分公司', '马士兵_SZ', 'mashibing_sz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO `tbl_company` VALUES (4, '马士兵教育杭州分公司', '马士兵_HZ', 'mashibing_hz', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); + +-- ---------------------------- +-- Table structure for tbl_company_record +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_company_record`; +CREATE TABLE `tbl_company_record` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `company_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公司名称', + `company_add` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公司地址', + `company_type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公司类型', + `compant_grade` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公司级别', + `parent_company` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '上级部门', + `leader` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '负责人', + `post_code` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮政编码', + `company_phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公司电话', + `fax_number` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '传真号码', + `email` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电子邮件', + `simple_desc` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '简单介绍', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `input_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '录入人', + `input_time` datetime NULL DEFAULT NULL COMMENT '录入时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '单位名录' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_company_record +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_compary_notice +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_compary_notice`; +CREATE TABLE `tbl_compary_notice` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动增长id', + `notice_theme` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公告主题', + `notice_content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '公告内容', + `start_date` datetime NULL DEFAULT NULL COMMENT '开始时间', + `stop_date` datetime NULL DEFAULT NULL COMMENT '结束时间', + `receive_type` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接受类型', + `notice_category` bigint(20) NULL DEFAULT NULL COMMENT '公告分类', + `attach_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件名称', + `attach_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件路径', + `status` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `notice_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公告类别', + `notice_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公告附件', + `input_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '录入人', + `input_date` datetime NULL DEFAULT NULL COMMENT '录入时间', + `check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批人', + `check_date` datetime NULL DEFAULT NULL COMMENT '审批时间', + `check_advice` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批意见', + `allow_user_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '允许查看的用户编码', + `allow_user_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '允许查看的用户名称', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '企业公告' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_compary_notice +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_custom_type +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_custom_type`; +CREATE TABLE `tbl_custom_type` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '类型编号', + `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型名称', + `status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型状态', + `category` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型分类', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 795 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '自定义类型' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_custom_type +-- ---------------------------- +INSERT INTO `tbl_custom_type` VALUES (1, '北京市', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (2, '天津市', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (3, '上海市', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (4, '山东省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (5, '湖北省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (6, '北京市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (7, '上海市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (8, '天津市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (9, '重庆市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (10, '武汉市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (11, '同意', '正常', 'p03'); +INSERT INTO `tbl_custom_type` VALUES (12, '不同意', '正常', 'p03'); +INSERT INTO `tbl_custom_type` VALUES (13, '再议', '正常', 'p03'); +INSERT INTO `tbl_custom_type` VALUES (14, '暂缓', '正常', 'p03'); +INSERT INTO `tbl_custom_type` VALUES (15, '总经理', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (16, '业务经理', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (17, '董事长', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (18, '部门经理', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (19, '店长', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (20, '值班经理', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (21, '业务员', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (22, '销售人员', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (23, '客服经理', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (24, '烟酒饮料类', '正常', 'g07'); +INSERT INTO `tbl_custom_type` VALUES (25, '洗涤类', '正常', 'g07'); +INSERT INTO `tbl_custom_type` VALUES (26, '干性副食类', '正常', 'g07'); +INSERT INTO `tbl_custom_type` VALUES (27, '日配粮油类', '正常', 'g07'); +INSERT INTO `tbl_custom_type` VALUES (28, '针织百货类', '正常', 'g07'); +INSERT INTO `tbl_custom_type` VALUES (29, '年度10佳供应商', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (30, '年度10佳联营商', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (31, '季度供应商销售前50名', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (32, '季度供应商销售后50名', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (33, '月度供应商销售前30名', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (34, '月度供应商销售后30名', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (35, '集团会议', '正常', 'o01'); +INSERT INTO `tbl_custom_type` VALUES (36, '部门会议', '正常', 'o01'); +INSERT INTO `tbl_custom_type` VALUES (37, '临时会议', '正常', 'o01'); +INSERT INTO `tbl_custom_type` VALUES (38, '年终总结会议', '正常', 'o01'); +INSERT INTO `tbl_custom_type` VALUES (39, '月末汇报会议', '正常', 'o01'); +INSERT INTO `tbl_custom_type` VALUES (40, '企业宣传片', '正常', 'p08'); +INSERT INTO `tbl_custom_type` VALUES (41, '广告推广片', '正常', 'p08'); +INSERT INTO `tbl_custom_type` VALUES (42, '新闻纪录片', '正常', 'p08'); +INSERT INTO `tbl_custom_type` VALUES (43, '培训教育片', '正常', 'p08'); +INSERT INTO `tbl_custom_type` VALUES (44, 'IT业', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (45, '零售业', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (46, '运输业', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (47, '房地产业', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (48, '制造业', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (49, '通讯业', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (50, '祝福类', '正常', 'p04'); +INSERT INTO `tbl_custom_type` VALUES (51, '问候类', '正常', 'p04'); +INSERT INTO `tbl_custom_type` VALUES (52, '节日类', '正常', 'p04'); +INSERT INTO `tbl_custom_type` VALUES (53, '知识类', '正常', 'p04'); +INSERT INTO `tbl_custom_type` VALUES (54, '娱乐类', '正常', 'p04'); +INSERT INTO `tbl_custom_type` VALUES (55, '男0-10岁', '正常', 'g04'); +INSERT INTO `tbl_custom_type` VALUES (56, '男10-20岁', '正常', 'g04'); +INSERT INTO `tbl_custom_type` VALUES (57, '男20-30岁', '正常', 'g04'); +INSERT INTO `tbl_custom_type` VALUES (58, '女30-50岁', '正常', 'g04'); +INSERT INTO `tbl_custom_type` VALUES (59, '女50-80岁', '正常', 'g04'); +INSERT INTO `tbl_custom_type` VALUES (60, '女20-45岁', '正常', 'g04'); +INSERT INTO `tbl_custom_type` VALUES (61, '烟酒饮料', '正常', 'g08'); +INSERT INTO `tbl_custom_type` VALUES (62, '干性副食', '正常', 'g08'); +INSERT INTO `tbl_custom_type` VALUES (63, '洗涤', '正常', 'g08'); +INSERT INTO `tbl_custom_type` VALUES (64, '生鲜日配粮油调料', '正常', 'g08'); +INSERT INTO `tbl_custom_type` VALUES (65, '针织百货', '正常', 'g08'); +INSERT INTO `tbl_custom_type` VALUES (66, '服装鞋帽_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (67, '蔬菜水果_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (68, '面包熟食_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (69, '用电量', '正常', 'g10'); +INSERT INTO `tbl_custom_type` VALUES (70, '煤气', '正常', 'g10'); +INSERT INTO `tbl_custom_type` VALUES (71, '给排水', '正常', 'g10'); +INSERT INTO `tbl_custom_type` VALUES (72, '制冷', '正常', 'g10'); +INSERT INTO `tbl_custom_type` VALUES (73, '排烟', '正常', 'g10'); +INSERT INTO `tbl_custom_type` VALUES (74, '消防', '正常', 'g10'); +INSERT INTO `tbl_custom_type` VALUES (75, '天花、地板', '正常', 'g10'); +INSERT INTO `tbl_custom_type` VALUES (76, '工程设备', '正常', 'g09'); +INSERT INTO `tbl_custom_type` VALUES (77, '商场设备', '正常', 'g09'); +INSERT INTO `tbl_custom_type` VALUES (78, '收银设备', '正常', 'g09'); +INSERT INTO `tbl_custom_type` VALUES (79, '货架', '正常', 'g09'); +INSERT INTO `tbl_custom_type` VALUES (80, '生鲜设备', '正常', 'g09'); +INSERT INTO `tbl_custom_type` VALUES (81, '电脑设备', '正常', 'g09'); +INSERT INTO `tbl_custom_type` VALUES (82, '办公设备', '正常', 'g09'); +INSERT INTO `tbl_custom_type` VALUES (83, '运输设备', '正常', 'g09'); +INSERT INTO `tbl_custom_type` VALUES (84, '耗材', '正常', 'g09'); +INSERT INTO `tbl_custom_type` VALUES (85, '部门销售计划', '正常', 'o02'); +INSERT INTO `tbl_custom_type` VALUES (86, '活动安排', '正常', 'p02'); +INSERT INTO `tbl_custom_type` VALUES (87, '值班公告', '正常', 'p02'); +INSERT INTO `tbl_custom_type` VALUES (88, '公务接待', '正常', 'p02'); +INSERT INTO `tbl_custom_type` VALUES (89, '温馨提示', '正常', 'p02'); +INSERT INTO `tbl_custom_type` VALUES (90, '国家政策', '正常', 'p05'); +INSERT INTO `tbl_custom_type` VALUES (91, '集团规章', '正常', 'p05'); +INSERT INTO `tbl_custom_type` VALUES (92, '员工守则', '正常', 'p05'); +INSERT INTO `tbl_custom_type` VALUES (93, '岗位规范', '正常', 'p05'); +INSERT INTO `tbl_custom_type` VALUES (94, '山西省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (95, '湖南省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (96, '甘肃省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (97, '云南省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (98, '四川省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (99, '广东省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (100, '江西省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (101, '江苏省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (102, '河北省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (103, '河南省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (104, '吉林省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (105, '辽宁省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (106, '黑龙江省', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (107, '内蒙古自治区', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (108, '新疆维吾尔自治区', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (109, '宁夏回族自治区', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (110, '广西壮族自治区', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (111, '西藏自治区', '正常', 'g02'); +INSERT INTO `tbl_custom_type` VALUES (112, '济南市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (113, '太原市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (114, '石家庄市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (115, '长春市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (116, '呼和浩特市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (117, '拉萨市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (118, '南宁市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (119, '福州市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (120, '哈尔滨市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (121, '沈阳市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (122, '乌鲁木齐市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (123, '广州市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (124, '海口市', '正常', 'g03'); +INSERT INTO `tbl_custom_type` VALUES (125, '文员', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (126, '季度最佳库存供应商', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (127, '季度最差库存供应商', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (128, '每月最佳送货服务供应商', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (129, '每月最差送货服务供应商', '正常', 'g01'); +INSERT INTO `tbl_custom_type` VALUES (130, '财务预算计划', '正常', 'o02'); +INSERT INTO `tbl_custom_type` VALUES (131, '个人工作目标计划', '正常', 'o02'); +INSERT INTO `tbl_custom_type` VALUES (132, '会员积分计划', '正常', 'o02'); +INSERT INTO `tbl_custom_type` VALUES (133, '店庆酬宾计划', '正常', 'o02'); +INSERT INTO `tbl_custom_type` VALUES (134, '服务业', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (135, '普通会员', '正常', 'v06'); +INSERT INTO `tbl_custom_type` VALUES (136, 'VIP会员', '正常', 'v06'); +INSERT INTO `tbl_custom_type` VALUES (137, '钻石会员', '正常', 'v06'); +INSERT INTO `tbl_custom_type` VALUES (138, '九五折', '正常', 'v05'); +INSERT INTO `tbl_custom_type` VALUES (139, '九折', '正常', 'v05'); +INSERT INTO `tbl_custom_type` VALUES (140, '八折', '正常', 'v05'); +INSERT INTO `tbl_custom_type` VALUES (141, '一楼', '正常', 'g05'); +INSERT INTO `tbl_custom_type` VALUES (142, '二楼', '正常', 'g05'); +INSERT INTO `tbl_custom_type` VALUES (143, '三楼', '正常', 'g05'); +INSERT INTO `tbl_custom_type` VALUES (144, '负一楼', '正常', 'g05'); +INSERT INTO `tbl_custom_type` VALUES (145, '负二楼', '正常', 'g05'); +INSERT INTO `tbl_custom_type` VALUES (146, '汉族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (147, '满族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (148, '藏族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (149, '回族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (150, '壮族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (151, '维吾尔族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (152, '朝鲜族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (153, '蒙古族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (154, '白族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (155, '傣族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (156, '高山族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (157, '苗族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (158, '怒族', '正常', 'p13'); +INSERT INTO `tbl_custom_type` VALUES (159, '部门总监', '正常', 'p06'); +INSERT INTO `tbl_custom_type` VALUES (160, '生鲜水产_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (161, '医药保健品_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (162, '家电数码_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (163, '工艺品_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (164, '散装食品_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (165, '图书玩具_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (166, '床上用品_柜台', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (167, '其它', '正常', 'g11'); +INSERT INTO `tbl_custom_type` VALUES (168, '电子秤', '正常', 'g10'); +INSERT INTO `tbl_custom_type` VALUES (169, '其它', '正常', 'g10'); +INSERT INTO `tbl_custom_type` VALUES (170, '客服部门', '正常', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (171, '销售部门', '正常', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (172, '银行电汇', '正常', 'g06'); +INSERT INTO `tbl_custom_type` VALUES (173, '转帐支票', '正常', 'g06'); +INSERT INTO `tbl_custom_type` VALUES (174, '发票', '正常', 'g06'); +INSERT INTO `tbl_custom_type` VALUES (175, '邮局汇款', '正常', 'g06'); +INSERT INTO `tbl_custom_type` VALUES (176, '小学', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (177, '初中', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (178, '高中', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (179, '中专', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (180, '大学专科', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (181, '大学本科', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (182, '研究生', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (183, '硕士', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (184, '博士', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (185, '学士', '正常', 'v03'); +INSERT INTO `tbl_custom_type` VALUES (186, '金卡会员回访计划', '正常', 'v02'); +INSERT INTO `tbl_custom_type` VALUES (187, '企业会员营销计划', '正常', 'v02'); +INSERT INTO `tbl_custom_type` VALUES (188, '节假日关怀计划', '正常', 'v02'); +INSERT INTO `tbl_custom_type` VALUES (189, '其它关怀计划', '正常', 'v02'); +INSERT INTO `tbl_custom_type` VALUES (190, '较好', '正常', 'v04'); +INSERT INTO `tbl_custom_type` VALUES (191, '好', '正常', 'v04'); +INSERT INTO `tbl_custom_type` VALUES (192, '一般', '正常', 'v04'); +INSERT INTO `tbl_custom_type` VALUES (193, '差', '正常', 'v04'); +INSERT INTO `tbl_custom_type` VALUES (194, '较差', '正常', 'v04'); +INSERT INTO `tbl_custom_type` VALUES (195, '投诉', '正常', 'v01'); +INSERT INTO `tbl_custom_type` VALUES (196, '表扬', '正常', 'v01'); +INSERT INTO `tbl_custom_type` VALUES (197, '建议', '正常', 'v01'); +INSERT INTO `tbl_custom_type` VALUES (198, '其它', '正常', 'v01'); +INSERT INTO `tbl_custom_type` VALUES (199, '生日类', '正常', 'p04'); +INSERT INTO `tbl_custom_type` VALUES (200, '北京', '正常', 'p09'); +INSERT INTO `tbl_custom_type` VALUES (201, '天津', '正常', 'p09'); +INSERT INTO `tbl_custom_type` VALUES (202, '沈阳', '正常', 'p09'); +INSERT INTO `tbl_custom_type` VALUES (203, '本溪', '正常', 'p09'); +INSERT INTO `tbl_custom_type` VALUES (204, '浙江', '正常', 'p09'); +INSERT INTO `tbl_custom_type` VALUES (205, '杭州', '正常', 'p09'); +INSERT INTO `tbl_custom_type` VALUES (206, '苏州', '正常', 'p09'); +INSERT INTO `tbl_custom_type` VALUES (207, '济南', '正常', 'p09'); +INSERT INTO `tbl_custom_type` VALUES (208, 'IBM', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (209, 'HP', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (210, 'DELL', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (211, '联想', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (212, '光明', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (213, '三元', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (214, '金得利', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (215, '大庆', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (216, '生产商', '正常', 'p10'); +INSERT INTO `tbl_custom_type` VALUES (217, '代理商', '正常', 'p10'); +INSERT INTO `tbl_custom_type` VALUES (218, '零件', '正常', 'p10'); +INSERT INTO `tbl_custom_type` VALUES (219, '工程图纸类', '正常', 'f08'); +INSERT INTO `tbl_custom_type` VALUES (220, '工程线路类', '正常', 'f08'); +INSERT INTO `tbl_custom_type` VALUES (221, '消防设施类', '正常', 'f08'); +INSERT INTO `tbl_custom_type` VALUES (222, '其它工程类', '正常', 'f08'); +INSERT INTO `tbl_custom_type` VALUES (223, '个人月度计划', '正常', 'o02'); +INSERT INTO `tbl_custom_type` VALUES (224, 'B类-贵宾', '正常', 'f01'); +INSERT INTO `tbl_custom_type` VALUES (225, 'C类-免缴费', '正常', 'f01'); +INSERT INTO `tbl_custom_type` VALUES (226, 'D类-自用', '正常', 'f01'); +INSERT INTO `tbl_custom_type` VALUES (227, 'E类-其它', '正常', 'f01'); +INSERT INTO `tbl_custom_type` VALUES (228, '产品展示', '正常', 'f15'); +INSERT INTO `tbl_custom_type` VALUES (229, '客户谈判', '正常', 'f15'); +INSERT INTO `tbl_custom_type` VALUES (230, '货物仓储', '正常', 'f15'); +INSERT INTO `tbl_custom_type` VALUES (231, 'E1-东1区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (232, 'E2-东2区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (233, 'W1-西1区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (234, 'W2-西2区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (235, 'S1-南1区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (236, 'S2-南2区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (237, 'N1-北1区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (238, 'N2-北2区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (239, 'C1-中心1区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (240, 'C2-中心2区', '正常', 'f09'); +INSERT INTO `tbl_custom_type` VALUES (241, '国际品牌租户 ', '正常', 'f16'); +INSERT INTO `tbl_custom_type` VALUES (242, '国内品牌租户', '正常', 'f16'); +INSERT INTO `tbl_custom_type` VALUES (243, '本土品牌租户', '正常', 'f16'); +INSERT INTO `tbl_custom_type` VALUES (244, '中小企业租户', '正常', 'f16'); +INSERT INTO `tbl_custom_type` VALUES (245, '个人租户', '正常', 'f16'); +INSERT INTO `tbl_custom_type` VALUES (246, '身份证', '正常', 'p07'); +INSERT INTO `tbl_custom_type` VALUES (247, '驾驶证 ', '正常', 'p07'); +INSERT INTO `tbl_custom_type` VALUES (248, '营业执照', '正常', 'p07'); +INSERT INTO `tbl_custom_type` VALUES (249, '服装', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (250, '鞋类', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (251, '箱包 ', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (252, '文具', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (253, '珠宝首饰', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (254, '电脑数码', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (255, '玩具', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (256, '食品', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (257, '加工服务', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (258, '其它', '正常', 'f14'); +INSERT INTO `tbl_custom_type` VALUES (259, '常规部门', '正常', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (260, '一般任务', '正常', 'o03'); +INSERT INTO `tbl_custom_type` VALUES (261, '特殊任务', '正常', 'o03'); +INSERT INTO `tbl_custom_type` VALUES (262, '临时任务', '正常', 'o03'); +INSERT INTO `tbl_custom_type` VALUES (263, '居住', '正常', 'f04'); +INSERT INTO `tbl_custom_type` VALUES (264, '商铺', '正常', 'f04'); +INSERT INTO `tbl_custom_type` VALUES (265, '店面', '正常', 'f04'); +INSERT INTO `tbl_custom_type` VALUES (266, '库房', '正常', 'f04'); +INSERT INTO `tbl_custom_type` VALUES (267, '水泥结构', '正常', 'f06'); +INSERT INTO `tbl_custom_type` VALUES (268, '钢筋结构', '正常', 'f06'); +INSERT INTO `tbl_custom_type` VALUES (269, '砖结构', '正常', 'f06'); +INSERT INTO `tbl_custom_type` VALUES (270, '木结构', '正常', 'f06'); +INSERT INTO `tbl_custom_type` VALUES (271, '简装', '正常', 'f17'); +INSERT INTO `tbl_custom_type` VALUES (272, '精装', '正常', 'f17'); +INSERT INTO `tbl_custom_type` VALUES (273, '豪华', '正常', 'f17'); +INSERT INTO `tbl_custom_type` VALUES (274, '尚未完工', '正常', 'f12'); +INSERT INTO `tbl_custom_type` VALUES (275, '刚刚完工', '正常', 'f12'); +INSERT INTO `tbl_custom_type` VALUES (276, '通过验收', '正常', 'f12'); +INSERT INTO `tbl_custom_type` VALUES (277, '二室一厅', '正常', 'f05'); +INSERT INTO `tbl_custom_type` VALUES (278, '三室一厅', '正常', 'f05'); +INSERT INTO `tbl_custom_type` VALUES (279, '二室二厅', '正常', 'f05'); +INSERT INTO `tbl_custom_type` VALUES (280, '三室二厅', '正常', 'f05'); +INSERT INTO `tbl_custom_type` VALUES (281, '一室一厅', '正常', 'f05'); +INSERT INTO `tbl_custom_type` VALUES (282, '坐西朝东', '正常', 'f03'); +INSERT INTO `tbl_custom_type` VALUES (283, '坐北朝南', '正常', 'f03'); +INSERT INTO `tbl_custom_type` VALUES (284, '坐南朝北', '正常', 'f03'); +INSERT INTO `tbl_custom_type` VALUES (285, '物业问题', '正常', 'f10'); +INSERT INTO `tbl_custom_type` VALUES (286, '收费问题', '正常', 'f10'); +INSERT INTO `tbl_custom_type` VALUES (287, '卫生问题', '正常', 'f10'); +INSERT INTO `tbl_custom_type` VALUES (288, '安全问题', '正常', 'f10'); +INSERT INTO `tbl_custom_type` VALUES (289, '标准车位', '正常', 'f02'); +INSERT INTO `tbl_custom_type` VALUES (290, '大型车位', '正常', 'f02'); +INSERT INTO `tbl_custom_type` VALUES (291, 'A类-标准', '正常', 'f01'); +INSERT INTO `tbl_custom_type` VALUES (292, '一室一卫', '正常', 'f05'); +INSERT INTO `tbl_custom_type` VALUES (293, '独立开间', '正常', 'f05'); +INSERT INTO `tbl_custom_type` VALUES (294, '货物配送', '正常', 'f15'); +INSERT INTO `tbl_custom_type` VALUES (295, '商住综合', '正常', 'f04'); +INSERT INTO `tbl_custom_type` VALUES (296, '小型车位', '正常', 'f02'); +INSERT INTO `tbl_custom_type` VALUES (297, '特殊车位', '正常', 'f02'); +INSERT INTO `tbl_custom_type` VALUES (298, '物业收费', '正常', 'b01'); +INSERT INTO `tbl_custom_type` VALUES (299, '采暖相关', '正常', 'b01'); +INSERT INTO `tbl_custom_type` VALUES (300, '环境相产', '正常', 'b01'); +INSERT INTO `tbl_custom_type` VALUES (301, '意见建议', '正常', 'b01'); +INSERT INTO `tbl_custom_type` VALUES (302, '业务合作', '正常', 'b01'); +INSERT INTO `tbl_custom_type` VALUES (303, '其他信息', '正常', 'b01'); +INSERT INTO `tbl_custom_type` VALUES (304, '物业服务指南', '正常', 'p05'); +INSERT INTO `tbl_custom_type` VALUES (305, '装修申请指南', '正常', 'p05'); +INSERT INTO `tbl_custom_type` VALUES (306, '业主通知', '正常', 'p02'); +INSERT INTO `tbl_custom_type` VALUES (307, '其他公告', '正常', 'p02'); +INSERT INTO `tbl_custom_type` VALUES (308, '建筑图纸', '正常', 'f11'); +INSERT INTO `tbl_custom_type` VALUES (309, '工程图纸', '正常', 'f11'); +INSERT INTO `tbl_custom_type` VALUES (310, '其它图纸', '正常', 'f11'); +INSERT INTO `tbl_custom_type` VALUES (311, '窗户', '正常', 'f13'); +INSERT INTO `tbl_custom_type` VALUES (312, '窗台', '正常', 'f13'); +INSERT INTO `tbl_custom_type` VALUES (313, '地板', '正常', 'f13'); +INSERT INTO `tbl_custom_type` VALUES (314, '墙面', '正常', 'f13'); +INSERT INTO `tbl_custom_type` VALUES (315, '天花板', '正常', 'f13'); +INSERT INTO `tbl_custom_type` VALUES (316, '一次性', '正常', 'f07'); +INSERT INTO `tbl_custom_type` VALUES (317, '按日', '正常', 'f07'); +INSERT INTO `tbl_custom_type` VALUES (318, '按周', '正常', 'f07'); +INSERT INTO `tbl_custom_type` VALUES (319, '按月', '正常', 'f07'); +INSERT INTO `tbl_custom_type` VALUES (320, '按季', '正常', 'f07'); +INSERT INTO `tbl_custom_type` VALUES (321, '按半年', '正常', 'f07'); +INSERT INTO `tbl_custom_type` VALUES (322, '按年', '正常', 'f07'); +INSERT INTO `tbl_custom_type` VALUES (323, '其它', '正常', 'f07'); +INSERT INTO `tbl_custom_type` VALUES (324, '购入', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (325, '有偿调入', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (326, '无偿调入', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (327, '接受投资', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (328, '接受捐赠', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (329, '融资租入', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (330, '盘盈', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (331, '自行建造', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (332, '改建扩建', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (333, '其他', '正常', 'e03'); +INSERT INTO `tbl_custom_type` VALUES (334, '过期', '正常', 'e01'); +INSERT INTO `tbl_custom_type` VALUES (335, '损坏', '正常', 'e01'); +INSERT INTO `tbl_custom_type` VALUES (336, '丢失', '正常', 'e01'); +INSERT INTO `tbl_custom_type` VALUES (337, '捐赠', '正常', 'e01'); +INSERT INTO `tbl_custom_type` VALUES (338, '公司自用', '正常', 'e04'); +INSERT INTO `tbl_custom_type` VALUES (339, '对外租用', '正常', 'e04'); +INSERT INTO `tbl_custom_type` VALUES (340, '其它用途', '正常', 'e04'); +INSERT INTO `tbl_custom_type` VALUES (341, '在用', '正常', 'e02'); +INSERT INTO `tbl_custom_type` VALUES (342, '未使用', '正常', 'e02'); +INSERT INTO `tbl_custom_type` VALUES (343, '不需用', '正常', 'e02'); +INSERT INTO `tbl_custom_type` VALUES (344, '毁坏不能用', '正常', 'e02'); +INSERT INTO `tbl_custom_type` VALUES (345, '危房不能用', '正常', 'e02'); +INSERT INTO `tbl_custom_type` VALUES (346, '其它', '正常', 'e02'); +INSERT INTO `tbl_custom_type` VALUES (347, '政府', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (348, '金融业', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (349, '教育', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (350, '其它', '正常', 'p11'); +INSERT INTO `tbl_custom_type` VALUES (351, '小学', '正常', 'p12'); +INSERT INTO `tbl_custom_type` VALUES (352, '初中', '正常', 'p12'); +INSERT INTO `tbl_custom_type` VALUES (353, '高中', '正常', 'p12'); +INSERT INTO `tbl_custom_type` VALUES (354, '中专', '正常', 'p12'); +INSERT INTO `tbl_custom_type` VALUES (355, '大专', '正常', 'p12'); +INSERT INTO `tbl_custom_type` VALUES (356, '本科', '正常', 'p12'); +INSERT INTO `tbl_custom_type` VALUES (357, '硕士', '正常', 'p12'); +INSERT INTO `tbl_custom_type` VALUES (358, '博士', '正常', 'p12'); +INSERT INTO `tbl_custom_type` VALUES (359, '保育费类', '正常', 'k01'); +INSERT INTO `tbl_custom_type` VALUES (360, '本市户口', '正常', 'k02'); +INSERT INTO `tbl_custom_type` VALUES (361, '本省户口', '正常', 'k02'); +INSERT INTO `tbl_custom_type` VALUES (362, '外省户口', '正常', 'k02'); +INSERT INTO `tbl_custom_type` VALUES (363, '外籍户口', '正常', 'k02'); +INSERT INTO `tbl_custom_type` VALUES (364, '托班', '正常', 'k03'); +INSERT INTO `tbl_custom_type` VALUES (365, '小班', '正常', 'k03'); +INSERT INTO `tbl_custom_type` VALUES (366, '中班', '正常', 'k03'); +INSERT INTO `tbl_custom_type` VALUES (367, '大班', '正常', 'k03'); +INSERT INTO `tbl_custom_type` VALUES (368, '离园班', '正常', 'k03'); +INSERT INTO `tbl_custom_type` VALUES (369, '白托5天制', '正常', 'k04'); +INSERT INTO `tbl_custom_type` VALUES (370, '唱歌', '正常', 'k06'); +INSERT INTO `tbl_custom_type` VALUES (371, '跳舞', '正常', 'k06'); +INSERT INTO `tbl_custom_type` VALUES (372, '弹琴', '正常', 'k06'); +INSERT INTO `tbl_custom_type` VALUES (373, '书法', '正常', 'k06'); +INSERT INTO `tbl_custom_type` VALUES (374, '魔术', '正常', 'k06'); +INSERT INTO `tbl_custom_type` VALUES (375, '讲故事', '正常', 'k06'); +INSERT INTO `tbl_custom_type` VALUES (376, '伙食费类', '正常', 'k01'); +INSERT INTO `tbl_custom_type` VALUES (377, '父亲', '正常', 'k05'); +INSERT INTO `tbl_custom_type` VALUES (378, '母亲', '正常', 'k05'); +INSERT INTO `tbl_custom_type` VALUES (379, '爷爷', '正常', 'k05'); +INSERT INTO `tbl_custom_type` VALUES (380, '奶奶', '正常', 'k05'); +INSERT INTO `tbl_custom_type` VALUES (381, '姥爷', '正常', 'k05'); +INSERT INTO `tbl_custom_type` VALUES (382, '姥姥', '正常', 'k05'); +INSERT INTO `tbl_custom_type` VALUES (383, '其它', '正常', 'k05'); +INSERT INTO `tbl_custom_type` VALUES (384, '东峰', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (385, '其它', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (386, '短期培训班', '正常', 'k01'); +INSERT INTO `tbl_custom_type` VALUES (387, '代收代缴', '正常', 'k01'); +INSERT INTO `tbl_custom_type` VALUES (388, '其他杂费', '正常', 'k01'); +INSERT INTO `tbl_custom_type` VALUES (389, '产品问题', '正常', 'c19'); +INSERT INTO `tbl_custom_type` VALUES (390, '服务问题', '正常', 'c19'); +INSERT INTO `tbl_custom_type` VALUES (391, '商务问题', '正常', 'c19'); +INSERT INTO `tbl_custom_type` VALUES (392, '技术问题', '正常', 'c19'); +INSERT INTO `tbl_custom_type` VALUES (393, '大宗采购', '正常', 'c16'); +INSERT INTO `tbl_custom_type` VALUES (394, '零星采购', '正常', 'c16'); +INSERT INTO `tbl_custom_type` VALUES (395, '电话', '正常', 'c08'); +INSERT INTO `tbl_custom_type` VALUES (396, '上门', '正常', 'c08'); +INSERT INTO `tbl_custom_type` VALUES (397, '来访接待', '正常', 'c08'); +INSERT INTO `tbl_custom_type` VALUES (398, '会议', '正常', 'c08'); +INSERT INTO `tbl_custom_type` VALUES (399, '培训', '正常', 'c08'); +INSERT INTO `tbl_custom_type` VALUES (400, '商务餐饮', '正常', 'c08'); +INSERT INTO `tbl_custom_type` VALUES (401, '外出活动', '正常', 'c08'); +INSERT INTO `tbl_custom_type` VALUES (402, '其他', '正常', 'c08'); +INSERT INTO `tbl_custom_type` VALUES (403, '电话', '正常', 'c22'); +INSERT INTO `tbl_custom_type` VALUES (404, '传真', '正常', 'c22'); +INSERT INTO `tbl_custom_type` VALUES (405, '邮寄', '正常', 'c22'); +INSERT INTO `tbl_custom_type` VALUES (406, '上门', '正常', 'c22'); +INSERT INTO `tbl_custom_type` VALUES (407, '其他', '正常', 'c22'); +INSERT INTO `tbl_custom_type` VALUES (408, '答疑', '正常', 'c21'); +INSERT INTO `tbl_custom_type` VALUES (409, '故障排除', '正常', 'c21'); +INSERT INTO `tbl_custom_type` VALUES (410, '培训', '正常', 'c21'); +INSERT INTO `tbl_custom_type` VALUES (411, '升级', '正常', 'c21'); +INSERT INTO `tbl_custom_type` VALUES (412, '其他', '正常', 'c21'); +INSERT INTO `tbl_custom_type` VALUES (413, '支票', '正常', 'c14'); +INSERT INTO `tbl_custom_type` VALUES (414, '现金', '正常', 'c14'); +INSERT INTO `tbl_custom_type` VALUES (415, '邮政汇款', '正常', 'c14'); +INSERT INTO `tbl_custom_type` VALUES (416, '电汇', '正常', 'c14'); +INSERT INTO `tbl_custom_type` VALUES (417, '网上银行', '正常', 'c14'); +INSERT INTO `tbl_custom_type` VALUES (418, '其他', '正常', 'c14'); +INSERT INTO `tbl_custom_type` VALUES (419, '高', '正常', 'c25'); +INSERT INTO `tbl_custom_type` VALUES (420, '中', '正常', 'c25'); +INSERT INTO `tbl_custom_type` VALUES (421, '低', '正常', 'c25'); +INSERT INTO `tbl_custom_type` VALUES (422, '电视媒体', '正常', 'c24'); +INSERT INTO `tbl_custom_type` VALUES (423, '报刊杂志', '正常', 'c24'); +INSERT INTO `tbl_custom_type` VALUES (424, '户外广告', '正常', 'c24'); +INSERT INTO `tbl_custom_type` VALUES (425, '网络媒体', '正常', 'c24'); +INSERT INTO `tbl_custom_type` VALUES (426, '广播媒体', '正常', 'c24'); +INSERT INTO `tbl_custom_type` VALUES (427, '产品销售', '正常', 'c15'); +INSERT INTO `tbl_custom_type` VALUES (428, '服务', '正常', 'c15'); +INSERT INTO `tbl_custom_type` VALUES (429, '业务合作', '正常', 'c15'); +INSERT INTO `tbl_custom_type` VALUES (430, '代理分销', '正常', 'c15'); +INSERT INTO `tbl_custom_type` VALUES (431, '其他', '正常', 'c15'); +INSERT INTO `tbl_custom_type` VALUES (432, '新客户付款', '正常', 'c17'); +INSERT INTO `tbl_custom_type` VALUES (433, '老客户付款', '正常', 'c17'); +INSERT INTO `tbl_custom_type` VALUES (434, '押金', '正常', 'c17'); +INSERT INTO `tbl_custom_type` VALUES (435, '货款', '正常', 'c17'); +INSERT INTO `tbl_custom_type` VALUES (436, '服务费', '正常', 'c17'); +INSERT INTO `tbl_custom_type` VALUES (437, '电话', '正常', 'c09'); +INSERT INTO `tbl_custom_type` VALUES (438, '上门', '正常', 'c09'); +INSERT INTO `tbl_custom_type` VALUES (439, '来访接待', '正常', 'c09'); +INSERT INTO `tbl_custom_type` VALUES (440, '会议', '正常', 'c09'); +INSERT INTO `tbl_custom_type` VALUES (441, '培训', '正常', 'c09'); +INSERT INTO `tbl_custom_type` VALUES (442, '商务餐饮', '正常', 'c09'); +INSERT INTO `tbl_custom_type` VALUES (443, '外出活动', '正常', 'c09'); +INSERT INTO `tbl_custom_type` VALUES (444, '其他', '正常', 'c09'); +INSERT INTO `tbl_custom_type` VALUES (445, '核心竞争', '正常', 'c12'); +INSERT INTO `tbl_custom_type` VALUES (446, '有力竞争', '正常', 'c12'); +INSERT INTO `tbl_custom_type` VALUES (447, '一般竞争', '正常', 'c12'); +INSERT INTO `tbl_custom_type` VALUES (448, '忽略竞争', '正常', 'c12'); +INSERT INTO `tbl_custom_type` VALUES (449, '电话关怀', '正常', 'c07'); +INSERT INTO `tbl_custom_type` VALUES (450, '上门关怀', '正常', 'c07'); +INSERT INTO `tbl_custom_type` VALUES (451, '密切', '正常', 'c02'); +INSERT INTO `tbl_custom_type` VALUES (452, '较好', '正常', 'c02'); +INSERT INTO `tbl_custom_type` VALUES (453, '一般', '正常', 'c02'); +INSERT INTO `tbl_custom_type` VALUES (454, '较差', '正常', 'c02'); +INSERT INTO `tbl_custom_type` VALUES (455, '售前跟踪', '正常', 'c05'); +INSERT INTO `tbl_custom_type` VALUES (456, '合同执行', '正常', 'c05'); +INSERT INTO `tbl_custom_type` VALUES (457, '售后服务', '正常', 'c05'); +INSERT INTO `tbl_custom_type` VALUES (458, '合同期满', '正常', 'c05'); +INSERT INTO `tbl_custom_type` VALUES (459, '意外终止', '正常', 'c05'); +INSERT INTO `tbl_custom_type` VALUES (460, '电话来访', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (461, '客户介绍', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (462, '独立开发', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (463, '媒体宣传', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (464, '促销活动', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (465, '老客户', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (466, '代理商', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (467, '合作伙伴', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (468, '公开招标', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (469, '互联网', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (470, '其他', '正常', 'c04'); +INSERT INTO `tbl_custom_type` VALUES (471, '10人以内', '正常', 'c03'); +INSERT INTO `tbl_custom_type` VALUES (472, '10-20人', '正常', 'c03'); +INSERT INTO `tbl_custom_type` VALUES (473, '20-50人', '正常', 'c03'); +INSERT INTO `tbl_custom_type` VALUES (474, '50-200人', '正常', 'c03'); +INSERT INTO `tbl_custom_type` VALUES (475, '200人以上', '正常', 'c03'); +INSERT INTO `tbl_custom_type` VALUES (476, '普通', '正常', 'c01'); +INSERT INTO `tbl_custom_type` VALUES (477, '潜在', '正常', 'c01'); +INSERT INTO `tbl_custom_type` VALUES (478, 'VIP', '正常', 'c01'); +INSERT INTO `tbl_custom_type` VALUES (479, '失效', '正常', 'c01'); +INSERT INTO `tbl_custom_type` VALUES (480, '特别重要', '正常', 'c06'); +INSERT INTO `tbl_custom_type` VALUES (481, '重要', '正常', 'c06'); +INSERT INTO `tbl_custom_type` VALUES (482, '普通', '正常', 'c06'); +INSERT INTO `tbl_custom_type` VALUES (483, '不重要', '正常', 'c06'); +INSERT INTO `tbl_custom_type` VALUES (484, '失效', '正常', 'c06'); +INSERT INTO `tbl_custom_type` VALUES (485, '增值', '正常', 'c18'); +INSERT INTO `tbl_custom_type` VALUES (486, '普通国税', '正常', 'c18'); +INSERT INTO `tbl_custom_type` VALUES (487, '普通地税', '正常', 'c18'); +INSERT INTO `tbl_custom_type` VALUES (488, '收据', '正常', 'c18'); +INSERT INTO `tbl_custom_type` VALUES (489, '促销活动', '正常', 'c23'); +INSERT INTO `tbl_custom_type` VALUES (490, '网络搜索引擎', '正常', 'c23'); +INSERT INTO `tbl_custom_type` VALUES (491, '广告/邮寄信函/简讯', '正常', 'c23'); +INSERT INTO `tbl_custom_type` VALUES (492, '研讨会/活动/展览', '正常', 'c23'); +INSERT INTO `tbl_custom_type` VALUES (493, '市场宣传资料/录音/录像/光盘', '正常', 'c23'); +INSERT INTO `tbl_custom_type` VALUES (494, '技术训练', '正常', 'c23'); +INSERT INTO `tbl_custom_type` VALUES (495, '销售训练', '正常', 'c23'); +INSERT INTO `tbl_custom_type` VALUES (496, '其他', '正常', 'c23'); +INSERT INTO `tbl_custom_type` VALUES (497, '产品投诉', '正常', 'c20'); +INSERT INTO `tbl_custom_type` VALUES (498, '服务投诉', '正常', 'c20'); +INSERT INTO `tbl_custom_type` VALUES (499, '客户意见', '正常', 'c20'); +INSERT INTO `tbl_custom_type` VALUES (500, '其他', '正常', 'c20'); +INSERT INTO `tbl_custom_type` VALUES (501, '饮餐', '正常', 'c13'); +INSERT INTO `tbl_custom_type` VALUES (502, '交通', '正常', 'c13'); +INSERT INTO `tbl_custom_type` VALUES (503, '通讯', '正常', 'c13'); +INSERT INTO `tbl_custom_type` VALUES (504, '礼品', '正常', 'c13'); +INSERT INTO `tbl_custom_type` VALUES (505, '办公', '正常', 'c13'); +INSERT INTO `tbl_custom_type` VALUES (506, '活动', '正常', 'c13'); +INSERT INTO `tbl_custom_type` VALUES (507, '其他', '正常', 'c13'); +INSERT INTO `tbl_custom_type` VALUES (508, '初期沟通', '正常', 'c11'); +INSERT INTO `tbl_custom_type` VALUES (509, '立项评估', '正常', 'c11'); +INSERT INTO `tbl_custom_type` VALUES (510, '需求分析', '正常', 'c11'); +INSERT INTO `tbl_custom_type` VALUES (511, '方案制定', '正常', 'c11'); +INSERT INTO `tbl_custom_type` VALUES (512, '招投标/竞争', '正常', 'c11'); +INSERT INTO `tbl_custom_type` VALUES (513, '商务谈判', '正常', 'c11'); +INSERT INTO `tbl_custom_type` VALUES (514, '合同签约', '正常', 'c11'); +INSERT INTO `tbl_custom_type` VALUES (515, '电话来访', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (516, '客户介绍', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (517, '独立开发', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (518, '媒体宣传', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (519, '促销活动', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (520, '老客户', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (521, '合作伙伴', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (522, '公开招标', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (523, '互联网', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (524, '其他', '正常', 'c10'); +INSERT INTO `tbl_custom_type` VALUES (525, '出库', '正常', 'c27'); +INSERT INTO `tbl_custom_type` VALUES (526, '退还', '正常', 'c27'); +INSERT INTO `tbl_custom_type` VALUES (527, '进货', '正常', 'c26'); +INSERT INTO `tbl_custom_type` VALUES (528, '退货', '正常', 'c26'); +INSERT INTO `tbl_custom_type` VALUES (529, '借入', '正常', 'c26'); +INSERT INTO `tbl_custom_type` VALUES (530, '整机', '正常', 'p10'); +INSERT INTO `tbl_custom_type` VALUES (531, '其他', '正常', 'p10'); +INSERT INTO `tbl_custom_type` VALUES (532, '绝密', '正常', 'o04'); +INSERT INTO `tbl_custom_type` VALUES (533, '机密', '正常', 'o04'); +INSERT INTO `tbl_custom_type` VALUES (534, '秘密', '正常', 'o04'); +INSERT INTO `tbl_custom_type` VALUES (535, 'A类', '正常', 'o05'); +INSERT INTO `tbl_custom_type` VALUES (536, 'B类', '正常', 'o05'); +INSERT INTO `tbl_custom_type` VALUES (537, 'C类', '正常', 'o05'); +INSERT INTO `tbl_custom_type` VALUES (538, 'D类', '正常', 'o05'); +INSERT INTO `tbl_custom_type` VALUES (539, '行政公文', '正常', 'o09'); +INSERT INTO `tbl_custom_type` VALUES (540, '内部公文', '正常', 'o09'); +INSERT INTO `tbl_custom_type` VALUES (541, '省级公文', '正常', 'o09'); +INSERT INTO `tbl_custom_type` VALUES (542, '其它公文', '正常', 'o09'); +INSERT INTO `tbl_custom_type` VALUES (543, 'A1类', '正常', 'o08'); +INSERT INTO `tbl_custom_type` VALUES (544, 'B1类', '正常', 'o08'); +INSERT INTO `tbl_custom_type` VALUES (545, 'C1类', '正常', 'o08'); +INSERT INTO `tbl_custom_type` VALUES (546, '高', '正常', 'o06'); +INSERT INTO `tbl_custom_type` VALUES (547, '低', '正常', 'o06'); +INSERT INTO `tbl_custom_type` VALUES (548, '紧急', '正常', 'o07'); +INSERT INTO `tbl_custom_type` VALUES (549, '一般', '正常', 'o07'); +INSERT INTO `tbl_custom_type` VALUES (550, '公产', '正常', 'f18'); +INSERT INTO `tbl_custom_type` VALUES (551, '私产', '正常', 'f18'); +INSERT INTO `tbl_custom_type` VALUES (552, '半公产半私产', '正常', 'f18'); +INSERT INTO `tbl_custom_type` VALUES (553, '教学费类', '正常', 'k01'); +INSERT INTO `tbl_custom_type` VALUES (554, '兴趣班类', '正常', 'k01'); +INSERT INTO `tbl_custom_type` VALUES (555, '启蒙A班', '正常', 'k07'); +INSERT INTO `tbl_custom_type` VALUES (556, '启蒙B班', '正常', 'k07'); +INSERT INTO `tbl_custom_type` VALUES (557, '音乐A班', '正常', 'k07'); +INSERT INTO `tbl_custom_type` VALUES (558, '音乐B班', '正常', 'k07'); +INSERT INTO `tbl_custom_type` VALUES (559, '手工A班', '正常', 'k07'); +INSERT INTO `tbl_custom_type` VALUES (560, '手工B班', '正常', 'k07'); +INSERT INTO `tbl_custom_type` VALUES (561, '艺术A班', '正常', 'k07'); +INSERT INTO `tbl_custom_type` VALUES (562, '艺术B班', '正常', 'k07'); +INSERT INTO `tbl_custom_type` VALUES (563, '因家庭原因', '正常', 'k08'); +INSERT INTO `tbl_custom_type` VALUES (564, '对园所不满意', '正常', 'k08'); +INSERT INTO `tbl_custom_type` VALUES (565, '转入公立幼儿园', '正常', 'k08'); +INSERT INTO `tbl_custom_type` VALUES (566, '幼儿不适应&经常生病', '正常', 'k08'); +INSERT INTO `tbl_custom_type` VALUES (567, '中南', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (568, '花王', '正常', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (569, '厦门', '正常', 'p09'); +INSERT INTO `tbl_custom_type` VALUES (570, '现金', '正常', 'p15'); +INSERT INTO `tbl_custom_type` VALUES (571, '微信', '正常', 'p15'); +INSERT INTO `tbl_custom_type` VALUES (572, '支付宝', '正常', 'p15'); +INSERT INTO `tbl_custom_type` VALUES (573, '支票', '正常', 'p15'); +INSERT INTO `tbl_custom_type` VALUES (574, '银行卡', '正常', 'p15'); +INSERT INTO `tbl_custom_type` VALUES (575, '银行转帐', '正常', 'p15'); +INSERT INTO `tbl_custom_type` VALUES (576, '其它', '正常', 'p15'); +INSERT INTO `tbl_custom_type` VALUES (577, '经理', '正常', 'h01'); +INSERT INTO `tbl_custom_type` VALUES (578, '主任', '正常', 'h01'); +INSERT INTO `tbl_custom_type` VALUES (579, '科长', '正常', 'h01'); +INSERT INTO `tbl_custom_type` VALUES (580, '总监', '正常', 'h01'); +INSERT INTO `tbl_custom_type` VALUES (581, '外聘', '正常', 'h01'); +INSERT INTO `tbl_custom_type` VALUES (582, '职员', '正常', 'h01'); +INSERT INTO `tbl_custom_type` VALUES (583, '其它', '正常', 'h01'); +INSERT INTO `tbl_custom_type` VALUES (584, '中国工商银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (585, '中国建设银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (586, '中国农业银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (587, '中国邮储银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (588, '中国银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (589, '交通银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (590, '招商银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (591, '中信银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (592, '民生银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (593, '浦发银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (594, '光大银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (595, '华夏银行', '正常', 'p16'); +INSERT INTO `tbl_custom_type` VALUES (596, '网络招聘', '正常', 'h07'); +INSERT INTO `tbl_custom_type` VALUES (597, '招聘会场', '正常', 'h07'); +INSERT INTO `tbl_custom_type` VALUES (598, '员工推荐', '正常', 'h07'); +INSERT INTO `tbl_custom_type` VALUES (599, '内部选拔', '正常', 'h07'); +INSERT INTO `tbl_custom_type` VALUES (600, '北京', '正常', 'h04'); +INSERT INTO `tbl_custom_type` VALUES (601, '上海', '正常', 'h04'); +INSERT INTO `tbl_custom_type` VALUES (602, '广州', '正常', 'h04'); +INSERT INTO `tbl_custom_type` VALUES (603, '深圳', '正常', 'h04'); +INSERT INTO `tbl_custom_type` VALUES (604, '重庆', '正常', 'h04'); +INSERT INTO `tbl_custom_type` VALUES (605, '天津', '正常', 'h04'); +INSERT INTO `tbl_custom_type` VALUES (606, '合同工', '正常', 'h11'); +INSERT INTO `tbl_custom_type` VALUES (607, '临时工', '正常', 'h11'); +INSERT INTO `tbl_custom_type` VALUES (608, '现场', '正常', 'h09'); +INSERT INTO `tbl_custom_type` VALUES (609, '网络', '正常', 'h09'); +INSERT INTO `tbl_custom_type` VALUES (610, '内部商议', '正常', 'h09'); +INSERT INTO `tbl_custom_type` VALUES (611, '现场', '正常', 'h10'); +INSERT INTO `tbl_custom_type` VALUES (612, '网络', '正常', 'h10'); +INSERT INTO `tbl_custom_type` VALUES (613, '电话', '正常', 'h10'); +INSERT INTO `tbl_custom_type` VALUES (614, '其它', '正常', 'h10'); +INSERT INTO `tbl_custom_type` VALUES (615, '党员', '正常', 'h02'); +INSERT INTO `tbl_custom_type` VALUES (616, '团员', '正常', 'h02'); +INSERT INTO `tbl_custom_type` VALUES (617, '群众', '正常', 'h02'); +INSERT INTO `tbl_custom_type` VALUES (618, '网络', '正常', 'h08'); +INSERT INTO `tbl_custom_type` VALUES (619, '招聘会', '正常', 'h08'); +INSERT INTO `tbl_custom_type` VALUES (620, '媒体', '正常', 'h08'); +INSERT INTO `tbl_custom_type` VALUES (621, '处级', '正常', 'h06'); +INSERT INTO `tbl_custom_type` VALUES (622, '科级', '正常', 'h06'); +INSERT INTO `tbl_custom_type` VALUES (623, '部级', '正常', 'h06'); +INSERT INTO `tbl_custom_type` VALUES (624, '工人', '正常', 'h06'); +INSERT INTO `tbl_custom_type` VALUES (625, '初级', '正常', 'h05'); +INSERT INTO `tbl_custom_type` VALUES (626, '中级', '正常', 'h05'); +INSERT INTO `tbl_custom_type` VALUES (627, '高级', '正常', 'h05'); +INSERT INTO `tbl_custom_type` VALUES (628, '初级工程师', '正常', 'h03'); +INSERT INTO `tbl_custom_type` VALUES (629, '中级工程师', '正常', 'h03'); +INSERT INTO `tbl_custom_type` VALUES (630, '高级工程师', '正常', 'h03'); +INSERT INTO `tbl_custom_type` VALUES (631, '助理会计师', '正常', 'h03'); +INSERT INTO `tbl_custom_type` VALUES (632, '会计师', '正常', 'h03'); +INSERT INTO `tbl_custom_type` VALUES (633, '高级会计师', '正常', 'h03'); +INSERT INTO `tbl_custom_type` VALUES (634, '系统分析师', '正常', 'h03'); +INSERT INTO `tbl_custom_type` VALUES (635, '助理分析师', '正常', 'h03'); +INSERT INTO `tbl_custom_type` VALUES (636, '分析员', '正常', 'h03'); +INSERT INTO `tbl_custom_type` VALUES (637, '国家教育部', '正常', 'h13'); +INSERT INTO `tbl_custom_type` VALUES (638, '人力资源和社会保障部', '正常', 'h13'); +INSERT INTO `tbl_custom_type` VALUES (639, '国家信息化协会', '正常', 'h13'); +INSERT INTO `tbl_custom_type` VALUES (640, '职业资格证', '正常', 'p07'); +INSERT INTO `tbl_custom_type` VALUES (641, '护照', '正常', 'p07'); +INSERT INTO `tbl_custom_type` VALUES (642, '公安局', '正常', 'h13'); +INSERT INTO `tbl_custom_type` VALUES (643, '现场考核', '正常', 'h12'); +INSERT INTO `tbl_custom_type` VALUES (644, '网上考核', '正常', 'h12'); +INSERT INTO `tbl_custom_type` VALUES (645, '车辆管理所', '正常', 'h13'); +INSERT INTO `tbl_custom_type` VALUES (646, '车辆管理所', '正常', 'h13'); +INSERT INTO `tbl_custom_type` VALUES (647, '条款变更', '正常', 'h26'); +INSERT INTO `tbl_custom_type` VALUES (648, '联系方式变更', '正常', 'h26'); +INSERT INTO `tbl_custom_type` VALUES (649, '金额变更', '正常', 'h26'); +INSERT INTO `tbl_custom_type` VALUES (650, '联系人变更', '正常', 'h26'); +INSERT INTO `tbl_custom_type` VALUES (651, '其它变更', '正常', 'h26'); +INSERT INTO `tbl_custom_type` VALUES (652, '劳动合同', '正常', 'h22'); +INSERT INTO `tbl_custom_type` VALUES (653, '保密合同', '正常', 'h22'); +INSERT INTO `tbl_custom_type` VALUES (654, '2016年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (655, '2017年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (656, '2018年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (657, '2019年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (658, '2020年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (659, '正常延期', '正常', 'h27'); +INSERT INTO `tbl_custom_type` VALUES (660, '项目延期', '正常', 'h27'); +INSERT INTO `tbl_custom_type` VALUES (661, '短期试用', '正常', 'h28'); +INSERT INTO `tbl_custom_type` VALUES (662, '长期试用', '正常', 'h28'); +INSERT INTO `tbl_custom_type` VALUES (663, '试用到期', '正常', 'h29'); +INSERT INTO `tbl_custom_type` VALUES (664, '提前转正', '正常', 'h29'); +INSERT INTO `tbl_custom_type` VALUES (665, '离职', '正常', 'h23'); +INSERT INTO `tbl_custom_type` VALUES (666, '调岗', '正常', 'h23'); +INSERT INTO `tbl_custom_type` VALUES (667, '复职', '正常', 'h24'); +INSERT INTO `tbl_custom_type` VALUES (668, '其它', '正常', 'h24'); +INSERT INTO `tbl_custom_type` VALUES (669, '晋升', '正常', 'h30'); +INSERT INTO `tbl_custom_type` VALUES (670, '降级', '正常', 'h30'); +INSERT INTO `tbl_custom_type` VALUES (671, '平调', '正常', 'h30'); +INSERT INTO `tbl_custom_type` VALUES (672, '轮岗', '正常', 'h30'); +INSERT INTO `tbl_custom_type` VALUES (673, '工资调整', '正常', 'h30'); +INSERT INTO `tbl_custom_type` VALUES (674, '辞退', '正常', 'h31'); +INSERT INTO `tbl_custom_type` VALUES (675, '外调', '正常', 'h31'); +INSERT INTO `tbl_custom_type` VALUES (676, '退休', '正常', 'h31'); +INSERT INTO `tbl_custom_type` VALUES (677, '死亡', '正常', 'h31'); +INSERT INTO `tbl_custom_type` VALUES (678, '调回', '正常', 'h32'); +INSERT INTO `tbl_custom_type` VALUES (679, '复员', '正常', 'h32'); +INSERT INTO `tbl_custom_type` VALUES (680, '2015年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (681, '2016年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (682, '2017年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (683, '2018年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (684, '讨论', '正常', 'h14'); +INSERT INTO `tbl_custom_type` VALUES (685, '讲座', '正常', 'h14'); +INSERT INTO `tbl_custom_type` VALUES (686, '演练', '正常', 'h14'); +INSERT INTO `tbl_custom_type` VALUES (687, '座谈', '正常', 'h14'); +INSERT INTO `tbl_custom_type` VALUES (688, '内部现场培训', '正常', 'h18'); +INSERT INTO `tbl_custom_type` VALUES (689, '内部网络培训', '正常', 'h18'); +INSERT INTO `tbl_custom_type` VALUES (690, '国内现场培训', '正常', 'h18'); +INSERT INTO `tbl_custom_type` VALUES (691, '国内网络培训', '正常', 'h18'); +INSERT INTO `tbl_custom_type` VALUES (692, '现场', '正常', 'h20'); +INSERT INTO `tbl_custom_type` VALUES (693, '网络', '正常', 'h20'); +INSERT INTO `tbl_custom_type` VALUES (694, '讲座', '正常', 'h15'); +INSERT INTO `tbl_custom_type` VALUES (695, '讨论', '正常', 'h15'); +INSERT INTO `tbl_custom_type` VALUES (696, '企业管理', '正常', 'h19'); +INSERT INTO `tbl_custom_type` VALUES (697, '软件开发', '正常', 'h19'); +INSERT INTO `tbl_custom_type` VALUES (698, '出国咨询', '正常', 'h19'); +INSERT INTO `tbl_custom_type` VALUES (699, '网络营销', '正常', 'h19'); +INSERT INTO `tbl_custom_type` VALUES (700, '卖场陈列', '正常', 'h19'); +INSERT INTO `tbl_custom_type` VALUES (701, '其它课件', '正常', 'h19'); +INSERT INTO `tbl_custom_type` VALUES (702, '2016年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (703, '2017年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (704, '2018年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (705, '2019年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (706, '2020年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (707, '短期协议', '正常', 'h21'); +INSERT INTO `tbl_custom_type` VALUES (708, '长期协议', '正常', 'h21'); +INSERT INTO `tbl_custom_type` VALUES (709, '业务能力', '正常', 'h33'); +INSERT INTO `tbl_custom_type` VALUES (710, '管理能力', '正常', 'h33'); +INSERT INTO `tbl_custom_type` VALUES (711, '技术能力', '正常', 'h33'); +INSERT INTO `tbl_custom_type` VALUES (712, '团队精神', '正常', 'h33'); +INSERT INTO `tbl_custom_type` VALUES (713, '上半年', '正常', 'h34'); +INSERT INTO `tbl_custom_type` VALUES (714, '下半年', '正常', 'h34'); +INSERT INTO `tbl_custom_type` VALUES (715, '一季度', '正常', 'h34'); +INSERT INTO `tbl_custom_type` VALUES (716, '二季度', '正常', 'h34'); +INSERT INTO `tbl_custom_type` VALUES (717, '三季度', '正常', 'h34'); +INSERT INTO `tbl_custom_type` VALUES (718, '四季度', '正常', 'h34'); +INSERT INTO `tbl_custom_type` VALUES (719, '邮件关怀', '正常', 'c07'); +INSERT INTO `tbl_custom_type` VALUES (720, '其它关怀', '正常', 'c07'); +INSERT INTO `tbl_custom_type` VALUES (721, '工程项目', '正常', 'o10'); +INSERT INTO `tbl_custom_type` VALUES (722, '咨询项目', '正常', 'o10'); +INSERT INTO `tbl_custom_type` VALUES (723, 'IT集成项目', '正常', 'o10'); +INSERT INTO `tbl_custom_type` VALUES (724, '低级', '正常', 'o11'); +INSERT INTO `tbl_custom_type` VALUES (725, '中级', '正常', 'o11'); +INSERT INTO `tbl_custom_type` VALUES (726, '高级', '正常', 'o11'); +INSERT INTO `tbl_custom_type` VALUES (727, '报告类', '正常', 'o12'); +INSERT INTO `tbl_custom_type` VALUES (728, '会议类', '正常', 'o12'); +INSERT INTO `tbl_custom_type` VALUES (729, '行政类', '正常', 'o12'); +INSERT INTO `tbl_custom_type` VALUES (730, '启动阶段', '正常', 'o13'); +INSERT INTO `tbl_custom_type` VALUES (731, '调研阶段', '正常', 'o13'); +INSERT INTO `tbl_custom_type` VALUES (732, '设计阶段', '正常', 'o13'); +INSERT INTO `tbl_custom_type` VALUES (733, '开发阶段', '正常', 'o13'); +INSERT INTO `tbl_custom_type` VALUES (734, '实施阶段', '正常', 'o13'); +INSERT INTO `tbl_custom_type` VALUES (735, '验收阶段', '正常', 'o13'); +INSERT INTO `tbl_custom_type` VALUES (736, '人工成本', '正常', 'o14'); +INSERT INTO `tbl_custom_type` VALUES (737, '辅料成本', '正常', 'o14'); +INSERT INTO `tbl_custom_type` VALUES (738, '其它成本', '正常', 'o14'); +INSERT INTO `tbl_custom_type` VALUES (739, '设备', '正常', 'o15'); +INSERT INTO `tbl_custom_type` VALUES (740, '工具', '正常', 'o15'); +INSERT INTO `tbl_custom_type` VALUES (741, '配件', '正常', 'o15'); +INSERT INTO `tbl_custom_type` VALUES (742, '多媒体', '正常', 'o15'); +INSERT INTO `tbl_custom_type` VALUES (743, '差旅', '正常', 'o16'); +INSERT INTO `tbl_custom_type` VALUES (744, '餐饮', '正常', 'o16'); +INSERT INTO `tbl_custom_type` VALUES (745, '通讯', '正常', 'o16'); +INSERT INTO `tbl_custom_type` VALUES (746, '娱乐', '正常', 'o16'); +INSERT INTO `tbl_custom_type` VALUES (747, '其它', '正常', 'o16'); +INSERT INTO `tbl_custom_type` VALUES (748, '设计', '正常', 'o17'); +INSERT INTO `tbl_custom_type` VALUES (749, '制图', '正常', 'o17'); +INSERT INTO `tbl_custom_type` VALUES (750, '报告', '正常', 'o17'); +INSERT INTO `tbl_custom_type` VALUES (751, '翻译', '正常', 'o17'); +INSERT INTO `tbl_custom_type` VALUES (752, '内部转包', '正常', 'o18'); +INSERT INTO `tbl_custom_type` VALUES (753, '合作转包', '正常', 'o18'); +INSERT INTO `tbl_custom_type` VALUES (754, '咨询收入', '正常', 'o14'); +INSERT INTO `tbl_custom_type` VALUES (755, '集成收入', '正常', 'o14'); +INSERT INTO `tbl_custom_type` VALUES (756, '其它收入', '正常', 'o14'); +INSERT INTO `tbl_custom_type` VALUES (757, 'IT硬件库巡检(每周末)', '正常', 'e05'); +INSERT INTO `tbl_custom_type` VALUES (758, '重点资产巡检(每季度)', '正常', 'e05'); +INSERT INTO `tbl_custom_type` VALUES (759, '资产总仓巡检(每年末)', '正常', 'e05'); +INSERT INTO `tbl_custom_type` VALUES (760, '临时抽查巡检', '正常', 'e05'); +INSERT INTO `tbl_custom_type` VALUES (761, '网点机房巡检', '正常', 'e05'); +INSERT INTO `tbl_custom_type` VALUES (762, '其它设备巡检', '正常', 'e05'); +INSERT INTO `tbl_custom_type` VALUES (763, '111', '删除', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (764, '1112', '删除', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (765, '', '删除', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (766, '', '删除', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (767, '', '删除', 'p14'); +INSERT INTO `tbl_custom_type` VALUES (768, '11121313213', '删除', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (769, '222', '删除', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (770, '333', '删除', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (771, '', '删除', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (772, '', '删除', 'p01'); +INSERT INTO `tbl_custom_type` VALUES (773, '园所内部', '正常', 'k09'); +INSERT INTO `tbl_custom_type` VALUES (774, '合作伙伴', '正常', 'k09'); +INSERT INTO `tbl_custom_type` VALUES (775, '幼儿家长', '正常', 'k09'); +INSERT INTO `tbl_custom_type` VALUES (776, '单位员工', '正常', 'k09'); +INSERT INTO `tbl_custom_type` VALUES (777, '其它人员', '正常', 'k09'); +INSERT INTO `tbl_custom_type` VALUES (778, '2021年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (779, '2022年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (780, '2023年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (781, '2024年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (782, '2025年', '正常', 'h25'); +INSERT INTO `tbl_custom_type` VALUES (783, '2021年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (784, '2022年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (785, '2023年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (786, '2024年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (787, '2025年', '正常', 'h16'); +INSERT INTO `tbl_custom_type` VALUES (788, '2019年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (789, '2020年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (790, '2021年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (791, '2022年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (792, '2023年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (793, '2024年', '正常', 'h17'); +INSERT INTO `tbl_custom_type` VALUES (794, '2025年', '正常', 'h17'); + +-- ---------------------------- +-- Table structure for tbl_dashboard +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_dashboard`; +CREATE TABLE `tbl_dashboard` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', + `data_item` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据项', + `more_path` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更多地址', + `privileges` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '权限', + `Status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `belong_product` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属产品', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '仪表盘' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_dashboard +-- ---------------------------- +INSERT INTO `tbl_dashboard` VALUES (1, '年度前10名最常访问的模块(单位:次)', '../../portal/rzcx/rzcx.aspx', '', '正常', 'P'); +INSERT INTO `tbl_dashboard` VALUES (5, '截止目前所欠的物业费(单位:元)', 'bbcx/qfcx.aspx', '', '正常', 'F'); + +-- ---------------------------- +-- Table structure for tbl_date +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_date`; +CREATE TABLE `tbl_date` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `dt` datetime NULL DEFAULT NULL COMMENT '日期', + `weekday` int(11) NULL DEFAULT NULL COMMENT '星期', + `is_work` tinyint(4) NULL DEFAULT NULL COMMENT '是否上班', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '工作日期' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_date +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_db_setting +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_db_setting`; +CREATE TABLE `tbl_db_setting` ( + `db_Url` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '连接地址', + `db_username` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户名', + `db_pwd` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '密码', + `db_lib_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据库名', + `save_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '存放路径', + `save_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '存放名称' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '数据库设置' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_db_setting +-- ---------------------------- +INSERT INTO `tbl_db_setting` VALUES ('localhost', 'root', '123456', 'family_service_platform', 'd:\\dbbak\\', 'localhost'); + +-- ---------------------------- +-- Table structure for tbl_dbbackup +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_dbbackup`; +CREATE TABLE `tbl_dbbackup` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `db_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备份数据库名', + `db_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备份路径', + `operate_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人id', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人姓名', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '数据库备份' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_dbbackup +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_dbrecovery +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_dbrecovery`; +CREATE TABLE `tbl_dbrecovery` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `db_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '还原数据库名', + `db_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '还原路径', + `operate_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人id', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人姓名', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '数据库还原' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_dbrecovery +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_dbsource +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_dbsource`; +CREATE TABLE `tbl_dbsource` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `source_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称', + `source_desc` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '中文解释', + `source_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型', + `source_class` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分类', + `id_clear` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否可以清空', + `update_date` datetime NULL DEFAULT NULL COMMENT '更新时间', + `belong_product` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属产品', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '数据库' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_dbsource +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_dept +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_dept`; +CREATE TABLE `tbl_dept` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '部门id', + `dept_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门编码', + `dept_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门名称', + `dept_leader` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门负责人', + `dept_phone` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门电话', + `dept_type` bigint(20) NULL DEFAULT NULL COMMENT '部门类型', + `dept_fax` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门传真', + `dept_parent` int(11) NULL DEFAULT NULL COMMENT '部门上级编号', + `dept_line` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门层级线', + `dept_privileges` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门权限', + `dept_manage_privileges` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门管理权限', + `organ_category` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '机构类别', + `dept_person_number` int(11) NULL DEFAULT NULL COMMENT '岗位编制数', + `input_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '建档人', + `input_time` datetime NULL DEFAULT NULL COMMENT '建档时间', + `dept_remark` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '部门备注', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '部门信息表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_dept +-- ---------------------------- +INSERT INTO `tbl_dept` VALUES (1, '01', '公司本部', '', '', NULL, '', 0, '|-', 'aaaaaa', '', '0', NULL, 'admin', '2020-04-10 22:57:13', NULL); + +-- ---------------------------- +-- Table structure for tbl_deptkey +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_deptkey`; +CREATE TABLE `tbl_deptkey` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Key编码', + `dept_name` varchar(5) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'key名称', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 27 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '部门key' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_deptkey +-- ---------------------------- +INSERT INTO `tbl_deptkey` VALUES (1, 'aaaaa'); +INSERT INTO `tbl_deptkey` VALUES (2, 'bbbbb'); +INSERT INTO `tbl_deptkey` VALUES (3, 'ccccc'); +INSERT INTO `tbl_deptkey` VALUES (4, 'ddddd'); +INSERT INTO `tbl_deptkey` VALUES (5, 'eeeee'); +INSERT INTO `tbl_deptkey` VALUES (6, 'fffff'); +INSERT INTO `tbl_deptkey` VALUES (7, 'ggggg'); +INSERT INTO `tbl_deptkey` VALUES (8, 'hhhhh'); +INSERT INTO `tbl_deptkey` VALUES (9, 'iiiii'); +INSERT INTO `tbl_deptkey` VALUES (10, 'jjjjj'); +INSERT INTO `tbl_deptkey` VALUES (11, 'kkkkk'); +INSERT INTO `tbl_deptkey` VALUES (12, 'lllll'); +INSERT INTO `tbl_deptkey` VALUES (13, 'mmmmm'); +INSERT INTO `tbl_deptkey` VALUES (14, 'nnnnn'); +INSERT INTO `tbl_deptkey` VALUES (15, 'ooooo'); +INSERT INTO `tbl_deptkey` VALUES (16, 'ppppp'); +INSERT INTO `tbl_deptkey` VALUES (17, 'qqqqq'); +INSERT INTO `tbl_deptkey` VALUES (18, 'rrrrr'); +INSERT INTO `tbl_deptkey` VALUES (19, 'sssss'); +INSERT INTO `tbl_deptkey` VALUES (20, 'ttttt'); +INSERT INTO `tbl_deptkey` VALUES (21, 'uuuuu'); +INSERT INTO `tbl_deptkey` VALUES (22, 'vvvvv'); +INSERT INTO `tbl_deptkey` VALUES (23, 'wwwww'); +INSERT INTO `tbl_deptkey` VALUES (24, 'xxxxx'); +INSERT INTO `tbl_deptkey` VALUES (25, 'yyyyy'); +INSERT INTO `tbl_deptkey` VALUES (26, 'zzzzz'); + +-- ---------------------------- +-- Table structure for tbl_desktop +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_desktop`; +CREATE TABLE `tbl_desktop` ( + `id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '编码', + `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称', + `more_path` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更多地址', + `privileges` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '权限', + `status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `belong_product` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属产品' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '桌面' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_desktop +-- ---------------------------- +INSERT INTO `tbl_desktop` VALUES ('gg', '最新公告', 'portal/xzgl/Qyggcx.aspx', '', '正常', 'P'); +INSERT INTO `tbl_desktop` VALUES ('gz', '规章制度', 'portal/xzgl/Gzzdcx.aspx', '', '正常', 'P'); +INSERT INTO `tbl_desktop` VALUES ('lp', '最新房产', 'bbcx/fccx.aspx', '', '正常', 'F'); +INSERT INTO `tbl_desktop` VALUES ('ts', '业主投诉', 'yzgl/zhtscx.aspx', '', '正常', 'F'); +INSERT INTO `tbl_desktop` VALUES ('yj', '我的邮件', 'portal/yjgl/sjx.aspx', '', '正常', 'P'); +INSERT INTO `tbl_desktop` VALUES ('yw', '业委会会议', 'ywhgl/ywhhycx.aspx', '', '正常', 'F'); + +-- ---------------------------- +-- Table structure for tbl_email_receive +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_email_receive`; +CREATE TABLE `tbl_email_receive` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '接受id', + `email_send_id` bigint(20) NULL DEFAULT NULL COMMENT '所属邮件id', + `receive_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单个接收人id', + `receive_person_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接受人群编码', + `receive_person_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接受人群名称', + `email_title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮件标题', + `email_content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '邮件内容', + `important_grade` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '重要级别', + `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `is_delete` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '删除标志', + `is_secret_send` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '密送标志', + `email_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮件附件', + `receive_type` char(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接受类型', + `send_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人id', + `send_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人姓名', + `send_date` datetime NULL DEFAULT NULL COMMENT '发送时间', + `receive_date` datetime NULL DEFAULT NULL COMMENT '接受时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '邮件接受' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_email_receive +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_email_send +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_email_send`; +CREATE TABLE `tbl_email_send` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '邮件id', + `receive_person_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接受人群编码', + `receive_person_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接受人群名称', + `email_title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮件标题', + `email_content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '邮件内容', + `important_grade` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '重要级别', + `is_draft` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否草稿', + `is_delete` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '删除标志', + `is_secret_send` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '密送标志', + `email_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮件附件', + `send_type` char(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送类型', + `send_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人id', + `send_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人姓名', + `send_date` datetime NULL DEFAULT NULL COMMENT '发送时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '邮件发送' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_email_send +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_employee_contact +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_employee_contact`; +CREATE TABLE `tbl_employee_contact` ( + `id` int(20) NOT NULL COMMENT '自动编号', + `order_id` int(20) NULL DEFAULT NULL COMMENT '排序号', + `category_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属类别名称', + `category_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属类别id', + `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '姓名', + `work_num` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '工号', + `dept` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门', + `role` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色', + `position` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '职位', + `gender` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '性别', + `birthday` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '生日', + `office_phone` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '办公电话', + `fax` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '传真', + `move_phone` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '移动电话', + `home_phone` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '家庭电话', + `email` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电子邮件', + `qq` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'QQ号', + `wchat` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '微信号', + `inner_msn` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '内部即时通', + `addr` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地址', + `post_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮编', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `create_person_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人id', + `create_person` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人名称', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '员工通讯录' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_employee_contact +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_employee_contact_category +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_employee_contact_category`; +CREATE TABLE `tbl_employee_contact_category` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `category_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类别名称', + `order_id` bigint(20) NULL DEFAULT NULL COMMENT '排序号', + `remark` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '备注', + `parent_category_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '上级类别id', + `line` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标记线', + `create_person_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人id', + `create_person` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人名称', + `privileges` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '权限字符串', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '员工通讯录类别' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_employee_contact_category +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_envir_setting +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_envir_setting`; +CREATE TABLE `tbl_envir_setting` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '序号', + `logo_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'logo图片名称', + `product_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '产品名称', + `version` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '版本号', + `current_version` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '当前版本标识', + `type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型', + `is_main` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否主系统', + `custom_text_one` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '自定义文本一', + `custom_text_two` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '自定义文本二', + `custom_text_three` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '自定义文本三', + `custom_text_four` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '自定义文本四', + `set_time` datetime NULL DEFAULT NULL COMMENT '设置时间', + `product_id` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '产品代码', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '环境配置' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_envir_setting +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_function_model +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_function_model`; +CREATE TABLE `tbl_function_model` ( + `id` int(20) NOT NULL COMMENT '模块编码', + `model_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块名称', + `model_type` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块类型', + `model_parent` bigint(20) NULL DEFAULT NULL COMMENT '上级模块编码', + `model_status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `model_url` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件路径', + `model_analyse_ref` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '分析参考', + `model_report_analyse` int(11) NULL DEFAULT NULL COMMENT '报表分析', + `model_icon` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图标名称', + `model_property` char(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块性质', + `model_desc` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '模块描述', + `is_control` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否控制操作权限', + `m_full` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '全部', + `m_add` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '新增', + `m_mod` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改', + `m_del` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '删除', + `m_exp` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '导出', + `m_aud` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批', + `m_exe` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '执行', + `m_que` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '查询', + `d_person` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '个人', + `d_dept` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门', + `d_company` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公司', + `orderid` double NULL DEFAULT NULL COMMENT '排序字段', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '功能模块' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_function_model +-- ---------------------------- +INSERT INTO `tbl_function_model` VALUES (221, '楼盘管理', 'F', 0, '启用', '#', '', 0, '/fsp/221.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 221, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (223, '业主管理', 'F', 0, '启用', '#', '', 0, '/fsp/223.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 221.1, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (224, '安保管理', 'F', 0, '启用', '#', '', 0, '/fsp/224.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 224, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (225, '社区消防', 'F', 0, '启用', '#', '', 0, '/fsp/225.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 225, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (226, '费项设置', 'F', 0, '启用', '#', '', 0, '/fsp/226.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 221.2, 'admin', '2012-12-06 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (227, '保洁绿化', 'F', 0, '启用', '#', '', 0, '/fsp/227.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 227, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (228, '收费管理', 'F', 0, '启用', '#', '', 0, '/fsp/228.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 221.3, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (229, '报表查询', 'F', 0, '启用', '#', '', 0, '/fsp/229.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 229, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (230, '服务管理', 'F', 0, '启用', '#', '', 0, '/fsp/230.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 227.1, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (233, '车位管理', 'F', 0, '启用', '#', '', 0, '/fsp/233.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 221.4, 'admin', '2019-02-22 12:25:19'); +INSERT INTO `tbl_function_model` VALUES (901, '个人办公', 'P', 0, '启用', '#', '', 0, '/portal/901.gif', '标准模块', '', '是', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 100, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (902, '手机短信', 'P', 0, '启用', '#', '', 0, '/portal/902.gif', '标准模块', '', '是', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 902, 'admin', '2012-02-23 11:18:48'); +INSERT INTO `tbl_function_model` VALUES (903, '行政管理', 'P', 0, '启用', '#', '', 0, '/portal/903.gif', '标准模块', '', '是', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 903, 'admin', '2007-11-20 10:26:35'); +INSERT INTO `tbl_function_model` VALUES (904, '系统管理', 'P', 0, '启用', '#', '', 0, '/portal/904.gif', '标准模块', '', '是', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 904, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (905, '参数配置', 'P', 0, '启用', '#', '', 0, '/portal/905.gif', '标准模块', '', '是', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 905, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (22101, '住宅小区', 'F', 221, '启用', '#', '', 0, '/fsp/22101.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22101, 'admin', '2019-02-21 20:09:04'); +INSERT INTO `tbl_function_model` VALUES (22102, '商业房产', 'F', 221, '启用', '#', '', 0, '/fsp/22102.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22102, 'admin', '2019-02-21 20:16:34'); +INSERT INTO `tbl_function_model` VALUES (22301, '业主验房', 'F', 223, '启用', 'fsp2/yzgl/zhyf.aspx', '', 0, '/fsp/22301.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22301, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22302, '业主装修', 'F', 223, '启用', '#', '', 0, '/fsp/22302.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22302, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22303, '业主投诉', 'F', 223, '启用', 'fsp2/yzgl/zhts.aspx', '', 0, '/fsp/22303.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22303, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22304, '请修管理', 'F', 223, '启用', 'fsp2/yzgl/qxgl.aspx', '', 0, '/fsp/22304.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22304, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22305, '业主入住', 'F', 223, '启用', 'fsp2/yzgl/zhrz.aspx', '', 0, '/fsp/22305.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22302.1, 'admin', '2012-12-03 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22306, '业主加建', 'F', 223, '启用', 'fsp2/yzgl/zhjj.aspx', '', 0, '/fsp/22306.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22306, 'admin', '2013-07-22 01:45:07'); +INSERT INTO `tbl_function_model` VALUES (22307, '业主信息', 'F', 223, '启用', 'fsp2/yzgl/yzxx.aspx', '', 0, '/fsp/22307.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22300, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22402, '车辆进出', 'F', 224, '启用', 'fsp2/cwgl/clgl.aspx', '', 0, '/fsp/22402.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22402, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22411, '保安安排', 'F', 224, '启用', 'fsp2/bagl/baap.aspx', '', 0, '/fsp/22411.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22411, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22412, '执勤管理', 'F', 224, '启用', 'fsp2/bagl/zqgl.aspx', '', 0, '/fsp/22412.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22412, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22413, '来访管理', 'F', 224, '启用', 'fsp2/bagl/lfgl.aspx', '', 0, '/fsp/22413.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22413, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22414, '物品出入', 'F', 224, '启用', 'fsp2/bagl/wpcr.aspx', '', 0, '/fsp/22414.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22414, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22504, '社区活动', 'F', 225, '启用', 'fsp2/xfgl/sqhd.aspx', '', 0, '/fsp/22504.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22504, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22505, '植被信息', 'F', 227, '启用', 'fsp2/bjgl/zbxx.aspx', '', 0, '/fsp/22505.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22505, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22506, '绿化设置', 'F', 227, '启用', 'fsp2/bjgl/lhsz.aspx', '', 0, '/fsp/22506.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22506, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22507, '绿化检查', 'F', 227, '启用', 'fsp2/bjgl/lhjc.aspx', '', 0, '/fsp/22507.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22507, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22508, '信件收取', 'F', 225, '启用', 'fsp2/xfgl/xjsq.aspx', '', 0, '/fsp/22508.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22508, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22601, '常规费项', 'F', 226, '启用', '#', '', 0, '/fsp/22601.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22601, 'admin', '2019-02-22 08:59:36'); +INSERT INTO `tbl_function_model` VALUES (22602, '公摊费项', 'F', 226, '启用', '#', '', 0, '/fsp/22602.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22602, 'admin', '2019-02-22 09:05:42'); +INSERT INTO `tbl_function_model` VALUES (22603, '便捷费项', 'F', 226, '启用', 'fsp2/fxsz/lsfxsz.aspx', '', 0, '/fsp/22603.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22603, 'admin', '2012-12-06 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22604, '临客费项', 'F', 226, '启用', 'fsp2/fxsz/Lkfxsz.aspx', '', 0, '/fsp/22604.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22604, 'admin', '2015-10-22 14:45:42'); +INSERT INTO `tbl_function_model` VALUES (22605, '客服组设置', 'F', 226, '启用', 'fsp2/fxsz/kfsz.aspx', '', 0, '/fsp/22605.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22605, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22606, '打印单据设定', 'F', 226, '启用', 'fsp2/fxsz/dycssd.aspx', '', 0, '/fsp/22606.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22606, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22701, '消防设施', 'F', 225, '启用', 'fsp2/xfgl/xfss.aspx', '', 0, '/fsp/22701.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22701, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22702, '消防巡查', 'F', 225, '启用', 'fsp2/xfgl/xfxc.aspx', '', 0, '/fsp/22702.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22702, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22703, '消防演练', 'F', 225, '启用', 'fsp2/xfgl/xfyl.aspx', '', 0, '/fsp/22703.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22703, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22704, '消防事故', 'F', 225, '启用', 'fsp2/xfgl/xfsg.aspx', '', 0, '/fsp/22704.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22704, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22705, '保洁安排', 'F', 227, '启用', 'fsp2/bjgl/qjap.aspx', '', 0, '/fsp/22705.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22705, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22706, '保洁记录', 'F', 227, '启用', 'fsp2/bjgl/qjjl.aspx', '', 0, '/fsp/22706.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22706, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22707, '保洁检查', 'F', 227, '启用', 'fsp2/bjgl/qjjc.aspx', '', 0, '/fsp/22707.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22707, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22708, '保洁项目', 'F', 227, '启用', 'fsp2/bjgl/lysx.aspx', '', 0, '/fsp/22708.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22507.1, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22801, '费用生成', 'F', 228, '启用', '#', '', 0, '/fsp/22801.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22801, 'admin', '2019-02-22 09:57:53'); +INSERT INTO `tbl_function_model` VALUES (22802, '台帐管理', 'F', 228, '启用', '#', '', 0, '/fsp/22802.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22802, 'admin', '2019-02-22 10:01:36'); +INSERT INTO `tbl_function_model` VALUES (22803, '费用收取', 'F', 228, '启用', '#', '', 0, '/fsp/22803.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22803, 'admin', '2019-02-22 10:41:34'); +INSERT INTO `tbl_function_model` VALUES (22804, '收款变更', 'F', 228, '启用', '#', '', 0, '/fsp/22804.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22804, 'admin', '2019-02-22 11:33:26'); +INSERT INTO `tbl_function_model` VALUES (22805, '退款作废', 'F', 228, '启用', '#', '', 0, '/fsp/22805.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22805, 'admin', '2019-02-22 11:02:58'); +INSERT INTO `tbl_function_model` VALUES (22806, '预收款管理', 'F', 228, '启用', 'fsp2/fysq/yskxx.aspx', '', 0, '/fsp/22806.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22806, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22901, '房产查询', 'F', 229, '启用', 'fsp2/bbcx/fccx.aspx', '', 0, '/fsp/22901.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22901, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (22902, '业主报表', 'F', 229, '启用', '#', '', 0, '/fsp/22902.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22902, 'admin', '2019-02-22 16:05:47'); +INSERT INTO `tbl_function_model` VALUES (22903, '费用报表', 'F', 229, '启用', '#', '', 0, '/fsp/22903.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22903, 'admin', '2019-02-22 16:12:00'); +INSERT INTO `tbl_function_model` VALUES (22904, '收款报表', 'F', 229, '启用', '#', '', 0, '/fsp/22904.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22904, 'admin', '2019-02-22 16:19:31'); +INSERT INTO `tbl_function_model` VALUES (22905, '退款报表', 'F', 229, '启用', '#', '', 0, '/fsp/22905.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22905, 'admin', '2019-02-22 16:26:08'); +INSERT INTO `tbl_function_model` VALUES (22906, '预收款报表', 'F', 229, '启用', '#', '', 0, '/fsp/22906.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22906, 'admin', '2019-02-22 16:28:46'); +INSERT INTO `tbl_function_model` VALUES (22907, '车位报表', 'F', 229, '启用', '#', '', 0, '/fsp/22907.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22907, 'admin', '2019-02-22 16:31:28'); +INSERT INTO `tbl_function_model` VALUES (22908, '服务工时统计', 'F', 229, '启用', 'fsp2/fwgl/fwgstj.aspx', '', 0, '/fsp/22908.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 22908, 'admin', '2016-08-16 14:38:20'); +INSERT INTO `tbl_function_model` VALUES (23001, '客服工作台', 'F', 230, '启用', 'fsp2/bbcx/rcgl.aspx', '', 0, '/fsp/23001.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 23001, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (23002, '服务类型', 'F', 230, '启用', 'fsp2/fwgl/fwlxwh.aspx', '', 0, '/fsp/23002.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 23002, 'admin', '2016-04-08 09:52:37'); +INSERT INTO `tbl_function_model` VALUES (23003, '服务工单', 'F', 230, '启用', '#', '', 0, '/fsp/23003.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 23003, 'admin', '2019-02-22 14:41:40'); +INSERT INTO `tbl_function_model` VALUES (23004, '生日祝福', 'F', 230, '启用', 'fsp2/fwgl/srzf.aspx', '', 0, '/fsp/23004.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 23004, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (23301, '滞纳金设置', 'F', 233, '启用', 'fsp2/fxsz/znjsz.aspx', '', 0, '/fsp/23301.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 23301, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (23302, '车位信息', 'F', 233, '启用', 'fsp2/cwgl/cwgl.aspx', '', 0, '/fsp/23302.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 23302, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (23303, '车位销售', 'F', 233, '启用', 'fsp2/cwgl/cwxs.aspx', '', 0, '/fsp/23303.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 23303, 'admin', '2012-12-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (23304, '车位出租', 'F', 233, '启用', '#', '', 0, '/fsp/23304.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 23304, 'admin', '2019-02-22 13:47:05'); +INSERT INTO `tbl_function_model` VALUES (90101, '我的消息', 'P', 901, '启用', 'portal/xxgl/sxx.aspx', '', 0, '/portal/90101.gif', '标准模块', '', '是', '90101f', '0', '0', '0', '0', '0', '0', '0', '901011', '0', '0', 90101, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90102, '我的邮件', 'P', 901, '启用', 'portal/yjgl/sjx.aspx', '', 0, '/portal/90102.gif', '标准模块', '', '是', '90102f', '0', '0', '0', '0', '0', '0', '0', '901021', '0', '0', 90102, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90103, '我的短信', 'P', 901, '启用', 'portal/dxgl/yfsdx.aspx', '', 0, '/portal/90103.gif', '标准模块', '', '是', '90103f', '0', '0', '0', '0', '0', '0', '0', '901031', '0', '0', 90103, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90104, '我的网盘', 'P', 901, '启用', 'portal/wpgl/showdisk.aspx', '', 0, '/portal/90104.gif', '标准模块', '', '是', '90104f', '0', '0', '0', '0', '0', '0', '0', '901041', '0', '0', 90104, 'admin', '2008-05-25 18:04:51'); +INSERT INTO `tbl_function_model` VALUES (90105, '我的日程', 'P', 901, '启用', 'portal/rcgl/wdrc.aspx', '', 0, '/portal/90105.gif', '标准模块', '', '是', '90105f', '0', '0', '0', '0', '0', '0', '0', '901051', '0', '0', 90105, 'admin', '2007-11-09 15:57:03'); +INSERT INTO `tbl_function_model` VALUES (90106, '我的记事本', 'P', 901, '启用', 'portal/rcgl/wdjsb.aspx', '', 0, '/portal/90106.gif', '标准模块', '', '是', '90106f', '0', '0', '0', '0', '0', '0', '0', '901061', '0', '0', 90106, 'admin', '2007-11-20 10:02:05'); +INSERT INTO `tbl_function_model` VALUES (90107, '我的常用语', 'P', 901, '启用', 'portal/grbg/cyy.aspx', '', 0, '/portal/90107.gif', '标准模块', '', '是', '90107f', '0', '0', '0', '0', '0', '0', '0', '901071', '0', '0', 90107, 'admin', '2014-12-27 16:54:44'); +INSERT INTO `tbl_function_model` VALUES (90108, '我的驾驶舱', 'P', 901, '启用', 'portal/grbg/MyReport.aspx', '', 0, '/portal/90108.gif', '标准模块', '', '是', '90108f', '0', '0', '0', '0', '0', '0', '0', '901081', '0', '0', 90108, 'admin', '2012-04-01 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (90109, '我的意见箱', 'P', 901, '启用', 'portal/xzgl/wdyjx.aspx', '', 0, '/portal/90109.gif', '标准模块', '', '是', '90109f', '0', '0', '0', '0', '0', '0', '0', '901091', '0', '0', 90109, 'admin', '2007-11-23 14:03:48'); +INSERT INTO `tbl_function_model` VALUES (90110, '我的用户群组', 'P', 901, '启用', 'portal/yhgl/wdyhqz.aspx', '', 0, '/portal/90110.gif', '标准模块', '', '是', '90110f', '0', '0', '0', '0', '0', '0', '0', '901101', '0', '0', 90110, 'admin', '2012-11-27 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (90201, '常用短信', 'P', 902, '启用', 'portal/dxgl/cydx.aspx', '', 0, '/portal/90201.gif', '标准模块', '', '是', '90201f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '902019', 90201, 'admin', '2007-10-26 00:07:09'); +INSERT INTO `tbl_function_model` VALUES (90202, '短信授权', 'P', 902, '启用', 'portal/dxgl/dxqx.aspx', '', 0, '/portal/90202.gif', '标准模块', '', '是', '90202f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '902029', 90202, 'admin', '2007-12-02 23:19:40'); +INSERT INTO `tbl_function_model` VALUES (90203, '短信统计', 'P', 902, '启用', 'portal/dxgl/dxtj.aspx', '', 0, '/portal/90203.gif', '标准模块', '', '是', '0', '0', '0', '0', '90203e', '0', '0', '0', '0', '0', '902039', 90203, 'admin', '2007-10-26 00:07:43'); +INSERT INTO `tbl_function_model` VALUES (90204, '充值记录', 'P', 902, '启用', 'portal/dxgl/dxczjl.aspx', '', 0, '/portal/90204.gif', '标准模块', '', '是', '0', '90204a', '90204m', '90204d', '0', '0', '0', '0', '0', '0', '902049', 90204, 'admin', '2008-06-21 09:51:00'); +INSERT INTO `tbl_function_model` VALUES (90301, '公告管理', 'P', 903, '启用', 'portal/xzgl/qygg.aspx', '', 0, '/portal/90301.gif', '标准模块', '', '是', '0', '90301a', '90301m', '90301d', '0', '90301u', '0', '0', '0', '0', '903019', 90301, 'admin', '2007-11-20 10:26:50'); +INSERT INTO `tbl_function_model` VALUES (90302, '规章制度', 'P', 903, '启用', 'portal/xzgl/gzzd.aspx', '', 0, '/portal/90302.gif', '标准模块', '', '是', '0', '90302a', '90302m', '90302d', '0', '90302u', '0', '0', '0', '0', '903029', 90302, 'admin', '2007-11-20 10:28:14'); +INSERT INTO `tbl_function_model` VALUES (90303, '单位名录', 'P', 903, '启用', 'portal/xzgl/dwml.aspx', '', 0, '/portal/90303.gif', '标准模块', '', '是', '0', '90303a', '90303m', '90303d', '0', '0', '0', '0', '0', '0', '903039', 90303, 'admin', '2007-11-04 21:06:53'); +INSERT INTO `tbl_function_model` VALUES (90304, '视频点播', 'P', 903, '启用', 'portal/xzgl/spdb.aspx', '', 0, '/portal/90304.gif', '标准模块', '', '是', '0', '90304a', '90304m', '90304d', '0', '90304u', '0', '0', '0', '0', '903049', 90304, 'admin', '2008-06-14 14:22:21'); +INSERT INTO `tbl_function_model` VALUES (90305, '投票调查', 'P', 903, '启用', '#', '', 0, '/portal/90305.gif', '标准模块', '', '是', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 90305, 'admin', '2019-02-23 08:50:52'); +INSERT INTO `tbl_function_model` VALUES (90306, '意见箱设置', 'P', 903, '启用', 'portal/xzgl/yjxsz.aspx', '', 0, '/portal/90306.gif', '标准模块', '', '是', '0', '90306a', '90306m', '90306d', '0', '90306u', '0', '0', '0', '0', '903069', 90306, 'admin', '2007-11-20 10:31:14'); +INSERT INTO `tbl_function_model` VALUES (90307, '员工通讯录', 'P', 903, '启用', 'portal/xzgl/ygtxl.aspx', '', 0, '/portal/90307.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 90307, 'admin', '2017-08-31 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (90401, '企业档案', 'P', 904, '启用', 'portal/bmgl/qyda.aspx', '', 0, '/portal/90401.gif', '标准模块', '', '是', '90401f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '904019', 90401, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90402, '部门管理', 'P', 904, '启用', 'portal/bmgl/Dept.aspx', '', 0, '/portal/90402.gif', '标准模块', '', '是', '0', '90402a', '90402m', '90402d', '0', '0', '0', '0', '0', '0', '904029', 90402, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90403, '职位管理', 'P', 904, '启用', 'portal/bmgl/zwwh.aspx', '', 0, '/portal/90403.gif', '标准模块', '', '是', '0', '90403a', '90403m', '90403d', '0', '0', '0', '0', '0', '0', '904039', 90403, 'admin', '2007-11-09 00:30:27'); +INSERT INTO `tbl_function_model` VALUES (90404, '角色管理', 'P', 904, '启用', 'portal/jsgl/role.aspx', '', 0, '/portal/90404.gif', '标准模块', '', '是', '90404f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '904049', 90404, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90405, '用户管理', 'P', 904, '启用', '#', '', 0, '/portal/90405.gif', '标准模块', '', '是', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 90405, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90406, '待办事项', 'P', 904, '启用', 'portal/yhgl/dbsxfz.aspx', '', 0, '/portal/90406.gif', '标准模块', '', '是', '90406f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '904069', 90406, 'admin', '2008-05-27 23:29:55'); +INSERT INTO `tbl_function_model` VALUES (90407, '日志查询', 'P', 904, '启用', 'portal/rzcx/rzcx.aspx', '', 0, '/portal/90407.gif', '标准模块', '', '是', '0', '0', '0', '0', '90407e', '0', '0', '0', '904071', '904072', '904079', 90407, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90501, '模块管理', 'P', 905, '启用', 'portal/mkgl/mk.aspx', '', 0, '/portal/90501.gif', '标准模块', '', '是', '90501f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '905019', 90501, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90502, '参数选项', 'P', 905, '启用', 'portal/csxx/cs.aspx', '', 0, '/portal/90502.gif', '标准模块', '', '是', '90502f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '905029', 90502, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90503, '自定义类型', 'P', 905, '启用', 'portal/csxx/lxwh.aspx', '', 0, '/portal/90503.gif', '标准模块', '', '是', '90503f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '905039', 90503, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (90504, '工作日设置', 'P', 905, '启用', 'portal/csxx/gzrsz.aspx', '', 0, '/portal/90504.gif', '标准模块', '', '是', '90504f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '905049', 90504, 'admin', '2013-03-04 05:43:38'); +INSERT INTO `tbl_function_model` VALUES (90505, '数据库备份', 'P', 905, '启用', 'portal/xtgl/sjkbf.aspx', '', 0, '/portal/90505.gif', '标准模块', '', '是', '90505f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '905059', 90505, 'admin', '2014-01-14 01:54:23'); +INSERT INTO `tbl_function_model` VALUES (90506, '快捷方式', 'P', 905, '启用', 'portal/kjfs/kjfstb.aspx', '', 0, '/portal/90506.gif', '标准模块', '', '是', '90506f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '905069', 90506, 'admin', '2008-06-08 10:29:00'); +INSERT INTO `tbl_function_model` VALUES (90507, '数据清除', 'P', 905, '启用', 'portal/xtgl/qcrz.aspx', '', 0, '/portal/90507.gif', '标准模块', '', '是', '90507f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '905079', 90507, 'admin', '2007-11-01 22:57:09'); +INSERT INTO `tbl_function_model` VALUES (90508, '系统初始化', 'P', 905, '启用', 'portal/xtgl/xtsjsc.aspx', '', 0, '/portal/90508.gif', '标准模块', '', '是', '90508f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '905089', 90508, 'admin', '2013-06-30 07:16:59'); +INSERT INTO `tbl_function_model` VALUES (90509, '打印纸张设置', 'P', 905, '启用', 'portal/csxx/dyzzsz.aspx', '', 0, '/portal/90509.gif', '标准模块', '', '是', '90509f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '905099', 90509, 'admin', '2007-11-17 15:07:58'); +INSERT INTO `tbl_function_model` VALUES (2210101, '新增住宅向导', 'F', 22101, '启用', 'fsp2/zzgl/x01.aspx', '', 0, '/fsp/2210101.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2210101, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2210102, '批量增加楼宇', 'F', 22101, '启用', 'fsp2/zzgl/x05.aspx', '', 0, '/fsp/2210102.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2210102, 'admin', '2013-10-11 14:18:33'); +INSERT INTO `tbl_function_model` VALUES (2210103, '住宅维护', 'F', 22101, '启用', 'fsp2/zzgl/xqxx.aspx', '', 0, '/fsp/2210103.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2210103, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2210104, '住宅查询', 'F', 22101, '启用', 'fsp2/zzgl/xqcx.aspx', '', 0, '/fsp/2210104.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2210104, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2210201, '新增房产向导', 'F', 22102, '启用', 'fsp2/dsgl/d01.aspx', '', 0, '/fsp/2210201.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2210201, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2210202, '批量增加楼宇', 'F', 22102, '启用', 'fsp2/dsgl/d05.aspx', '', 0, '/fsp/2210202.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2210202, 'admin', '2013-10-11 14:18:33'); +INSERT INTO `tbl_function_model` VALUES (2210203, '房产维护', 'F', 22102, '启用', 'fsp2/dsgl/dsxx.aspx', '', 0, '/fsp/2210203.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2210203, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2210204, '房产查询', 'F', 22102, '启用', 'fsp2/dsgl/dscx.aspx', '', 0, '/fsp/2210204.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2210204, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2230201, '装修录入', 'F', 22302, '启用', 'fsp2/yzgl/Zxlr.aspx', '', 0, '/fsp/2230201.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2230201, 'admin', '2019-06-03 17:35:08'); +INSERT INTO `tbl_function_model` VALUES (2230202, '装修审批', 'F', 22302, '启用', 'fsp2/yzgl/Zxsp.aspx', '', 0, '/fsp/2230202.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2230202, 'admin', '2019-06-03 17:35:08'); +INSERT INTO `tbl_function_model` VALUES (2230203, '装修作废', 'F', 22302, '启用', 'fsp2/yzgl/Zxzf.aspx', '', 0, '/fsp/2230203.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2230203, 'admin', '2019-06-03 17:35:08'); +INSERT INTO `tbl_function_model` VALUES (2230204, '装修验收', 'F', 22302, '启用', 'fsp2/yzgl/Zxys.aspx', '', 0, '/fsp/2230204.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2230204, 'admin', '2019-06-03 17:35:08'); +INSERT INTO `tbl_function_model` VALUES (2230205, '装修查询', 'F', 22302, '启用', 'fsp2/yzgl/Zxcx.aspx', '', 0, '/fsp/2230205.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2230205, 'admin', '2019-06-03 17:35:08'); +INSERT INTO `tbl_function_model` VALUES (2260101, '费项设定', 'F', 22601, '启用', 'fsp2/fxsz/fxsz.aspx', '', 0, '/fsp/2260101.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2260101, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2260102, '费项分布', 'F', 22601, '启用', 'fsp2/fxsz/wyffb.aspx', '', 0, '/fsp/2260102.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2260102, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2260103, '初始化仪表', 'F', 22601, '启用', 'fsp2/fxsz/cshyb.aspx', '', 0, '/fsp/2260103.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2260103, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2260104, '楼层系数', 'F', 22601, '启用', 'fsp2/fxsz/Lcxssd.aspx', '', 0, '/fsp/2260104.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2260104, 'admin', '2015-03-14 17:50:16'); +INSERT INTO `tbl_function_model` VALUES (2260201, '费项设定', 'F', 22602, '启用', 'fsp2/fxsz/gtfxsz.aspx', '', 0, '/fsp/2260201.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2260201, 'admin', '2012-12-06 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2260202, '公摊费分布', 'F', 22602, '启用', 'fsp2/fxsz/gtffb.aspx', '', 0, '/fsp/2260202.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2260202, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280101, '生成台帐', 'F', 22801, '启用', 'fsp2/fysq/scwyf.aspx', '', 0, '/fsp/2280101.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280101, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280102, '批量生成台帐', 'F', 22801, '启用', 'fsp2/fysq/plscwyf.aspx', '', 0, '/fsp/2280102.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280102, 'admin', '2015-06-07 15:52:12'); +INSERT INTO `tbl_function_model` VALUES (2280103, '抄表数据导入', 'F', 22801, '启用', 'fsp2/fysq/cbsjdr.aspx', '', 0, '/fsp/2280103.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280103, 'admin', '2013-03-26 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280201, '常规台帐修改', 'F', 22802, '启用', 'fsp2/fysq/lsmxz.aspx', '', 0, '/fsp/2280201.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280201, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280202, '公摊台帐修改', 'F', 22802, '启用', 'fsp2/fysq/gtmxz.aspx', '', 0, '/fsp/2280202.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280202, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280203, '常规台帐复制', 'F', 22802, '启用', 'fsp2/fysq/Cgtzfz.aspx', '', 0, '/fsp/2280203.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280203, 'admin', '2013-04-03 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280301, '常规收款', 'F', 22803, '启用', 'fsp2/fysq/sqwyf.aspx', '', 0, '/fsp/2280301.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280301, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280302, '便捷收款', 'F', 22803, '启用', 'fsp2/fysq/lssf.aspx', '', 0, '/fsp/2280302.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280302, 'admin', '2012-10-14 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280303, '临客收款', 'F', 22803, '启用', 'fsp2/fysq/lssf_w.aspx', '', 0, '/fsp/2280303.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280303, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280401, '常规收款变更', 'F', 22804, '启用', 'fsp2/fysq/Cgsfxg.aspx', '', 0, '/fsp/2280401.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280401, 'admin', '2015-10-20 16:56:33'); +INSERT INTO `tbl_function_model` VALUES (2280402, '临客收款变更', 'F', 22804, '启用', 'fsp2/fysq/Lksfxg.aspx', '', 0, '/fsp/2280402.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280402, 'admin', '2015-03-14 10:44:15'); +INSERT INTO `tbl_function_model` VALUES (2280501, '收款单退款', 'F', 22805, '启用', 'fsp2/fysq/wyftk.aspx', '', 0, '/fsp/2280501.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280501, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2280502, '收款单作废', 'F', 22805, '启用', 'fsp2/fysq/wyfzf.aspx', '', 0, '/fsp/2280502.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2280502, 'admin', '2015-10-23 15:29:30'); +INSERT INTO `tbl_function_model` VALUES (2290201, '业主信息查询', 'F', 22902, '启用', 'fsp2/bbcx/yzcx.aspx', '', 0, '/fsp/2290201.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290201, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290202, '业主验房对比', 'F', 22902, '启用', 'fsp2/bbcx/Yfdbcx.aspx', '', 0, '/fsp/2290202.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290202, 'admin', '2015-05-27 21:50:18'); +INSERT INTO `tbl_function_model` VALUES (2290301, '业主费用明细', 'F', 22903, '启用', 'fsp2/bbcx/grfymx.aspx', '', 0, '/fsp/2290301.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290301, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290302, '欠费业主通知', 'F', 22903, '启用', 'fsp2/bbcx/qfcx.aspx', '', 0, '/fsp/2290302.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290302, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290303, '业主缴费监控', 'F', 22903, '启用', 'fsp2/bbcx/yzjfjk.aspx', '', 0, '/fsp/2290303.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290303, 'admin', '2013-07-22 01:45:07'); +INSERT INTO `tbl_function_model` VALUES (2290304, '到期费用查询', 'F', 22903, '启用', 'fsp2/bbcx/Dqfycx.aspx', '', 0, '/fsp/2290304.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290304, 'admin', '2015-08-17 15:50:35'); +INSERT INTO `tbl_function_model` VALUES (2290305, '常规费用统计', 'F', 22903, '启用', 'fsp2/bbcx/fyhzcx.aspx', '', 0, '/fsp/2290305.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290305, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290401, '已收款查询', 'F', 22904, '启用', 'fsp2/bbcx/yskcx.aspx', '', 0, '/fsp/2290401.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290401, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290402, '个人已收款', 'F', 22904, '启用', 'fsp2/bbcx/yskcx_gr.aspx', '', 0, '/fsp/2290402.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290402, 'admin', '2015-11-02 11:10:15'); +INSERT INTO `tbl_function_model` VALUES (2290403, '便捷收款统计', 'F', 22904, '启用', 'fsp2/bbcx/lsfyhz.aspx', '', 0, '/fsp/2290403.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290403, 'admin', '2012-10-14 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290404, '临客收款统计', 'F', 22904, '启用', 'fsp2/bbcx/lkfyhz.aspx', '', 0, '/fsp/2290404.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290404, 'admin', '2013-04-03 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290405, '综合收款统计', 'F', 22904, '启用', 'fsp2/bbcx/zhfyhz.aspx', '', 0, '/fsp/2290405.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290405, 'admin', '2012-12-06 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290501, '已退款查询', 'F', 22905, '启用', 'fsp2/bbcx/tkcx.aspx', '', 0, '/fsp/2290501.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290501, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290502, '已作废查询', 'F', 22905, '启用', 'fsp2/bbcx/zfcx.aspx', '', 0, '/fsp/2290502.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290502, 'admin', '2015-10-23 15:34:46'); +INSERT INTO `tbl_function_model` VALUES (2290601, '预收余额查询', 'F', 22906, '启用', 'fsp2/bbcx/Yskyecx.aspx', '', 0, '/fsp/2290601.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290601, 'admin', '2018-07-09 14:34:25'); +INSERT INTO `tbl_function_model` VALUES (2290602, '预收明细查询', 'F', 22906, '启用', 'fsp2/fysq/yskcx.aspx', '', 0, '/fsp/2290602.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290602, 'admin', '2012-08-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290701, '车位查询', 'F', 22907, '启用', 'fsp2/cwgl/cwcx.aspx', '', 0, '/fsp/2290701.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290701, 'admin', '2012-12-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2290702, '车位缴费统计', 'F', 22907, '启用', 'fsp2/bbcx/cwjftj.aspx', '', 0, '/fsp/2290702.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2290702, 'admin', '2016-06-24 15:07:24'); +INSERT INTO `tbl_function_model` VALUES (2300301, '新建服务单', 'F', 23003, '启用', 'fsp2/fwgl/xjfwd.aspx', '', 0, '/fsp/2300301.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2300301, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2300302, '服务单分配', 'F', 23003, '启用', 'fsp2/fwgl/fwdfp.aspx', '', 0, '/fsp/2300302.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2300302, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2300303, '服务单办理', 'F', 23003, '启用', 'fsp2/fwgl/fwdbl.aspx', '', 0, '/fsp/2300303.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2300303, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2300304, '服务单回访', 'F', 23003, '启用', 'fsp2/fwgl/fwdhf.aspx', '', 0, '/fsp/2300304.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2300304, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2300305, '服务单查询', 'F', 23003, '启用', 'fsp2/fwgl/fwdcx.aspx', '', 0, '/fsp/2300305.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2300305, 'admin', '2012-12-25 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2330401, '合同管理', 'F', 23304, '启用', 'fsp2/cwgl/cwzl.aspx', '', 0, '/fsp/2330401.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2330401, 'admin', '2012-12-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2330402, '合同缴费', 'F', 23304, '启用', 'fsp2/cwgl/cwjf.aspx', '', 0, '/fsp/2330402.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2330402, 'admin', '2012-12-21 00:00:00'); +INSERT INTO `tbl_function_model` VALUES (2330403, '缴费作废', 'F', 23304, '启用', 'fsp2/cwgl/Cwjfzf.aspx', '', 0, '/fsp/2330403.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 2330403, 'admin', '2018-12-07 11:10:55'); +INSERT INTO `tbl_function_model` VALUES (9030501, '投票项目维护', 'P', 90305, '启用', 'portal/tpgl/tpdc.aspx', '', 0, '/portal/9030501.gif', '标准模块', '', '是', '9030501f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '90305019', 9030501, 'admin', '2007-11-20 09:30:18'); +INSERT INTO `tbl_function_model` VALUES (9030502, '投票题目维护', 'P', 90305, '启用', 'portal/tpgl/tmsz.aspx', '', 0, '/portal/9030502.gif', '标准模块', '', '是', '9030502f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '90305029', 9030502, 'admin', '2007-11-20 09:30:31'); +INSERT INTO `tbl_function_model` VALUES (9030503, '查询投票明细', 'P', 90305, '启用', 'portal/tpgl/cksj.aspx', '', 0, '/portal/9030503.gif', '标准模块', '', '是', '9030503f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '90305039', 9030503, 'admin', '2007-11-20 10:59:13'); +INSERT INTO `tbl_function_model` VALUES (9030504, '统计投票结果', 'P', 90305, '启用', 'portal/tpgl/fxdcjg.aspx', '', 0, '/portal/9030504.gif', '标准模块', '', '是', '9030504f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '90305049', 9030504, 'admin', '2007-11-20 10:59:29'); +INSERT INTO `tbl_function_model` VALUES (9040501, '用户维护', 'P', 90405, '启用', 'portal/yhgl/yh.aspx', '', 0, '/portal/9040501.gif', '标准模块', '', '是', '0', '9040501a', '9040501m', '9040501d', '9040501e', '9040501u', '0', '0', '0', '0', '90405019', 9040501, 'admin', '2019-08-07 07:25:19'); +INSERT INTO `tbl_function_model` VALUES (9040502, '初始化密码', 'P', 90405, '启用', 'portal/yhgl/cshmm.aspx', '', 0, '/portal/9040502.gif', '标准模块', '', '是', '90408f', '0', '0', '0', '0', '0', '0', '0', '0', '0', '904089', 9040502, 'admin', NULL); +INSERT INTO `tbl_function_model` VALUES (9040503, '登录限制', 'P', 90405, '启用', 'portal/yhgl/dlxz.aspx', '', 0, '/portal/9040503.gif', '标准模块', '', '否', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 9040503, 'admin', '2019-08-07 07:25:19'); + +-- ---------------------------- +-- Table structure for tbl_group_record +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_group_record`; +CREATE TABLE `tbl_group_record` ( + `group_record_id` int(11) NULL DEFAULT NULL COMMENT '自动增长id', + `group_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群组名称', + `group_type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群组类型', + `group_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群组说明', + `group_member_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '组内成员id', + `group_member_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '组内成员名称', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '群组档案' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_group_record +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_groups_todo +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_groups_todo`; +CREATE TABLE `tbl_groups_todo` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '分组id', + `todo_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '待办事项id', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '分组待办事项' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_groups_todo +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_groups_user +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_groups_user`; +CREATE TABLE `tbl_groups_user` ( + `group_id` int(11) NULL DEFAULT NULL COMMENT '分组id', + `obj_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '对象id', + `obj_type` int(11) NULL DEFAULT NULL COMMENT '绑定类型' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '分组用户' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_groups_user +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_login_log +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_login_log`; +CREATE TABLE `tbl_login_log` ( + `id` int(50) NOT NULL AUTO_INCREMENT COMMENT '登录人员编码', + `login_date` datetime NULL DEFAULT NULL COMMENT '登录日期', + `login_ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登录的ip地址', + `login_status` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登录状态', + `open_mk` bigint(20) NULL DEFAULT NULL COMMENT '进入模块名称', + `login_mechine_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登录机器名', + `login_port` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '端口号', + `login_door` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登录入口', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '登录日志' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_login_log +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_main_menu +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_main_menu`; +CREATE TABLE `tbl_main_menu` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主菜单编号', + `main_menu_name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主菜单名称', + `main_menu_url` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主菜单文件路径', + `main_menu_icon` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主菜单图标', + `main_menu_status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主菜单状态', + `main_menu_key` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单key', + `main_menu_order` double NULL DEFAULT NULL COMMENT '排序号', + `belong_product` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '产品id', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '主菜单' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_main_menu +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_message_charge +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_message_charge`; +CREATE TABLE `tbl_message_charge` ( + `charge_number` varchar(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '充值单号', + `charge_account` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '充值账户', + `charge_money` double NULL DEFAULT NULL COMMENT '充值金额', + `charge_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '充值说明', + `charge_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '充值人', + `charge_date` datetime NULL DEFAULT NULL COMMENT '充值日期' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '短信充值单' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_message_charge +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_message_receive +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_message_receive`; +CREATE TABLE `tbl_message_receive` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '记录编号', + `phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机号码', + `extend_phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '拓展号码', + `message_content` varchar(140) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '短信内容', + `reply_date` datetime NULL DEFAULT NULL COMMENT '回复时间', + `position_order` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '位置序号', + `receive_date` datetime NULL DEFAULT NULL COMMENT '接受时间', + `read_tag` tinyint(4) NULL DEFAULT NULL COMMENT '读取标记', + `read_date` datetime NULL DEFAULT NULL COMMENT '读取时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '短信接受表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_message_receive +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_message_send +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_message_send`; +CREATE TABLE `tbl_message_send` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', + `content` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '内容', + `send_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人', + `send_date` datetime NULL DEFAULT NULL COMMENT '发送时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '信息发送' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_message_send +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_msg_receive +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_msg_receive`; +CREATE TABLE `tbl_msg_receive` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', + `receive_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人', + `status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '信息接受' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_msg_receive +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_my_note +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_my_note`; +CREATE TABLE `tbl_my_note` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', + `create_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人员编码', + `title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题', + `type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型', + `place` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地点', + `content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '内容', + `is_private` tinyint(4) NULL DEFAULT NULL COMMENT '是否私人性质', + `is_repeat` tinyint(4) NULL DEFAULT NULL COMMENT '是否重复', + `repeat` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '重复', + `repeat_stop` datetime NULL DEFAULT NULL COMMENT '重复至日结束', + `is_remain` tinyint(4) NULL DEFAULT NULL COMMENT '是否提醒', + `remain_day` smallint(6) NULL DEFAULT NULL COMMENT '提前N天提醒', + `start_date` datetime NULL DEFAULT NULL COMMENT '开始时间', + `stop_date` datetime NULL DEFAULT NULL COMMENT '结束时间', + `order_person` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '预约人员', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '我的记事本' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_my_note +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_myadvice +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_myadvice`; +CREATE TABLE `tbl_myadvice` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `title` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题', + `content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '内容', + `advice_box` int(11) NULL DEFAULT NULL COMMENT '意见箱', + `status` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `attach_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件名称', + `publisher_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发表人id', + `publisher_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发表人名称', + `publisher_date` datetime NULL DEFAULT NULL COMMENT '发表时间', + `reply_content` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '回复内容', + `reply_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '回复人id', + `reply_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '回复人名称', + `reply_date` datetime NULL DEFAULT NULL COMMENT '回复时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '我的意见' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_myadvice +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_mydash +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_mydash`; +CREATE TABLE `tbl_mydash` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `dash_id` int(11) NULL DEFAULT NULL COMMENT '所属驾驶舱id', + `order_id` bigint(20) NULL DEFAULT NULL COMMENT '排序号', + `username` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户名', + `show_num` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '显示条数', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '我的驾驶舱' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_mydash +-- ---------------------------- +INSERT INTO `tbl_mydash` VALUES (1, 1, 4, 'admin', '10'); + +-- ---------------------------- +-- Table structure for tbl_mydesk +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_mydesk`; +CREATE TABLE `tbl_mydesk` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `belong_model` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属模块', + `order_id` bigint(20) NULL DEFAULT NULL COMMENT '排序号', + `username` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户名', + `show_num` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '显示条数', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '我的桌面' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_mydesk +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_myplan +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_myplan`; +CREATE TABLE `tbl_myplan` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '编号', + `plan_theme` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主题', + `plan_addr` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地点', + `start_date` datetime NULL DEFAULT NULL COMMENT '开始时间', + `stop_date` datetime NULL DEFAULT NULL COMMENT '结束时间', + `plan_type` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分类', + `plan_status` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `plan_prior` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '优先级', + `field_bak` char(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备用字段', + `plan_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '日程描述', + `attach_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件名称', + `attach_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件路径', + `owner` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所有者', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `plan_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '日程附件', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '我的日程' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_myplan +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_myset +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_myset`; +CREATE TABLE `tbl_myset` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `username` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户编码', + `id_remain` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否需要提醒', + `remain_interval` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '提醒间隔时间', + `remain_window_open` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '弹出提醒窗口', + `message_remain` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消息提醒', + `default_main` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '默认主页面', + `email_all` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮箱全称', + `smtp_addr` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'smtp地址', + `login_user` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登录用户', + `login_pwd` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登录密码', + `mail_port` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮件端口', + `send_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人名称', + `page_count` int(11) NULL DEFAULT NULL COMMENT '分页行数', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '个人设置' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_myset +-- ---------------------------- +INSERT INTO `tbl_myset` VALUES (1, 'admin', '是', '60000', '否', '1.swf', '1', 'ok8209@sohu.com', 'smtp.sohu.com', 'ok8209', 'haokee3000', '25', '超级管理员', 15); + +-- ---------------------------- +-- Table structure for tbl_netdisk_dir +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_netdisk_dir`; +CREATE TABLE `tbl_netdisk_dir` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件夹名称', + `parent_dir` int(11) NULL DEFAULT NULL COMMENT '上级文件夹', + `is_share` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否共享', + `user_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建用户编码', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建日期', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '网络硬盘_文件夹' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_netdisk_dir +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_netdisk_url +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_netdisk_url`; +CREATE TABLE `tbl_netdisk_url` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `dir_id` int(11) NULL DEFAULT NULL COMMENT '文件夹id', + `file_name` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件原名称', + `new_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '新名称', + `file_type` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文件类型', + `file_size` int(11) NULL DEFAULT NULL COMMENT '文档大小', + `create_date` datetime NULL DEFAULT NULL COMMENT '上传时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '网络硬盘路径' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_netdisk_url +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_position_record +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_position_record`; +CREATE TABLE `tbl_position_record` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `position_name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '职位名称', + `position_desc` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '职位描述', + `position_duty` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '岗位职责', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '职位档案' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_position_record +-- ---------------------------- +INSERT INTO `tbl_position_record` VALUES (1, '超级管理员', '', '', 'admin', '2020-01-08 12:08:19'); + +-- ---------------------------- +-- Table structure for tbl_print_paper +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_print_paper`; +CREATE TABLE `tbl_print_paper` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编码', + `paper_name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称', + `paper_value` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '值', + `paper_status` int(11) NULL DEFAULT NULL COMMENT '状态', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '打印纸张宽度设置' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_print_paper +-- ---------------------------- +INSERT INTO `tbl_print_paper` VALUES (1, 'A4', '正常', 650); +INSERT INTO `tbl_print_paper` VALUES (2, 'A3', '正常', 750); + +-- ---------------------------- +-- Table structure for tbl_print_param +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_print_param`; +CREATE TABLE `tbl_print_param` ( + `print_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '打印参数编号', + `print_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '打印参数名称', + `print_value` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '打印参数值', + `print_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '打印参数描述', + PRIMARY KEY (`print_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '打印参数' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_print_param +-- ---------------------------- +INSERT INTO `tbl_print_param` VALUES ('qf1', '欠费打印1', '尊敬的:', ''); +INSERT INTO `tbl_print_param` VALUES ('qf2', '欠费打印2', '根据本公司的记录,您居住的房间已累计欠款如下:', ''); +INSERT INTO `tbl_print_param` VALUES ('qf3', '欠费打印3', '本公司现特函通知,请您尽快将款项至银行办理托收或直接带现金到物业公司财务部交纳。', ''); +INSERT INTO `tbl_print_param` VALUES ('qf4', '欠费打印4', '催款日期:', ''); +INSERT INTO `tbl_print_param` VALUES ('qf5', '欠费打印5', '谢谢!', ''); + +-- ---------------------------- +-- Table structure for tbl_quick +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_quick`; +CREATE TABLE `tbl_quick` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `quick_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '快捷方式名称', + `url_param` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '链接参数', + `code_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '程序路径', + `icon_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图标名称', + `mechine_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '机器名', + `public_type` varchar(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '公共类型', + `type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类别', + `input_record_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `input_record_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '快捷方式' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_quick +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_role +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_role`; +CREATE TABLE `tbl_role` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '角色编号', + `role_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色名称', + `role_type` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色类型', + `role_privileges` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '操作权限', + `role_remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色备注', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色档案' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_role +-- ---------------------------- +INSERT INTO `tbl_role` VALUES (1, '超级管理员', '企业', '221-223-226-901', '', 'admin', '2020-01-08 12:08:19'); + +-- ---------------------------- +-- Table structure for tbl_role_menu_privi +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_role_menu_privi`; +CREATE TABLE `tbl_role_menu_privi` ( + `role_id` int(11) NULL DEFAULT NULL COMMENT '角色id', + `model_id` int(20) NULL DEFAULT NULL COMMENT '模块id' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色菜单权限' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_role_menu_privi +-- ---------------------------- +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 12); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 16); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 17); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 18); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 108); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 109); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 110); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 111); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 115); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 116); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 120); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 130); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 131); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 132); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 133); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 134); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 135); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 136); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 137); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 138); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 140); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 141); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 142); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 143); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 145); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 146); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 147); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 148); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 149); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 206); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 209); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 210); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 212); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 221); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 223); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 224); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 225); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 226); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 227); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 228); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 229); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 230); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 233); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 308); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 309); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 310); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 311); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 312); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 313); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 406); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 407); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 408); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 409); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 410); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 411); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 506); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 508); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 510); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 511); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 512); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 515); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 516); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 517); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 518); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 704); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 705); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 706); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 707); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 708); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 709); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 710); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 711); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 804); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 805); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 806); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 807); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 808); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 809); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 810); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 811); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 812); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 903); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 904); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 905); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 912); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 919); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1006); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1306); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1307); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1308); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1309); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1704); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1804); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1805); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10200); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10306); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10506); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10507); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10508); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10509); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10704); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10705); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10706); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10707); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10903); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10904); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 10905); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11003); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11004); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11005); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11006); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11510); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11511); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11512); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11513); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11514); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11515); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11516); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11517); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11518); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11519); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 11607); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 12005); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 12006); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 12007); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 12008); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 12009); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 12010); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 12011); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 12012); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13411); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13412); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13413); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13414); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13511); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13512); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13514); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13611); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13612); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13613); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13614); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13615); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13616); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13711); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13712); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 13804); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14003); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14004); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14006); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14704); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14804); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 14903); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20306); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20804); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20805); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20900); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20904); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20905); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20906); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20907); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20908); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20909); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20922); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 20923); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 21101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 21102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 21104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 21105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 21106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 21107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 21108); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22306); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22307); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22411); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22412); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22413); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22414); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22506); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22507); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22508); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22704); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22705); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22706); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22707); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22708); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22804); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22805); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22806); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22903); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22904); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22905); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22906); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22907); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 22908); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 23001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 23002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 23003); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 23004); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 23301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 23302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 23303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 23304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30903); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30904); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30905); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30906); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30907); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30908); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30909); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30911); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 30912); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31003); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31004); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31005); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31006); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31007); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31008); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31009); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31010); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31011); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31012); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31013); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31014); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31015); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31016); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31017); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31108); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31109); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31110); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31111); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31112); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31113); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31114); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31115); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31116); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31117); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31118); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31119); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31120); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31121); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31122); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31206); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31207); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31208); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31209); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31210); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31211); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31212); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31213); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31214); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31215); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31216); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31217); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31218); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31219); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31220); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31221); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31222); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31300); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 31306); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40206); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40207); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40306); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40409); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40811); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40812); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40813); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 40902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41003); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41004); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 41106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50607); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50804); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 50805); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51003); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51004); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51005); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51006); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51506); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51507); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51508); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 51803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70206); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70207); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70208); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70209); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70306); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70307); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70406); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70407); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70408); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70607); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70608); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70704); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70705); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70706); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70707); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70708); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70709); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70804); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70805); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70806); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 70902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71003); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71004); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71005); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71006); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71007); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 71108); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80206); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80207); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80607); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80704); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80705); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80804); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80903); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 80904); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81003); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81004); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81005); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81006); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81007); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81008); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81009); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81010); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81206); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 81207); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90108); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90109); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90110); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90306); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90307); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90406); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90407); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90506); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90507); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90508); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 90509); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91903); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91904); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91911); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 91912); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1040401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1040402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1040403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1040501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1040502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1040503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1060401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1060402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1060501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1060502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1070702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1080201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1080202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1080203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1080204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1080301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1080302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1080303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1090501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1090502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1090503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1090504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1090505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1151901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1151902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1160703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1310502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1330101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1330102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1330103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1330104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1330201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1330202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1330203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1330204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1380401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1380402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1380403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1380404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1400201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1400202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1400301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1400302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1400303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1420101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1420102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1420103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1420104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1420201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1420202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1420203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 1450505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2210101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2210102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2210103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2210104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2210201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2210202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2210203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2210204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2230201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2230202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2230203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2230204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2230205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2260101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2260102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2260103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2260104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2260201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2260202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2280502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2290702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2300301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2300302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2300303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2300304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2300305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2330401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2330402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 2330403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5020101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5020102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5020103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5020104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5020201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5020202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5020302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5020303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5020304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5030504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060704); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5060705); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5100603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5110302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5120404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150607); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150608); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150704); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5150802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5170101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5170102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5170201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5170202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5170203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5170204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5170301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 5170302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110108); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110109); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110110); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110111); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110112); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110113); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110205); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110206); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110207); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110208); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110209); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110210); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110211); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110212); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110213); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110305); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110306); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110307); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110308); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110309); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110310); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110311); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110312); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110313); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110314); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110315); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110316); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110317); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110318); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110319); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110320); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110406); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110407); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110408); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110409); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110410); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110411); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110412); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110413); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110505); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110506); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110507); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110508); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110509); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110510); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110511); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110512); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110513); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110514); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110515); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110516); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110517); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110604); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110605); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110606); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110607); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110703); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 7110802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8020201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8020202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030203); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030204); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8030404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8040101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8040102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8040103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8040104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8040105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8040201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8040202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8050101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8050102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8050103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8080401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8080402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8090101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8090102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8090201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8090202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8090301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8090302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8090303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8090401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8090402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100104); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100105); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100106); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100107); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100108); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100401); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100402); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100403); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100404); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100405); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100406); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100407); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100408); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100601); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100602); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100603); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100701); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100702); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100801); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100802); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100803); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100901); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100902); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8100903); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8101001); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8101002); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8101003); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8110101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8110102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8110103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8110201); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8110202); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8110301); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8110302); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8110303); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 8110304); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9030501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9030502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9030503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9030504); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9040501); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9040502); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9040503); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9191101); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9191102); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9191103); +INSERT INTO `tbl_role_menu_privi` VALUES (1, 9191201); + +-- ---------------------------- +-- Table structure for tbl_rule +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_rule`; +CREATE TABLE `tbl_rule` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动增长id', + `title` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标题', + `content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '内容', + `use_range` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '适用范围', + `category` bigint(20) NULL DEFAULT NULL COMMENT '分类', + `article_number` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '文号', + `level` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '制度等级', + `secret_level` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '保密等级', + `title_word` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主题词', + `publish_company` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发文单位', + `attach_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件名称', + `attach_path` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '附件路径', + `status` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批人', + `check_date` datetime NULL DEFAULT NULL COMMENT '审批时间', + `check_advice` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批意见', + `allow_user_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '允许查看的用户编码', + `allow_user_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '允许查看的用户名称', + `rule_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '规章制度附件', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '规章制度' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_rule +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_send_log +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_send_log`; +CREATE TABLE `tbl_send_log` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '记录编号', + `send_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送者名称', + `request_date` datetime NULL DEFAULT NULL COMMENT '请求时间', + `send_tag` tinyint(4) NULL DEFAULT NULL COMMENT '定时标志', + `timing_date` datetime NULL DEFAULT NULL COMMENT '定时时间', + `message_type` int(11) NULL DEFAULT NULL COMMENT '短信类型', + `extend_phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '拓展号码', + `receive_phone` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '接受手机号码', + `message_content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '短信内容', + `is_send` int(11) NULL DEFAULT NULL COMMENT '是否发送', + `receive_identify` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人标识', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '发送日志表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_send_log +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_shortcut_icon +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_shortcut_icon`; +CREATE TABLE `tbl_shortcut_icon` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', + `icon_name` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称', + `icon_path` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图标路径', + `status` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '快捷方式图标' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_shortcut_icon +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_stop_date +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_stop_date`; +CREATE TABLE `tbl_stop_date` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称', + `days` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '天数', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '到期日期' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_stop_date +-- ---------------------------- +INSERT INTO `tbl_stop_date` VALUES (1, '3天内', '3'); +INSERT INTO `tbl_stop_date` VALUES (2, '7天内', '7'); +INSERT INTO `tbl_stop_date` VALUES (3, '30天内', '30'); +INSERT INTO `tbl_stop_date` VALUES (4, '60天内', '60'); +INSERT INTO `tbl_stop_date` VALUES (5, '90天内', '90'); +INSERT INTO `tbl_stop_date` VALUES (6, '120天内', '120'); +INSERT INTO `tbl_stop_date` VALUES (7, '180天内', '180'); +INSERT INTO `tbl_stop_date` VALUES (8, '365天内', '365'); +INSERT INTO `tbl_stop_date` VALUES (9, '已过期', '10000'); +INSERT INTO `tbl_stop_date` VALUES (10, '今天到期', '0'); + +-- ---------------------------- +-- Table structure for tbl_sys_diagrams +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_sys_diagrams`; +CREATE TABLE `tbl_sys_diagrams` ( + `diagram_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图标名称', + `belong_person` int(11) NULL DEFAULT NULL COMMENT '归属人', + `diagram_id` int(11) NULL DEFAULT NULL COMMENT '图标编号', + `diagram_version` int(11) NULL DEFAULT NULL COMMENT '图标版本', + `diagram_definition` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '图标定义' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统图标' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_sys_diagrams +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_system_log +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_system_log`; +CREATE TABLE `tbl_system_log` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `log_content` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '日志内容', + `model_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '模块编码', + `ip_addr` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'ip地址', + `dept_privileges` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门权限', + `operate_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人编码', + `operate_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人名称', + `dept_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门编码', + `dept_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '部门名称', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '系统日志' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_system_log +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_todo +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_todo`; +CREATE TABLE `tbl_todo` ( + `id` int(10) NOT NULL AUTO_INCREMENT COMMENT '编号', + `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '名称', + `privileges` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '权限', + `status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `url` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '链接地址', + `show_number` int(11) NULL DEFAULT NULL COMMENT '显示行数', + `days` int(11) NULL DEFAULT NULL COMMENT '天数', + `belong_product` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属产品', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 9 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '待办事项' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_todo +-- ---------------------------- +INSERT INTO `tbl_todo` VALUES (1, '租赁合同到期预警', '', '正常', '', 100, 3650, 'F'); +INSERT INTO `tbl_todo` VALUES (2, '租金到期预警', '', '正常', '', 100, 3650, 'F'); +INSERT INTO `tbl_todo` VALUES (3, '物业费欠费预警', '', '正常', '', 100, 0, 'F'); +INSERT INTO `tbl_todo` VALUES (4, '物业费到期预警', '', '正常', '', 100, 3650, 'F'); +INSERT INTO `tbl_todo` VALUES (5, '待办理的投诉记录', '', '正常', '', 100, 0, 'F'); +INSERT INTO `tbl_todo` VALUES (6, '待办理的服务记录', '', '正常', '', 100, 0, 'F'); +INSERT INTO `tbl_todo` VALUES (7, '待办理的装修记录', '', '正常', '', 100, 0, 'F'); +INSERT INTO `tbl_todo` VALUES (8, '待办理的请修记录', '', '正常', '', 100, 0, 'F'); + +-- ---------------------------- +-- Table structure for tbl_type +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_type`; +CREATE TABLE `tbl_type` ( + `id` int(3) NOT NULL AUTO_INCREMENT COMMENT '类型编号', + `type_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型名称', + `type_status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `belong_product` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属产品', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '类型库' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_type +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_user_dept +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_user_dept`; +CREATE TABLE `tbl_user_dept` ( + `user_id` int(50) NULL DEFAULT NULL COMMENT '用户编号', + `dept_id` int(11) NULL DEFAULT NULL COMMENT '部门编号' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户部门表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_user_dept +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_user_group +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_user_group`; +CREATE TABLE `tbl_user_group` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `group_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群组名称', + `group_type` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '群组类型', + `group_desc` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户分组' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_user_group +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_user_record +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_user_record`; +CREATE TABLE `tbl_user_record` ( + `id` int(50) NOT NULL AUTO_INCREMENT COMMENT '用户编号', + `user_name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户姓名', + `user_password` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户密码', + `user_type` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户类型', + `user_role` int(11) NULL DEFAULT NULL COMMENT '岗位角色', + `user_gender` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户性别', + `user_dept` int(11) NULL DEFAULT NULL COMMENT '所属部门', + `user_job` int(11) NULL DEFAULT NULL COMMENT '职位', + `user_status` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户状态', + `office_phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '办公电话', + `inner_phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '内线电话', + `move_phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '移动电话', + `email` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '电子邮箱', + `is_send_msg` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '允许发送手机短信', + `start_date` datetime NULL DEFAULT NULL COMMENT '有效开始日期', + `stop_date` datetime NULL DEFAULT NULL COMMENT '有效结束日期', + `birthday` datetime NULL DEFAULT NULL COMMENT '出生日期', + `ip_rule` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登陆ip规则', + `user_hiredate` datetime NULL DEFAULT NULL COMMENT '入职日期', + `is_send_wchat` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '允许发送微信', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `is_dept_admin` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否部门管理者', + `last_login_date` datetime NULL DEFAULT NULL COMMENT '最后登陆时间', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户档案' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_user_record +-- ---------------------------- +INSERT INTO `tbl_user_record` VALUES (1, 'admin', 'c4ca4238a0b923820dcc509a6f75849b', '企业', 1, '', 1, 1, '正常', '', '', '13888888888', 'ceshi@126.com', 'Y', '2020-01-01 00:00:00', '2022-12-31 00:00:00', '2020-01-01 00:00:00', 'N', '2020-01-01 00:00:00', 'N', '', '001', '是', '2020-02-03 09:40:33', 'admin', '2020-01-08 12:08:20'); + +-- ---------------------------- +-- Table structure for tbl_user_role +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_user_role`; +CREATE TABLE `tbl_user_role` ( + `user_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户编号', + `role_id` int(11) NULL DEFAULT NULL COMMENT '角色编号' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户角色表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_user_role +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_user_sub_company +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_user_sub_company`; +CREATE TABLE `tbl_user_sub_company` ( + `user_id` int(50) NULL DEFAULT NULL COMMENT '用户编号', + `company_id` int(10) NULL DEFAULT NULL COMMENT '子公司编号' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '用户子公司表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_user_sub_company +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_vod +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_vod`; +CREATE TABLE `tbl_vod` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '视频编码', + `video_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '视频名称', + `video_source` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '来源', + `videl_type` bigint(20) NULL DEFAULT NULL COMMENT '视频类型', + `program_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '节目名称', + `program_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '节目路径', + `simple_intro` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '简介', + `is_first` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否在首页显示', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '视频点播' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_vod +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_vote_data +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_vote_data`; +CREATE TABLE `tbl_vote_data` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '投票编号', + `vote_project_id` int(11) NULL DEFAULT NULL COMMENT '投票项目编号', + `vote_user_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '投票用户编码', + `vote_user_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '投票用户名称', + `vote_date` datetime NULL DEFAULT NULL COMMENT '投票时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '投票数据表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_vote_data +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_vote_detail +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_vote_detail`; +CREATE TABLE `tbl_vote_detail` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', + `vote_id` int(11) NULL DEFAULT NULL COMMENT '投票编号', + `answer_id` int(11) NULL DEFAULT NULL COMMENT '答案编号', + `result` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '答案', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '投票数据明细表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_vote_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_vote_project1 +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_vote_project1`; +CREATE TABLE `tbl_vote_project1` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '项目编号', + `project_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目名称', + `project_type` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目类型', + `project_tag` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目标志', + `project_desc` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目说明', + `input_record_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '建档人', + `input_record_date` datetime NULL DEFAULT NULL COMMENT '建档时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '投票项目表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_vote_project1 +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_vote_subject +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_vote_subject`; +CREATE TABLE `tbl_vote_subject` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '题目编号', + `project_id` int(11) NULL DEFAULT NULL COMMENT '所属项目编号', + `subject_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '题目名称', + `input_record_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '建档人', + `input_record_date` datetime NULL DEFAULT NULL COMMENT '建档时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '投票题目表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_vote_subject +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_work_date +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_work_date`; +CREATE TABLE `tbl_work_date` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `dt` datetime NULL DEFAULT NULL COMMENT '日期', + `weekday` int(11) NULL DEFAULT NULL COMMENT '星期', + `is_work` tinyint(4) NULL DEFAULT NULL COMMENT '是否上班', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 9525 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '工作日期' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of tbl_work_date +-- ---------------------------- +INSERT INTO `tbl_work_date` VALUES (5874, '2021-01-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5875, '2021-01-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5876, '2021-01-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5877, '2021-01-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5878, '2021-01-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5879, '2021-01-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5880, '2021-01-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5881, '2021-01-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5882, '2021-01-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5883, '2021-01-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5884, '2021-01-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5885, '2021-01-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5886, '2021-01-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5887, '2021-01-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5888, '2021-01-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5889, '2021-01-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5890, '2021-01-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5891, '2021-01-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5892, '2021-01-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5893, '2021-01-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5894, '2021-01-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5895, '2021-01-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5896, '2021-01-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5897, '2021-01-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5898, '2021-01-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5899, '2021-01-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5900, '2021-01-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5901, '2021-01-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5902, '2021-01-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5903, '2021-01-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5904, '2021-01-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5905, '2021-02-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5906, '2021-02-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5907, '2021-02-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5908, '2021-02-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5909, '2021-02-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5910, '2021-02-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5911, '2021-02-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5912, '2021-02-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5913, '2021-02-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5914, '2021-02-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5915, '2021-02-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5916, '2021-02-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5917, '2021-02-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5918, '2021-02-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5919, '2021-02-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5920, '2021-02-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5921, '2021-02-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5922, '2021-02-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5923, '2021-02-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5924, '2021-02-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5925, '2021-02-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5926, '2021-02-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5927, '2021-02-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5928, '2021-02-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5929, '2021-02-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5930, '2021-02-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5931, '2021-02-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5932, '2021-02-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5933, '2021-03-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5934, '2021-03-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5935, '2021-03-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5936, '2021-03-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5937, '2021-03-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5938, '2021-03-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5939, '2021-03-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5940, '2021-03-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5941, '2021-03-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5942, '2021-03-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5943, '2021-03-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5944, '2021-03-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5945, '2021-03-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5946, '2021-03-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5947, '2021-03-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5948, '2021-03-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5949, '2021-03-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5950, '2021-03-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5951, '2021-03-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5952, '2021-03-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5953, '2021-03-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5954, '2021-03-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5955, '2021-03-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5956, '2021-03-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5957, '2021-03-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5958, '2021-03-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5959, '2021-03-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5960, '2021-03-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5961, '2021-03-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5962, '2021-03-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5963, '2021-03-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5964, '2021-04-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5965, '2021-04-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5966, '2021-04-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5967, '2021-04-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5968, '2021-04-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5969, '2021-04-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5970, '2021-04-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5971, '2021-04-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5972, '2021-04-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5973, '2021-04-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5974, '2021-04-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5975, '2021-04-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5976, '2021-04-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5977, '2021-04-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5978, '2021-04-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5979, '2021-04-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5980, '2021-04-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5981, '2021-04-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5982, '2021-04-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5983, '2021-04-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5984, '2021-04-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5985, '2021-04-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5986, '2021-04-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5987, '2021-04-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5988, '2021-04-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5989, '2021-04-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5990, '2021-04-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5991, '2021-04-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5992, '2021-04-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (5993, '2021-04-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (5994, '2021-05-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (5995, '2021-05-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (5996, '2021-05-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (5997, '2021-05-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (5998, '2021-05-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (5999, '2021-05-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6000, '2021-05-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6001, '2021-05-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6002, '2021-05-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6003, '2021-05-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6004, '2021-05-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6005, '2021-05-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6006, '2021-05-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6007, '2021-05-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6008, '2021-05-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6009, '2021-05-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6010, '2021-05-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6011, '2021-05-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6012, '2021-05-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6013, '2021-05-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6014, '2021-05-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6015, '2021-05-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6016, '2021-05-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6017, '2021-05-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6018, '2021-05-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6019, '2021-05-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6020, '2021-05-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6021, '2021-05-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6022, '2021-05-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6023, '2021-05-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6024, '2021-05-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6025, '2021-06-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6026, '2021-06-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6027, '2021-06-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6028, '2021-06-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6029, '2021-06-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6030, '2021-06-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6031, '2021-06-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6032, '2021-06-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6033, '2021-06-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6034, '2021-06-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6035, '2021-06-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6036, '2021-06-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6037, '2021-06-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6038, '2021-06-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6039, '2021-06-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6040, '2021-06-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6041, '2021-06-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6042, '2021-06-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6043, '2021-06-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6044, '2021-06-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6045, '2021-06-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6046, '2021-06-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6047, '2021-06-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6048, '2021-06-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6049, '2021-06-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6050, '2021-06-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6051, '2021-06-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6052, '2021-06-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6053, '2021-06-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6054, '2021-06-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6055, '2021-07-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6056, '2021-07-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6057, '2021-07-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6058, '2021-07-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6059, '2021-07-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6060, '2021-07-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6061, '2021-07-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6062, '2021-07-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6063, '2021-07-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6064, '2021-07-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6065, '2021-07-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6066, '2021-07-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6067, '2021-07-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6068, '2021-07-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6069, '2021-07-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6070, '2021-07-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6071, '2021-07-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6072, '2021-07-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6073, '2021-07-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6074, '2021-07-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6075, '2021-07-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6076, '2021-07-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6077, '2021-07-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6078, '2021-07-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6079, '2021-07-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6080, '2021-07-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6081, '2021-07-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6082, '2021-07-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6083, '2021-07-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6084, '2021-07-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6085, '2021-07-31 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6086, '2021-08-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6087, '2021-08-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6088, '2021-08-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6089, '2021-08-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6090, '2021-08-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6091, '2021-08-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6092, '2021-08-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6093, '2021-08-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6094, '2021-08-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6095, '2021-08-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6096, '2021-08-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6097, '2021-08-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6098, '2021-08-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6099, '2021-08-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6100, '2021-08-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6101, '2021-08-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6102, '2021-08-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6103, '2021-08-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6104, '2021-08-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6105, '2021-08-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6106, '2021-08-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6107, '2021-08-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6108, '2021-08-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6109, '2021-08-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6110, '2021-08-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6111, '2021-08-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6112, '2021-08-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6113, '2021-08-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6114, '2021-08-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6115, '2021-08-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6116, '2021-08-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6117, '2021-09-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6118, '2021-09-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6119, '2021-09-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6120, '2021-09-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6121, '2021-09-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6122, '2021-09-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6123, '2021-09-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6124, '2021-09-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6125, '2021-09-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6126, '2021-09-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6127, '2021-09-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6128, '2021-09-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6129, '2021-09-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6130, '2021-09-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6131, '2021-09-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6132, '2021-09-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6133, '2021-09-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6134, '2021-09-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6135, '2021-09-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6136, '2021-09-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6137, '2021-09-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6138, '2021-09-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6139, '2021-09-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6140, '2021-09-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6141, '2021-09-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6142, '2021-09-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6143, '2021-09-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6144, '2021-09-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6145, '2021-09-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6146, '2021-09-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6147, '2021-10-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6148, '2021-10-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6149, '2021-10-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6150, '2021-10-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6151, '2021-10-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6152, '2021-10-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6153, '2021-10-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6154, '2021-10-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6155, '2021-10-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6156, '2021-10-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6157, '2021-10-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6158, '2021-10-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6159, '2021-10-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6160, '2021-10-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6161, '2021-10-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6162, '2021-10-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6163, '2021-10-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6164, '2021-10-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6165, '2021-10-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6166, '2021-10-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6167, '2021-10-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6168, '2021-10-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6169, '2021-10-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6170, '2021-10-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6171, '2021-10-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6172, '2021-10-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6173, '2021-10-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6174, '2021-10-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6175, '2021-10-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6176, '2021-10-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6177, '2021-10-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6178, '2021-11-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6179, '2021-11-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6180, '2021-11-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6181, '2021-11-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6182, '2021-11-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6183, '2021-11-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6184, '2021-11-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6185, '2021-11-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6186, '2021-11-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6187, '2021-11-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6188, '2021-11-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6189, '2021-11-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6190, '2021-11-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6191, '2021-11-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6192, '2021-11-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6193, '2021-11-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6194, '2021-11-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6195, '2021-11-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6196, '2021-11-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6197, '2021-11-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6198, '2021-11-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6199, '2021-11-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6200, '2021-11-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6201, '2021-11-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6202, '2021-11-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6203, '2021-11-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6204, '2021-11-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6205, '2021-11-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6206, '2021-11-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6207, '2021-11-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6208, '2021-12-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6209, '2021-12-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6210, '2021-12-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6211, '2021-12-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6212, '2021-12-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6213, '2021-12-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6214, '2021-12-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6215, '2021-12-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6216, '2021-12-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6217, '2021-12-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6218, '2021-12-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6219, '2021-12-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6220, '2021-12-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6221, '2021-12-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6222, '2021-12-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6223, '2021-12-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6224, '2021-12-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6225, '2021-12-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6226, '2021-12-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6227, '2021-12-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6228, '2021-12-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6229, '2021-12-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6230, '2021-12-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6231, '2021-12-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6232, '2021-12-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6233, '2021-12-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6234, '2021-12-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6235, '2021-12-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6236, '2021-12-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6237, '2021-12-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6238, '2021-12-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6239, '2022-01-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6240, '2022-01-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6241, '2022-01-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6242, '2022-01-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6243, '2022-01-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6244, '2022-01-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6245, '2022-01-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6246, '2022-01-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6247, '2022-01-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6248, '2022-01-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6249, '2022-01-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6250, '2022-01-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6251, '2022-01-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6252, '2022-01-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6253, '2022-01-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6254, '2022-01-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6255, '2022-01-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6256, '2022-01-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6257, '2022-01-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6258, '2022-01-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6259, '2022-01-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6260, '2022-01-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6261, '2022-01-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6262, '2022-01-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6263, '2022-01-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6264, '2022-01-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6265, '2022-01-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6266, '2022-01-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6267, '2022-01-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6268, '2022-01-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6269, '2022-01-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6270, '2022-02-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6271, '2022-02-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6272, '2022-02-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6273, '2022-02-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6274, '2022-02-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6275, '2022-02-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6276, '2022-02-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6277, '2022-02-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6278, '2022-02-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6279, '2022-02-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6280, '2022-02-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6281, '2022-02-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6282, '2022-02-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6283, '2022-02-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6284, '2022-02-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6285, '2022-02-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6286, '2022-02-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6287, '2022-02-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6288, '2022-02-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6289, '2022-02-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6290, '2022-02-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6291, '2022-02-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6292, '2022-02-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6293, '2022-02-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6294, '2022-02-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6295, '2022-02-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6296, '2022-02-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6297, '2022-02-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6299, '2022-03-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6300, '2022-03-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6301, '2022-03-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6302, '2022-03-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6303, '2022-03-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6304, '2022-03-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6305, '2022-03-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6306, '2022-03-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6307, '2022-03-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6308, '2022-03-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6309, '2022-03-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6310, '2022-03-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6311, '2022-03-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6312, '2022-03-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6313, '2022-03-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6314, '2022-03-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6315, '2022-03-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6316, '2022-03-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6317, '2022-03-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6318, '2022-03-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6319, '2022-03-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6320, '2022-03-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6321, '2022-03-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6322, '2022-03-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6323, '2022-03-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6324, '2022-03-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6325, '2022-03-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6326, '2022-03-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6327, '2022-03-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6328, '2022-03-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6329, '2022-03-31 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6330, '2022-04-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6331, '2022-04-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6332, '2022-04-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6333, '2022-04-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6334, '2022-04-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6335, '2022-04-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6336, '2022-04-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6337, '2022-04-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6338, '2022-04-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6339, '2022-04-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6340, '2022-04-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6341, '2022-04-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6342, '2022-04-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6343, '2022-04-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6344, '2022-04-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6345, '2022-04-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6346, '2022-04-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6347, '2022-04-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6348, '2022-04-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6349, '2022-04-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6350, '2022-04-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6351, '2022-04-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6352, '2022-04-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6353, '2022-04-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6354, '2022-04-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6355, '2022-04-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6356, '2022-04-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6357, '2022-04-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6358, '2022-04-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6359, '2022-04-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6360, '2022-05-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6361, '2022-05-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6362, '2022-05-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6363, '2022-05-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6364, '2022-05-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6365, '2022-05-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6366, '2022-05-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6367, '2022-05-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6368, '2022-05-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6369, '2022-05-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6370, '2022-05-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6371, '2022-05-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6372, '2022-05-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6373, '2022-05-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6374, '2022-05-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6375, '2022-05-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6376, '2022-05-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6377, '2022-05-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6378, '2022-05-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6379, '2022-05-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6380, '2022-05-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6381, '2022-05-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6382, '2022-05-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6383, '2022-05-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6384, '2022-05-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6385, '2022-05-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6386, '2022-05-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6387, '2022-05-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6388, '2022-05-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6389, '2022-05-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6390, '2022-05-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6391, '2022-06-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6392, '2022-06-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6393, '2022-06-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6394, '2022-06-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6395, '2022-06-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6396, '2022-06-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6397, '2022-06-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6398, '2022-06-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6399, '2022-06-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6400, '2022-06-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6401, '2022-06-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6402, '2022-06-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6403, '2022-06-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6404, '2022-06-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6405, '2022-06-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6406, '2022-06-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6407, '2022-06-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6408, '2022-06-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6409, '2022-06-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6410, '2022-06-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6411, '2022-06-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6412, '2022-06-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6413, '2022-06-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6414, '2022-06-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6415, '2022-06-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6416, '2022-06-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6417, '2022-06-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6418, '2022-06-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6419, '2022-06-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6420, '2022-06-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6421, '2022-07-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6422, '2022-07-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6423, '2022-07-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6424, '2022-07-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6425, '2022-07-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6426, '2022-07-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6427, '2022-07-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6428, '2022-07-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6429, '2022-07-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6430, '2022-07-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6431, '2022-07-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6432, '2022-07-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6433, '2022-07-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6434, '2022-07-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6435, '2022-07-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6436, '2022-07-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6437, '2022-07-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6438, '2022-07-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6439, '2022-07-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6440, '2022-07-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6441, '2022-07-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6442, '2022-07-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6443, '2022-07-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6444, '2022-07-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6445, '2022-07-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6446, '2022-07-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6447, '2022-07-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6448, '2022-07-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6449, '2022-07-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6450, '2022-07-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6451, '2022-07-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6452, '2022-08-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6453, '2022-08-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6454, '2022-08-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6455, '2022-08-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6456, '2022-08-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6457, '2022-08-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6458, '2022-08-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6459, '2022-08-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6460, '2022-08-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6461, '2022-08-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6462, '2022-08-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6463, '2022-08-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6464, '2022-08-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6465, '2022-08-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6466, '2022-08-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6467, '2022-08-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6468, '2022-08-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6469, '2022-08-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6470, '2022-08-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6471, '2022-08-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6472, '2022-08-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6473, '2022-08-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6474, '2022-08-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6475, '2022-08-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6476, '2022-08-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6477, '2022-08-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6478, '2022-08-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6479, '2022-08-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6480, '2022-08-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6481, '2022-08-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6482, '2022-08-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6483, '2022-09-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6484, '2022-09-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6485, '2022-09-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6486, '2022-09-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6487, '2022-09-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6488, '2022-09-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6489, '2022-09-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6490, '2022-09-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6491, '2022-09-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6492, '2022-09-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6493, '2022-09-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6494, '2022-09-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6495, '2022-09-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6496, '2022-09-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6497, '2022-09-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6498, '2022-09-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6499, '2022-09-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6500, '2022-09-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6501, '2022-09-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6502, '2022-09-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6503, '2022-09-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6504, '2022-09-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6505, '2022-09-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6506, '2022-09-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6507, '2022-09-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6508, '2022-09-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6509, '2022-09-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6510, '2022-09-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6511, '2022-09-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6512, '2022-09-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6513, '2022-10-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6514, '2022-10-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6515, '2022-10-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6516, '2022-10-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6517, '2022-10-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6518, '2022-10-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6519, '2022-10-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6520, '2022-10-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6521, '2022-10-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6522, '2022-10-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6523, '2022-10-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6524, '2022-10-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6525, '2022-10-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6526, '2022-10-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6527, '2022-10-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6528, '2022-10-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6529, '2022-10-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6530, '2022-10-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6531, '2022-10-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6532, '2022-10-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6533, '2022-10-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6534, '2022-10-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6535, '2022-10-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6536, '2022-10-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6537, '2022-10-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6538, '2022-10-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6539, '2022-10-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6540, '2022-10-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6541, '2022-10-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6542, '2022-10-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6543, '2022-10-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6544, '2022-11-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6545, '2022-11-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6546, '2022-11-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6547, '2022-11-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6548, '2022-11-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6549, '2022-11-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6550, '2022-11-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6551, '2022-11-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6552, '2022-11-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6553, '2022-11-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6554, '2022-11-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6555, '2022-11-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6556, '2022-11-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6557, '2022-11-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6558, '2022-11-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6559, '2022-11-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6560, '2022-11-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6561, '2022-11-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6562, '2022-11-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6563, '2022-11-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6564, '2022-11-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6565, '2022-11-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6566, '2022-11-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6567, '2022-11-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6568, '2022-11-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6569, '2022-11-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6570, '2022-11-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6571, '2022-11-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6572, '2022-11-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6573, '2022-11-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6574, '2022-12-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6575, '2022-12-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6576, '2022-12-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6577, '2022-12-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6578, '2022-12-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6579, '2022-12-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6580, '2022-12-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6581, '2022-12-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6582, '2022-12-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6583, '2022-12-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6584, '2022-12-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6585, '2022-12-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6586, '2022-12-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6587, '2022-12-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6588, '2022-12-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6589, '2022-12-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6590, '2022-12-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6591, '2022-12-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6592, '2022-12-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6593, '2022-12-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6594, '2022-12-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6595, '2022-12-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6596, '2022-12-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6597, '2022-12-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6598, '2022-12-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6599, '2022-12-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6600, '2022-12-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6601, '2022-12-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6602, '2022-12-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6603, '2022-12-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6604, '2022-12-31 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6605, '2023-01-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6606, '2023-01-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6607, '2023-01-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6608, '2023-01-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6609, '2023-01-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6610, '2023-01-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6611, '2023-01-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6612, '2023-01-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6613, '2023-01-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6614, '2023-01-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6615, '2023-01-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6616, '2023-01-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6617, '2023-01-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6618, '2023-01-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6619, '2023-01-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6620, '2023-01-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6621, '2023-01-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6622, '2023-01-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6623, '2023-01-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6624, '2023-01-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6625, '2023-01-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6626, '2023-01-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6627, '2023-01-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6628, '2023-01-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6629, '2023-01-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6630, '2023-01-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6631, '2023-01-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6632, '2023-01-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6633, '2023-01-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6634, '2023-01-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6635, '2023-01-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6636, '2023-02-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6637, '2023-02-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6638, '2023-02-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6639, '2023-02-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6640, '2023-02-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6641, '2023-02-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6642, '2023-02-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6643, '2023-02-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6644, '2023-02-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6645, '2023-02-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6646, '2023-02-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6647, '2023-02-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6648, '2023-02-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6649, '2023-02-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6650, '2023-02-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6651, '2023-02-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6652, '2023-02-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6653, '2023-02-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6654, '2023-02-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6655, '2023-02-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6656, '2023-02-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6657, '2023-02-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6658, '2023-02-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6659, '2023-02-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6660, '2023-02-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6661, '2023-02-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6662, '2023-02-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6663, '2023-02-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6664, '2023-03-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6665, '2023-03-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6666, '2023-03-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6667, '2023-03-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6668, '2023-03-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6669, '2023-03-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6670, '2023-03-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6671, '2023-03-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6672, '2023-03-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6673, '2023-03-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6674, '2023-03-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6675, '2023-03-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6676, '2023-03-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6677, '2023-03-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6678, '2023-03-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6679, '2023-03-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6680, '2023-03-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6681, '2023-03-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6682, '2023-03-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6683, '2023-03-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6684, '2023-03-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6685, '2023-03-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6686, '2023-03-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6687, '2023-03-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6688, '2023-03-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6689, '2023-03-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6690, '2023-03-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6691, '2023-03-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6692, '2023-03-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6693, '2023-03-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6694, '2023-03-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6695, '2023-04-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6696, '2023-04-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6697, '2023-04-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6698, '2023-04-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6699, '2023-04-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6700, '2023-04-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6701, '2023-04-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6702, '2023-04-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6703, '2023-04-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6704, '2023-04-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6705, '2023-04-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6706, '2023-04-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6707, '2023-04-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6708, '2023-04-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6709, '2023-04-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6710, '2023-04-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6711, '2023-04-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6712, '2023-04-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6713, '2023-04-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6714, '2023-04-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6715, '2023-04-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6716, '2023-04-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6717, '2023-04-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6718, '2023-04-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6719, '2023-04-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6720, '2023-04-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6721, '2023-04-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6722, '2023-04-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6723, '2023-04-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6724, '2023-04-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6725, '2023-05-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6726, '2023-05-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6727, '2023-05-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6728, '2023-05-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6729, '2023-05-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6730, '2023-05-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6731, '2023-05-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6732, '2023-05-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6733, '2023-05-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6734, '2023-05-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6735, '2023-05-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6736, '2023-05-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6737, '2023-05-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6738, '2023-05-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6739, '2023-05-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6740, '2023-05-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6741, '2023-05-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6742, '2023-05-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6743, '2023-05-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6744, '2023-05-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6745, '2023-05-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6746, '2023-05-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6747, '2023-05-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6748, '2023-05-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6749, '2023-05-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6750, '2023-05-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6751, '2023-05-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6752, '2023-05-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6753, '2023-05-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6754, '2023-05-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6755, '2023-05-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6756, '2023-06-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6757, '2023-06-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6758, '2023-06-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6759, '2023-06-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6760, '2023-06-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6761, '2023-06-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6762, '2023-06-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6763, '2023-06-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6764, '2023-06-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6765, '2023-06-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6766, '2023-06-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6767, '2023-06-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6768, '2023-06-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6769, '2023-06-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6770, '2023-06-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6771, '2023-06-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6772, '2023-06-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6773, '2023-06-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6774, '2023-06-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6775, '2023-06-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6776, '2023-06-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6777, '2023-06-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6778, '2023-06-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6779, '2023-06-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6780, '2023-06-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6781, '2023-06-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6782, '2023-06-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6783, '2023-06-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6784, '2023-06-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6785, '2023-06-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6786, '2023-07-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6787, '2023-07-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6788, '2023-07-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6789, '2023-07-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6790, '2023-07-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6791, '2023-07-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6792, '2023-07-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6793, '2023-07-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6794, '2023-07-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6795, '2023-07-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6796, '2023-07-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6797, '2023-07-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6798, '2023-07-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6799, '2023-07-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6800, '2023-07-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6801, '2023-07-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6802, '2023-07-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6803, '2023-07-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6804, '2023-07-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6805, '2023-07-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6806, '2023-07-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6807, '2023-07-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6808, '2023-07-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6809, '2023-07-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6810, '2023-07-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6811, '2023-07-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6812, '2023-07-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6813, '2023-07-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6814, '2023-07-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6815, '2023-07-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6816, '2023-07-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6817, '2023-08-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6818, '2023-08-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6819, '2023-08-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6820, '2023-08-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6821, '2023-08-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6822, '2023-08-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6823, '2023-08-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6824, '2023-08-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6825, '2023-08-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6826, '2023-08-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6827, '2023-08-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6828, '2023-08-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6829, '2023-08-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6830, '2023-08-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6831, '2023-08-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6832, '2023-08-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6833, '2023-08-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6834, '2023-08-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6835, '2023-08-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6836, '2023-08-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6837, '2023-08-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6838, '2023-08-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6839, '2023-08-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6840, '2023-08-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6841, '2023-08-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6842, '2023-08-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6843, '2023-08-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6844, '2023-08-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6845, '2023-08-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6846, '2023-08-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6847, '2023-08-31 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6848, '2023-09-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6849, '2023-09-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6850, '2023-09-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6851, '2023-09-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6852, '2023-09-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6853, '2023-09-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6854, '2023-09-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6855, '2023-09-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6856, '2023-09-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6857, '2023-09-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6858, '2023-09-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6859, '2023-09-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6860, '2023-09-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6861, '2023-09-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6862, '2023-09-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6863, '2023-09-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6864, '2023-09-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6865, '2023-09-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6866, '2023-09-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6867, '2023-09-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6868, '2023-09-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6869, '2023-09-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6870, '2023-09-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6871, '2023-09-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6872, '2023-09-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6873, '2023-09-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6874, '2023-09-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6875, '2023-09-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6876, '2023-09-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6877, '2023-09-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6878, '2023-10-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6879, '2023-10-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6880, '2023-10-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6881, '2023-10-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6882, '2023-10-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6883, '2023-10-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6884, '2023-10-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6885, '2023-10-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6886, '2023-10-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6887, '2023-10-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6888, '2023-10-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6889, '2023-10-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6890, '2023-10-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6891, '2023-10-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6892, '2023-10-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6893, '2023-10-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6894, '2023-10-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6895, '2023-10-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6896, '2023-10-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6897, '2023-10-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6898, '2023-10-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6899, '2023-10-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6900, '2023-10-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6901, '2023-10-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6902, '2023-10-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6903, '2023-10-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6904, '2023-10-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6905, '2023-10-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6906, '2023-10-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6907, '2023-10-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6908, '2023-10-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6909, '2023-11-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6910, '2023-11-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6911, '2023-11-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6912, '2023-11-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6913, '2023-11-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6914, '2023-11-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6915, '2023-11-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6916, '2023-11-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6917, '2023-11-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6918, '2023-11-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6919, '2023-11-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6920, '2023-11-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6921, '2023-11-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6922, '2023-11-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6923, '2023-11-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6924, '2023-11-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6925, '2023-11-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6926, '2023-11-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6927, '2023-11-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6928, '2023-11-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6929, '2023-11-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6930, '2023-11-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6931, '2023-11-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6932, '2023-11-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6933, '2023-11-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6934, '2023-11-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6935, '2023-11-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6936, '2023-11-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6937, '2023-11-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6938, '2023-11-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6939, '2023-12-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6940, '2023-12-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6941, '2023-12-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6942, '2023-12-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6943, '2023-12-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6944, '2023-12-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6945, '2023-12-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6946, '2023-12-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6947, '2023-12-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6948, '2023-12-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6949, '2023-12-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6950, '2023-12-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6951, '2023-12-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6952, '2023-12-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6953, '2023-12-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6954, '2023-12-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6955, '2023-12-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6956, '2023-12-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6957, '2023-12-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6958, '2023-12-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6959, '2023-12-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6960, '2023-12-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6961, '2023-12-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6962, '2023-12-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6963, '2023-12-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6964, '2023-12-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6965, '2023-12-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6966, '2023-12-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6967, '2023-12-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6968, '2023-12-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6969, '2023-12-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6970, '2024-01-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6971, '2024-01-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6972, '2024-01-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6973, '2024-01-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6974, '2024-01-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6975, '2024-01-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6976, '2024-01-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6977, '2024-01-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6978, '2024-01-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6979, '2024-01-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6980, '2024-01-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6981, '2024-01-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6982, '2024-01-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6983, '2024-01-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6984, '2024-01-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6985, '2024-01-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6986, '2024-01-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6987, '2024-01-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6988, '2024-01-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6989, '2024-01-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6990, '2024-01-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6991, '2024-01-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6992, '2024-01-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (6993, '2024-01-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (6994, '2024-01-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (6995, '2024-01-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (6996, '2024-01-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (6997, '2024-01-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (6998, '2024-01-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (6999, '2024-01-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7000, '2024-01-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7001, '2024-02-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7002, '2024-02-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7003, '2024-02-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7004, '2024-02-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7005, '2024-02-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7006, '2024-02-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7007, '2024-02-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7008, '2024-02-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7009, '2024-02-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7010, '2024-02-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7011, '2024-02-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7012, '2024-02-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7013, '2024-02-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7014, '2024-02-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7015, '2024-02-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7016, '2024-02-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7017, '2024-02-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7018, '2024-02-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7019, '2024-02-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7020, '2024-02-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7021, '2024-02-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7022, '2024-02-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7023, '2024-02-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7024, '2024-02-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7025, '2024-02-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7026, '2024-02-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7027, '2024-02-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7028, '2024-02-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7029, '2024-03-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7030, '2024-03-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7031, '2024-03-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7032, '2024-03-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7033, '2024-03-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7034, '2024-03-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7035, '2024-03-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7036, '2024-03-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7037, '2024-03-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7038, '2024-03-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7039, '2024-03-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7040, '2024-03-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7041, '2024-03-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7042, '2024-03-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7043, '2024-03-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7044, '2024-03-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7045, '2024-03-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7046, '2024-03-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7047, '2024-03-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7048, '2024-03-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7049, '2024-03-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7050, '2024-03-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7051, '2024-03-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7052, '2024-03-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7053, '2024-03-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7054, '2024-03-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7055, '2024-03-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7056, '2024-03-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7057, '2024-03-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7058, '2024-03-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7059, '2024-03-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7060, '2024-04-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7061, '2024-04-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7062, '2024-04-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7063, '2024-04-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7064, '2024-04-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7065, '2024-04-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7066, '2024-04-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7067, '2024-04-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7068, '2024-04-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7069, '2024-04-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7070, '2024-04-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7071, '2024-04-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7072, '2024-04-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7073, '2024-04-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7074, '2024-04-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7075, '2024-04-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7076, '2024-04-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7077, '2024-04-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7078, '2024-04-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7079, '2024-04-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7080, '2024-04-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7081, '2024-04-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7082, '2024-04-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7083, '2024-04-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7084, '2024-04-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7085, '2024-04-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7086, '2024-04-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7087, '2024-04-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7088, '2024-04-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7089, '2024-04-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7090, '2024-05-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7091, '2024-05-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7092, '2024-05-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7093, '2024-05-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7094, '2024-05-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7095, '2024-05-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7096, '2024-05-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7097, '2024-05-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7098, '2024-05-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7099, '2024-05-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7100, '2024-05-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7101, '2024-05-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7102, '2024-05-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7103, '2024-05-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7104, '2024-05-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7105, '2024-05-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7106, '2024-05-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7107, '2024-05-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7108, '2024-05-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7109, '2024-05-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7110, '2024-05-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7111, '2024-05-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7112, '2024-05-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7113, '2024-05-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7114, '2024-05-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7115, '2024-05-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7116, '2024-05-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7117, '2024-05-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7118, '2024-05-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7119, '2024-05-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7120, '2024-05-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7121, '2024-06-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7122, '2024-06-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7123, '2024-06-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7124, '2024-06-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7125, '2024-06-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7126, '2024-06-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7127, '2024-06-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7128, '2024-06-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7129, '2024-06-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7130, '2024-06-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7131, '2024-06-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7132, '2024-06-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7133, '2024-06-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7134, '2024-06-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7135, '2024-06-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7136, '2024-06-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7137, '2024-06-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7138, '2024-06-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7139, '2024-06-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7140, '2024-06-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7141, '2024-06-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7142, '2024-06-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7143, '2024-06-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7144, '2024-06-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7145, '2024-06-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7146, '2024-06-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7147, '2024-06-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7148, '2024-06-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7149, '2024-06-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7150, '2024-06-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7151, '2024-07-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7152, '2024-07-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7153, '2024-07-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7154, '2024-07-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7155, '2024-07-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7156, '2024-07-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7157, '2024-07-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7158, '2024-07-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7159, '2024-07-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7160, '2024-07-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7161, '2024-07-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7162, '2024-07-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7163, '2024-07-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7164, '2024-07-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7165, '2024-07-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7166, '2024-07-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7167, '2024-07-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7168, '2024-07-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7169, '2024-07-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7170, '2024-07-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7171, '2024-07-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7172, '2024-07-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7173, '2024-07-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7174, '2024-07-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7175, '2024-07-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7176, '2024-07-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7177, '2024-07-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7178, '2024-07-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7179, '2024-07-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7180, '2024-07-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7181, '2024-07-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7182, '2024-08-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7183, '2024-08-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7184, '2024-08-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7185, '2024-08-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7186, '2024-08-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7187, '2024-08-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7188, '2024-08-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7189, '2024-08-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7190, '2024-08-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7191, '2024-08-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7192, '2024-08-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7193, '2024-08-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7194, '2024-08-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7195, '2024-08-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7196, '2024-08-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7197, '2024-08-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7198, '2024-08-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7199, '2024-08-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7200, '2024-08-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7201, '2024-08-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7202, '2024-08-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7203, '2024-08-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7204, '2024-08-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7205, '2024-08-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7206, '2024-08-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7207, '2024-08-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7208, '2024-08-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7209, '2024-08-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7210, '2024-08-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7211, '2024-08-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7212, '2024-08-31 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7213, '2024-09-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7214, '2024-09-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7215, '2024-09-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7216, '2024-09-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7217, '2024-09-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7218, '2024-09-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7219, '2024-09-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7220, '2024-09-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7221, '2024-09-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7222, '2024-09-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7223, '2024-09-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7224, '2024-09-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7225, '2024-09-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7226, '2024-09-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7227, '2024-09-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7228, '2024-09-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7229, '2024-09-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7230, '2024-09-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7231, '2024-09-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7232, '2024-09-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7233, '2024-09-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7234, '2024-09-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7235, '2024-09-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7236, '2024-09-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7237, '2024-09-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7238, '2024-09-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7239, '2024-09-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7240, '2024-09-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7241, '2024-09-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7242, '2024-09-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7243, '2024-10-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7244, '2024-10-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7245, '2024-10-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7246, '2024-10-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7247, '2024-10-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7248, '2024-10-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7249, '2024-10-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7250, '2024-10-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7251, '2024-10-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7252, '2024-10-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7253, '2024-10-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7254, '2024-10-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7255, '2024-10-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7256, '2024-10-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7257, '2024-10-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7258, '2024-10-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7259, '2024-10-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7260, '2024-10-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7261, '2024-10-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7262, '2024-10-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7263, '2024-10-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7264, '2024-10-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7265, '2024-10-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7266, '2024-10-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7267, '2024-10-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7268, '2024-10-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7269, '2024-10-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7270, '2024-10-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7271, '2024-10-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7272, '2024-10-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7273, '2024-10-31 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7274, '2024-11-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7275, '2024-11-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7276, '2024-11-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7277, '2024-11-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7278, '2024-11-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7279, '2024-11-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7280, '2024-11-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7281, '2024-11-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7282, '2024-11-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7283, '2024-11-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7284, '2024-11-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7285, '2024-11-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7286, '2024-11-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7287, '2024-11-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7288, '2024-11-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7289, '2024-11-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7290, '2024-11-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7291, '2024-11-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7292, '2024-11-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7293, '2024-11-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7294, '2024-11-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7295, '2024-11-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7296, '2024-11-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7297, '2024-11-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7298, '2024-11-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7299, '2024-11-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7300, '2024-11-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7301, '2024-11-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7302, '2024-11-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7303, '2024-11-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7304, '2024-12-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7305, '2024-12-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7306, '2024-12-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7307, '2024-12-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7308, '2024-12-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7309, '2024-12-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7310, '2024-12-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7311, '2024-12-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7312, '2024-12-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7313, '2024-12-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7314, '2024-12-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7315, '2024-12-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7316, '2024-12-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7317, '2024-12-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7318, '2024-12-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7319, '2024-12-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7320, '2024-12-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7321, '2024-12-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7322, '2024-12-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7323, '2024-12-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7324, '2024-12-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7325, '2024-12-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7326, '2024-12-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7327, '2024-12-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7328, '2024-12-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7329, '2024-12-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7330, '2024-12-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7331, '2024-12-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7332, '2024-12-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7333, '2024-12-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7334, '2024-12-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7335, '2025-01-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7336, '2025-01-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7337, '2025-01-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7338, '2025-01-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7339, '2025-01-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7340, '2025-01-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7341, '2025-01-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7342, '2025-01-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7343, '2025-01-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7344, '2025-01-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7345, '2025-01-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7346, '2025-01-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7347, '2025-01-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7348, '2025-01-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7349, '2025-01-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7350, '2025-01-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7351, '2025-01-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7352, '2025-01-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7353, '2025-01-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7354, '2025-01-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7355, '2025-01-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7356, '2025-01-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7357, '2025-01-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7358, '2025-01-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7359, '2025-01-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7360, '2025-01-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7361, '2025-01-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7362, '2025-01-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7363, '2025-01-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7364, '2025-01-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7365, '2025-01-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7366, '2025-02-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7367, '2025-02-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7368, '2025-02-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7369, '2025-02-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7370, '2025-02-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7371, '2025-02-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7372, '2025-02-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7373, '2025-02-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7374, '2025-02-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7375, '2025-02-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7376, '2025-02-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7377, '2025-02-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7378, '2025-02-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7379, '2025-02-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7380, '2025-02-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7381, '2025-02-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7382, '2025-02-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7383, '2025-02-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7384, '2025-02-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7385, '2025-02-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7386, '2025-02-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7387, '2025-02-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7388, '2025-02-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7389, '2025-02-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7390, '2025-02-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7391, '2025-02-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7392, '2025-02-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7393, '2025-02-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7394, '2025-03-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7395, '2025-03-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7396, '2025-03-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7397, '2025-03-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7398, '2025-03-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7399, '2025-03-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7400, '2025-03-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7401, '2025-03-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7402, '2025-03-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7403, '2025-03-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7404, '2025-03-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7405, '2025-03-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7406, '2025-03-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7407, '2025-03-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7408, '2025-03-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7409, '2025-03-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7410, '2025-03-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7411, '2025-03-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7412, '2025-03-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7413, '2025-03-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7414, '2025-03-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7415, '2025-03-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7416, '2025-03-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7417, '2025-03-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7418, '2025-03-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7419, '2025-03-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7420, '2025-03-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7421, '2025-03-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7422, '2025-03-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7423, '2025-03-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7424, '2025-03-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7425, '2025-04-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7426, '2025-04-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7427, '2025-04-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7428, '2025-04-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7429, '2025-04-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7430, '2025-04-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7431, '2025-04-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7432, '2025-04-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7433, '2025-04-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7434, '2025-04-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7435, '2025-04-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7436, '2025-04-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7437, '2025-04-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7438, '2025-04-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7439, '2025-04-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7440, '2025-04-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7441, '2025-04-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7442, '2025-04-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7443, '2025-04-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7444, '2025-04-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7445, '2025-04-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7446, '2025-04-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7447, '2025-04-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7448, '2025-04-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7449, '2025-04-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7450, '2025-04-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7451, '2025-04-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7452, '2025-04-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7453, '2025-04-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7454, '2025-04-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7455, '2025-05-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7456, '2025-05-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7457, '2025-05-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7458, '2025-05-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7459, '2025-05-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7460, '2025-05-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7461, '2025-05-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7462, '2025-05-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7463, '2025-05-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7464, '2025-05-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7465, '2025-05-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7466, '2025-05-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7467, '2025-05-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7468, '2025-05-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7469, '2025-05-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7470, '2025-05-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7471, '2025-05-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7472, '2025-05-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7473, '2025-05-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7474, '2025-05-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7475, '2025-05-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7476, '2025-05-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7477, '2025-05-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7478, '2025-05-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7479, '2025-05-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7480, '2025-05-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7481, '2025-05-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7482, '2025-05-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7483, '2025-05-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7484, '2025-05-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7485, '2025-05-31 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7486, '2025-06-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7487, '2025-06-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7488, '2025-06-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7489, '2025-06-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7490, '2025-06-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7491, '2025-06-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7492, '2025-06-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7493, '2025-06-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7494, '2025-06-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7495, '2025-06-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7496, '2025-06-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7497, '2025-06-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7498, '2025-06-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7499, '2025-06-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7500, '2025-06-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7501, '2025-06-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7502, '2025-06-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7503, '2025-06-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7504, '2025-06-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7505, '2025-06-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7506, '2025-06-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7507, '2025-06-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7508, '2025-06-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7509, '2025-06-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7510, '2025-06-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7511, '2025-06-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7512, '2025-06-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7513, '2025-06-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7514, '2025-06-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7515, '2025-06-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7516, '2025-07-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7517, '2025-07-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7518, '2025-07-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7519, '2025-07-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7520, '2025-07-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7521, '2025-07-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7522, '2025-07-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7523, '2025-07-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7524, '2025-07-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7525, '2025-07-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7526, '2025-07-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7527, '2025-07-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7528, '2025-07-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7529, '2025-07-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7530, '2025-07-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7531, '2025-07-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7532, '2025-07-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7533, '2025-07-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7534, '2025-07-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7535, '2025-07-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7536, '2025-07-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7537, '2025-07-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7538, '2025-07-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7539, '2025-07-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7540, '2025-07-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7541, '2025-07-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7542, '2025-07-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7543, '2025-07-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7544, '2025-07-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7545, '2025-07-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7546, '2025-07-31 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7547, '2025-08-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7548, '2025-08-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7549, '2025-08-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7550, '2025-08-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7551, '2025-08-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7552, '2025-08-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7553, '2025-08-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7554, '2025-08-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7555, '2025-08-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7556, '2025-08-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7557, '2025-08-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7558, '2025-08-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7559, '2025-08-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7560, '2025-08-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7561, '2025-08-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7562, '2025-08-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7563, '2025-08-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7564, '2025-08-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7565, '2025-08-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7566, '2025-08-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7567, '2025-08-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7568, '2025-08-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7569, '2025-08-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7570, '2025-08-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7571, '2025-08-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7572, '2025-08-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7573, '2025-08-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7574, '2025-08-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7575, '2025-08-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7576, '2025-08-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7577, '2025-08-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7578, '2025-09-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7579, '2025-09-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7580, '2025-09-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7581, '2025-09-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7582, '2025-09-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7583, '2025-09-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7584, '2025-09-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7585, '2025-09-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7586, '2025-09-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7587, '2025-09-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7588, '2025-09-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7589, '2025-09-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7590, '2025-09-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7591, '2025-09-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7592, '2025-09-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7593, '2025-09-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7594, '2025-09-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7595, '2025-09-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7596, '2025-09-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7597, '2025-09-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7598, '2025-09-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7599, '2025-09-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7600, '2025-09-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7601, '2025-09-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7602, '2025-09-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7603, '2025-09-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7604, '2025-09-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7605, '2025-09-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7606, '2025-09-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7607, '2025-09-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7608, '2025-10-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7609, '2025-10-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7610, '2025-10-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7611, '2025-10-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7612, '2025-10-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7613, '2025-10-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7614, '2025-10-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7615, '2025-10-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7616, '2025-10-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7617, '2025-10-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7618, '2025-10-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7619, '2025-10-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7620, '2025-10-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7621, '2025-10-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7622, '2025-10-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7623, '2025-10-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7624, '2025-10-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7625, '2025-10-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7626, '2025-10-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7627, '2025-10-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7628, '2025-10-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7629, '2025-10-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7630, '2025-10-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7631, '2025-10-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7632, '2025-10-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7633, '2025-10-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7634, '2025-10-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7635, '2025-10-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7636, '2025-10-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7637, '2025-10-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7638, '2025-10-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7639, '2025-11-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7640, '2025-11-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7641, '2025-11-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7642, '2025-11-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7643, '2025-11-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7644, '2025-11-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7645, '2025-11-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7646, '2025-11-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7647, '2025-11-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7648, '2025-11-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7649, '2025-11-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7650, '2025-11-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7651, '2025-11-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7652, '2025-11-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7653, '2025-11-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7654, '2025-11-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7655, '2025-11-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7656, '2025-11-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7657, '2025-11-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7658, '2025-11-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7659, '2025-11-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7660, '2025-11-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7661, '2025-11-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7662, '2025-11-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7663, '2025-11-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7664, '2025-11-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7665, '2025-11-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7666, '2025-11-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7667, '2025-11-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7668, '2025-11-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7669, '2025-12-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7670, '2025-12-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7671, '2025-12-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7672, '2025-12-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7673, '2025-12-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7674, '2025-12-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7675, '2025-12-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7676, '2025-12-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7677, '2025-12-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7678, '2025-12-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7679, '2025-12-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7680, '2025-12-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7681, '2025-12-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7682, '2025-12-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7683, '2025-12-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7684, '2025-12-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7685, '2025-12-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7686, '2025-12-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7687, '2025-12-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7688, '2025-12-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7689, '2025-12-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7690, '2025-12-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7691, '2025-12-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7692, '2025-12-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7693, '2025-12-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7694, '2025-12-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7695, '2025-12-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7696, '2025-12-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7697, '2025-12-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7698, '2025-12-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7699, '2025-12-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7700, '2021-01-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7701, '2021-01-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7702, '2021-01-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7703, '2021-01-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7704, '2021-01-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7705, '2021-01-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7706, '2021-01-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7707, '2021-01-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7708, '2021-01-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7709, '2021-01-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7710, '2021-01-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7711, '2021-01-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7712, '2021-01-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7713, '2021-01-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7714, '2021-01-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7715, '2021-01-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7716, '2021-01-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7717, '2021-01-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7718, '2021-01-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7719, '2021-01-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7720, '2021-01-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7721, '2021-01-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7722, '2021-01-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7723, '2021-01-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7724, '2021-01-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7725, '2021-01-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7726, '2021-01-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7727, '2021-01-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7728, '2021-01-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7729, '2021-01-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7730, '2021-01-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7731, '2021-02-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7732, '2021-02-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7733, '2021-02-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7734, '2021-02-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7735, '2021-02-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7736, '2021-02-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7737, '2021-02-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7738, '2021-02-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7739, '2021-02-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7740, '2021-02-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7741, '2021-02-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7742, '2021-02-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7743, '2021-02-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7744, '2021-02-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7745, '2021-02-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7746, '2021-02-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7747, '2021-02-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7748, '2021-02-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7749, '2021-02-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7750, '2021-02-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7751, '2021-02-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7752, '2021-02-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7753, '2021-02-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7754, '2021-02-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7755, '2021-02-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7756, '2021-02-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7757, '2021-02-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7758, '2021-02-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7759, '2021-03-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7760, '2021-03-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7761, '2021-03-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7762, '2021-03-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7763, '2021-03-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7764, '2021-03-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7765, '2021-03-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7766, '2021-03-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7767, '2021-03-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7768, '2021-03-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7769, '2021-03-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7770, '2021-03-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7771, '2021-03-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7772, '2021-03-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7773, '2021-03-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7774, '2021-03-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7775, '2021-03-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7776, '2021-03-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7777, '2021-03-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7778, '2021-03-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7779, '2021-03-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7780, '2021-03-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7781, '2021-03-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7782, '2021-03-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7783, '2021-03-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7784, '2021-03-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7785, '2021-03-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7786, '2021-03-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7787, '2021-03-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7788, '2021-03-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7789, '2021-03-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7790, '2021-04-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7791, '2021-04-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7792, '2021-04-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7793, '2021-04-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7794, '2021-04-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7795, '2021-04-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7796, '2021-04-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7797, '2021-04-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7798, '2021-04-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7799, '2021-04-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7800, '2021-04-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7801, '2021-04-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7802, '2021-04-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7803, '2021-04-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7804, '2021-04-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7805, '2021-04-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7806, '2021-04-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7807, '2021-04-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7808, '2021-04-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7809, '2021-04-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7810, '2021-04-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7811, '2021-04-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7812, '2021-04-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7813, '2021-04-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7814, '2021-04-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7815, '2021-04-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7816, '2021-04-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7817, '2021-04-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7818, '2021-04-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7819, '2021-04-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7820, '2021-05-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7821, '2021-05-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7822, '2021-05-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7823, '2021-05-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7824, '2021-05-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7825, '2021-05-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7826, '2021-05-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7827, '2021-05-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7828, '2021-05-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7829, '2021-05-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7830, '2021-05-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7831, '2021-05-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7832, '2021-05-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7833, '2021-05-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7834, '2021-05-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7835, '2021-05-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7836, '2021-05-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7837, '2021-05-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7838, '2021-05-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7839, '2021-05-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7840, '2021-05-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7841, '2021-05-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7842, '2021-05-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7843, '2021-05-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7844, '2021-05-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7845, '2021-05-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7846, '2021-05-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7847, '2021-05-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7848, '2021-05-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7849, '2021-05-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7850, '2021-05-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7851, '2021-06-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7852, '2021-06-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7853, '2021-06-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7854, '2021-06-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7855, '2021-06-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7856, '2021-06-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7857, '2021-06-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7858, '2021-06-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7859, '2021-06-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7860, '2021-06-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7861, '2021-06-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7862, '2021-06-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7863, '2021-06-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7864, '2021-06-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7865, '2021-06-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7866, '2021-06-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7867, '2021-06-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7868, '2021-06-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7869, '2021-06-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7870, '2021-06-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7871, '2021-06-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7872, '2021-06-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7873, '2021-06-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7874, '2021-06-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7875, '2021-06-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7876, '2021-06-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7877, '2021-06-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7878, '2021-06-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7879, '2021-06-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7880, '2021-06-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7881, '2021-07-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7882, '2021-07-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7883, '2021-07-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7884, '2021-07-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7885, '2021-07-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7886, '2021-07-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7887, '2021-07-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7888, '2021-07-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7889, '2021-07-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7890, '2021-07-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7891, '2021-07-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7892, '2021-07-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7893, '2021-07-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7894, '2021-07-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7895, '2021-07-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7896, '2021-07-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7897, '2021-07-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7898, '2021-07-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7899, '2021-07-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7900, '2021-07-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7901, '2021-07-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7902, '2021-07-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7903, '2021-07-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7904, '2021-07-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7905, '2021-07-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7906, '2021-07-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7907, '2021-07-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7908, '2021-07-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7909, '2021-07-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7910, '2021-07-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7911, '2021-07-31 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7912, '2021-08-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7913, '2021-08-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7914, '2021-08-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7915, '2021-08-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7916, '2021-08-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7917, '2021-08-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7918, '2021-08-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7919, '2021-08-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7920, '2021-08-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7921, '2021-08-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7922, '2021-08-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7923, '2021-08-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7924, '2021-08-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7925, '2021-08-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7926, '2021-08-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7927, '2021-08-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7928, '2021-08-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7929, '2021-08-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7930, '2021-08-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7931, '2021-08-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7932, '2021-08-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7933, '2021-08-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7934, '2021-08-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7935, '2021-08-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7936, '2021-08-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7937, '2021-08-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7938, '2021-08-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7939, '2021-08-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7940, '2021-08-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7941, '2021-08-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7942, '2021-08-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7943, '2021-09-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7944, '2021-09-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7945, '2021-09-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7946, '2021-09-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7947, '2021-09-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7948, '2021-09-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7949, '2021-09-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7950, '2021-09-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7951, '2021-09-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7952, '2021-09-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7953, '2021-09-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7954, '2021-09-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7955, '2021-09-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7956, '2021-09-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7957, '2021-09-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7958, '2021-09-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7959, '2021-09-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7960, '2021-09-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7961, '2021-09-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7962, '2021-09-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7963, '2021-09-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7964, '2021-09-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7965, '2021-09-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7966, '2021-09-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7967, '2021-09-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7968, '2021-09-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7969, '2021-09-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7970, '2021-09-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7971, '2021-09-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7972, '2021-09-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7973, '2021-10-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7974, '2021-10-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7975, '2021-10-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7976, '2021-10-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7977, '2021-10-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7978, '2021-10-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7979, '2021-10-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7980, '2021-10-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7981, '2021-10-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7982, '2021-10-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7983, '2021-10-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7984, '2021-10-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7985, '2021-10-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7986, '2021-10-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7987, '2021-10-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7988, '2021-10-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7989, '2021-10-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7990, '2021-10-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7991, '2021-10-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7992, '2021-10-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (7993, '2021-10-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (7994, '2021-10-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (7995, '2021-10-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (7996, '2021-10-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (7997, '2021-10-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (7998, '2021-10-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (7999, '2021-10-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8000, '2021-10-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8001, '2021-10-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8002, '2021-10-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8003, '2021-10-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8004, '2021-11-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8005, '2021-11-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8006, '2021-11-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8007, '2021-11-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8008, '2021-11-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8009, '2021-11-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8010, '2021-11-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8011, '2021-11-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8012, '2021-11-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8013, '2021-11-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8014, '2021-11-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8015, '2021-11-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8016, '2021-11-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8017, '2021-11-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8018, '2021-11-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8019, '2021-11-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8020, '2021-11-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8021, '2021-11-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8022, '2021-11-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8023, '2021-11-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8024, '2021-11-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8025, '2021-11-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8026, '2021-11-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8027, '2021-11-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8028, '2021-11-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8029, '2021-11-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8030, '2021-11-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8031, '2021-11-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8032, '2021-11-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8033, '2021-11-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8034, '2021-12-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8035, '2021-12-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8036, '2021-12-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8037, '2021-12-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8038, '2021-12-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8039, '2021-12-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8040, '2021-12-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8041, '2021-12-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8042, '2021-12-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8043, '2021-12-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8044, '2021-12-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8045, '2021-12-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8046, '2021-12-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8047, '2021-12-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8048, '2021-12-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8049, '2021-12-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8050, '2021-12-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8051, '2021-12-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8052, '2021-12-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8053, '2021-12-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8054, '2021-12-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8055, '2021-12-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8056, '2021-12-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8057, '2021-12-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8058, '2021-12-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8059, '2021-12-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8060, '2021-12-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8061, '2021-12-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8062, '2021-12-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8063, '2021-12-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8064, '2021-12-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8065, '2022-01-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8066, '2022-01-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8067, '2022-01-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8068, '2022-01-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8069, '2022-01-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8070, '2022-01-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8071, '2022-01-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8072, '2022-01-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8073, '2022-01-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8074, '2022-01-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8075, '2022-01-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8076, '2022-01-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8077, '2022-01-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8078, '2022-01-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8079, '2022-01-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8080, '2022-01-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8081, '2022-01-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8082, '2022-01-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8083, '2022-01-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8084, '2022-01-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8085, '2022-01-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8086, '2022-01-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8087, '2022-01-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8088, '2022-01-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8089, '2022-01-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8090, '2022-01-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8091, '2022-01-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8092, '2022-01-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8093, '2022-01-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8094, '2022-01-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8095, '2022-01-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8096, '2022-02-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8097, '2022-02-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8098, '2022-02-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8099, '2022-02-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8100, '2022-02-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8101, '2022-02-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8102, '2022-02-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8103, '2022-02-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8104, '2022-02-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8105, '2022-02-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8106, '2022-02-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8107, '2022-02-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8108, '2022-02-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8109, '2022-02-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8110, '2022-02-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8111, '2022-02-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8112, '2022-02-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8113, '2022-02-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8114, '2022-02-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8115, '2022-02-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8116, '2022-02-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8117, '2022-02-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8118, '2022-02-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8119, '2022-02-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8120, '2022-02-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8121, '2022-02-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8122, '2022-02-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8123, '2022-02-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8124, '2022-03-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8125, '2022-03-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8126, '2022-03-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8127, '2022-03-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8128, '2022-03-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8129, '2022-03-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8130, '2022-03-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8131, '2022-03-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8132, '2022-03-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8133, '2022-03-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8134, '2022-03-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8135, '2022-03-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8136, '2022-03-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8137, '2022-03-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8138, '2022-03-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8139, '2022-03-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8140, '2022-03-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8141, '2022-03-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8142, '2022-03-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8143, '2022-03-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8144, '2022-03-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8145, '2022-03-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8146, '2022-03-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8147, '2022-03-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8148, '2022-03-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8149, '2022-03-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8150, '2022-03-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8151, '2022-03-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8152, '2022-03-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8153, '2022-03-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8154, '2022-03-31 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8155, '2022-04-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8156, '2022-04-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8157, '2022-04-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8158, '2022-04-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8159, '2022-04-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8160, '2022-04-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8161, '2022-04-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8162, '2022-04-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8163, '2022-04-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8164, '2022-04-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8165, '2022-04-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8166, '2022-04-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8167, '2022-04-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8168, '2022-04-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8169, '2022-04-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8170, '2022-04-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8171, '2022-04-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8172, '2022-04-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8173, '2022-04-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8174, '2022-04-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8175, '2022-04-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8176, '2022-04-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8177, '2022-04-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8178, '2022-04-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8179, '2022-04-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8180, '2022-04-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8181, '2022-04-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8182, '2022-04-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8183, '2022-04-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8184, '2022-04-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8185, '2022-05-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8186, '2022-05-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8187, '2022-05-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8188, '2022-05-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8189, '2022-05-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8190, '2022-05-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8191, '2022-05-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8192, '2022-05-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8193, '2022-05-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8194, '2022-05-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8195, '2022-05-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8196, '2022-05-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8197, '2022-05-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8198, '2022-05-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8199, '2022-05-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8200, '2022-05-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8201, '2022-05-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8202, '2022-05-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8203, '2022-05-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8204, '2022-05-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8205, '2022-05-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8206, '2022-05-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8207, '2022-05-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8208, '2022-05-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8209, '2022-05-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8210, '2022-05-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8211, '2022-05-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8212, '2022-05-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8213, '2022-05-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8214, '2022-05-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8215, '2022-05-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8216, '2022-06-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8217, '2022-06-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8218, '2022-06-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8219, '2022-06-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8220, '2022-06-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8221, '2022-06-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8222, '2022-06-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8223, '2022-06-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8224, '2022-06-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8225, '2022-06-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8226, '2022-06-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8227, '2022-06-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8228, '2022-06-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8229, '2022-06-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8230, '2022-06-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8231, '2022-06-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8232, '2022-06-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8233, '2022-06-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8234, '2022-06-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8235, '2022-06-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8236, '2022-06-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8237, '2022-06-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8238, '2022-06-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8239, '2022-06-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8240, '2022-06-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8241, '2022-06-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8242, '2022-06-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8243, '2022-06-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8244, '2022-06-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8245, '2022-06-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8246, '2022-07-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8247, '2022-07-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8248, '2022-07-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8249, '2022-07-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8250, '2022-07-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8251, '2022-07-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8252, '2022-07-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8253, '2022-07-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8254, '2022-07-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8255, '2022-07-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8256, '2022-07-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8257, '2022-07-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8258, '2022-07-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8259, '2022-07-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8260, '2022-07-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8261, '2022-07-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8262, '2022-07-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8263, '2022-07-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8264, '2022-07-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8265, '2022-07-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8266, '2022-07-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8267, '2022-07-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8268, '2022-07-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8269, '2022-07-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8270, '2022-07-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8271, '2022-07-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8272, '2022-07-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8273, '2022-07-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8274, '2022-07-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8275, '2022-07-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8276, '2022-07-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8277, '2022-08-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8278, '2022-08-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8279, '2022-08-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8280, '2022-08-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8281, '2022-08-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8282, '2022-08-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8283, '2022-08-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8284, '2022-08-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8285, '2022-08-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8286, '2022-08-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8287, '2022-08-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8288, '2022-08-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8289, '2022-08-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8290, '2022-08-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8291, '2022-08-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8292, '2022-08-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8293, '2022-08-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8294, '2022-08-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8295, '2022-08-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8296, '2022-08-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8297, '2022-08-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8298, '2022-08-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8299, '2022-08-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8300, '2022-08-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8301, '2022-08-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8302, '2022-08-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8303, '2022-08-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8304, '2022-08-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8305, '2022-08-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8306, '2022-08-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8307, '2022-08-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8308, '2022-09-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8309, '2022-09-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8310, '2022-09-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8311, '2022-09-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8312, '2022-09-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8313, '2022-09-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8314, '2022-09-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8315, '2022-09-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8316, '2022-09-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8317, '2022-09-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8318, '2022-09-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8319, '2022-09-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8320, '2022-09-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8321, '2022-09-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8322, '2022-09-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8323, '2022-09-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8324, '2022-09-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8325, '2022-09-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8326, '2022-09-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8327, '2022-09-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8328, '2022-09-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8329, '2022-09-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8330, '2022-09-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8331, '2022-09-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8332, '2022-09-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8333, '2022-09-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8334, '2022-09-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8335, '2022-09-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8336, '2022-09-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8337, '2022-09-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8338, '2022-10-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8339, '2022-10-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8340, '2022-10-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8341, '2022-10-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8342, '2022-10-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8343, '2022-10-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8344, '2022-10-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8345, '2022-10-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8346, '2022-10-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8347, '2022-10-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8348, '2022-10-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8349, '2022-10-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8350, '2022-10-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8351, '2022-10-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8352, '2022-10-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8353, '2022-10-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8354, '2022-10-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8355, '2022-10-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8356, '2022-10-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8357, '2022-10-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8358, '2022-10-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8359, '2022-10-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8360, '2022-10-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8361, '2022-10-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8362, '2022-10-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8363, '2022-10-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8364, '2022-10-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8365, '2022-10-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8366, '2022-10-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8367, '2022-10-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8368, '2022-10-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8369, '2022-11-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8370, '2022-11-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8371, '2022-11-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8372, '2022-11-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8373, '2022-11-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8374, '2022-11-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8375, '2022-11-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8376, '2022-11-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8377, '2022-11-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8378, '2022-11-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8379, '2022-11-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8380, '2022-11-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8381, '2022-11-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8382, '2022-11-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8383, '2022-11-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8384, '2022-11-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8385, '2022-11-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8386, '2022-11-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8387, '2022-11-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8388, '2022-11-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8389, '2022-11-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8390, '2022-11-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8391, '2022-11-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8392, '2022-11-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8393, '2022-11-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8394, '2022-11-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8395, '2022-11-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8396, '2022-11-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8397, '2022-11-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8398, '2022-11-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8399, '2022-12-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8400, '2022-12-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8401, '2022-12-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8402, '2022-12-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8403, '2022-12-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8404, '2022-12-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8405, '2022-12-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8406, '2022-12-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8407, '2022-12-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8408, '2022-12-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8409, '2022-12-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8410, '2022-12-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8411, '2022-12-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8412, '2022-12-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8413, '2022-12-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8414, '2022-12-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8415, '2022-12-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8416, '2022-12-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8417, '2022-12-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8418, '2022-12-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8419, '2022-12-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8420, '2022-12-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8421, '2022-12-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8422, '2022-12-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8423, '2022-12-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8424, '2022-12-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8425, '2022-12-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8426, '2022-12-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8427, '2022-12-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8428, '2022-12-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8429, '2022-12-31 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8430, '2023-01-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8431, '2023-01-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8432, '2023-01-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8433, '2023-01-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8434, '2023-01-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8435, '2023-01-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8436, '2023-01-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8437, '2023-01-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8438, '2023-01-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8439, '2023-01-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8440, '2023-01-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8441, '2023-01-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8442, '2023-01-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8443, '2023-01-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8444, '2023-01-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8445, '2023-01-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8446, '2023-01-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8447, '2023-01-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8448, '2023-01-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8449, '2023-01-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8450, '2023-01-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8451, '2023-01-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8452, '2023-01-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8453, '2023-01-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8454, '2023-01-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8455, '2023-01-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8456, '2023-01-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8457, '2023-01-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8458, '2023-01-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8459, '2023-01-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8460, '2023-01-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8461, '2023-02-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8462, '2023-02-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8463, '2023-02-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8464, '2023-02-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8465, '2023-02-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8466, '2023-02-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8467, '2023-02-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8468, '2023-02-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8469, '2023-02-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8470, '2023-02-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8471, '2023-02-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8472, '2023-02-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8473, '2023-02-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8474, '2023-02-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8475, '2023-02-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8476, '2023-02-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8477, '2023-02-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8478, '2023-02-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8479, '2023-02-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8480, '2023-02-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8481, '2023-02-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8482, '2023-02-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8483, '2023-02-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8484, '2023-02-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8485, '2023-02-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8486, '2023-02-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8487, '2023-02-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8488, '2023-02-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8489, '2023-03-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8490, '2023-03-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8491, '2023-03-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8492, '2023-03-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8493, '2023-03-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8494, '2023-03-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8495, '2023-03-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8496, '2023-03-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8497, '2023-03-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8498, '2023-03-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8499, '2023-03-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8500, '2023-03-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8501, '2023-03-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8502, '2023-03-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8503, '2023-03-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8504, '2023-03-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8505, '2023-03-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8506, '2023-03-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8507, '2023-03-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8508, '2023-03-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8509, '2023-03-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8510, '2023-03-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8511, '2023-03-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8512, '2023-03-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8513, '2023-03-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8514, '2023-03-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8515, '2023-03-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8516, '2023-03-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8517, '2023-03-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8518, '2023-03-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8519, '2023-03-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8520, '2023-04-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8521, '2023-04-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8522, '2023-04-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8523, '2023-04-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8524, '2023-04-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8525, '2023-04-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8526, '2023-04-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8527, '2023-04-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8528, '2023-04-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8529, '2023-04-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8530, '2023-04-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8531, '2023-04-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8532, '2023-04-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8533, '2023-04-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8534, '2023-04-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8535, '2023-04-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8536, '2023-04-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8537, '2023-04-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8538, '2023-04-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8539, '2023-04-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8540, '2023-04-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8541, '2023-04-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8542, '2023-04-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8543, '2023-04-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8544, '2023-04-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8545, '2023-04-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8546, '2023-04-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8547, '2023-04-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8548, '2023-04-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8549, '2023-04-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8550, '2023-05-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8551, '2023-05-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8552, '2023-05-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8553, '2023-05-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8554, '2023-05-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8555, '2023-05-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8556, '2023-05-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8557, '2023-05-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8558, '2023-05-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8559, '2023-05-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8560, '2023-05-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8561, '2023-05-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8562, '2023-05-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8563, '2023-05-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8564, '2023-05-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8565, '2023-05-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8566, '2023-05-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8567, '2023-05-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8568, '2023-05-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8569, '2023-05-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8570, '2023-05-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8571, '2023-05-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8572, '2023-05-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8573, '2023-05-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8574, '2023-05-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8575, '2023-05-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8576, '2023-05-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8577, '2023-05-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8578, '2023-05-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8579, '2023-05-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8580, '2023-05-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8581, '2023-06-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8582, '2023-06-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8583, '2023-06-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8584, '2023-06-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8585, '2023-06-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8586, '2023-06-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8587, '2023-06-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8588, '2023-06-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8589, '2023-06-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8590, '2023-06-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8591, '2023-06-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8592, '2023-06-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8593, '2023-06-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8594, '2023-06-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8595, '2023-06-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8596, '2023-06-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8597, '2023-06-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8598, '2023-06-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8599, '2023-06-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8600, '2023-06-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8601, '2023-06-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8602, '2023-06-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8603, '2023-06-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8604, '2023-06-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8605, '2023-06-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8606, '2023-06-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8607, '2023-06-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8608, '2023-06-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8609, '2023-06-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8610, '2023-06-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8611, '2023-07-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8612, '2023-07-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8613, '2023-07-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8614, '2023-07-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8615, '2023-07-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8616, '2023-07-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8617, '2023-07-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8618, '2023-07-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8619, '2023-07-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8620, '2023-07-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8621, '2023-07-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8622, '2023-07-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8623, '2023-07-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8624, '2023-07-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8625, '2023-07-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8626, '2023-07-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8627, '2023-07-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8628, '2023-07-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8629, '2023-07-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8630, '2023-07-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8631, '2023-07-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8632, '2023-07-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8633, '2023-07-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8634, '2023-07-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8635, '2023-07-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8636, '2023-07-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8637, '2023-07-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8638, '2023-07-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8639, '2023-07-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8640, '2023-07-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8641, '2023-07-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8642, '2023-08-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8643, '2023-08-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8644, '2023-08-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8645, '2023-08-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8646, '2023-08-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8647, '2023-08-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8648, '2023-08-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8649, '2023-08-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8650, '2023-08-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8651, '2023-08-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8652, '2023-08-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8653, '2023-08-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8654, '2023-08-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8655, '2023-08-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8656, '2023-08-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8657, '2023-08-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8658, '2023-08-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8659, '2023-08-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8660, '2023-08-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8661, '2023-08-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8662, '2023-08-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8663, '2023-08-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8664, '2023-08-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8665, '2023-08-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8666, '2023-08-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8667, '2023-08-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8668, '2023-08-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8669, '2023-08-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8670, '2023-08-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8671, '2023-08-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8672, '2023-08-31 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8673, '2023-09-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8674, '2023-09-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8675, '2023-09-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8676, '2023-09-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8677, '2023-09-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8678, '2023-09-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8679, '2023-09-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8680, '2023-09-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8681, '2023-09-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8682, '2023-09-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8683, '2023-09-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8684, '2023-09-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8685, '2023-09-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8686, '2023-09-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8687, '2023-09-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8688, '2023-09-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8689, '2023-09-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8690, '2023-09-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8691, '2023-09-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8692, '2023-09-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8693, '2023-09-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8694, '2023-09-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8695, '2023-09-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8696, '2023-09-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8697, '2023-09-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8698, '2023-09-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8699, '2023-09-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8700, '2023-09-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8701, '2023-09-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8702, '2023-09-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8703, '2023-10-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8704, '2023-10-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8705, '2023-10-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8706, '2023-10-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8707, '2023-10-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8708, '2023-10-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8709, '2023-10-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8710, '2023-10-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8711, '2023-10-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8712, '2023-10-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8713, '2023-10-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8714, '2023-10-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8715, '2023-10-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8716, '2023-10-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8717, '2023-10-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8718, '2023-10-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8719, '2023-10-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8720, '2023-10-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8721, '2023-10-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8722, '2023-10-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8723, '2023-10-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8724, '2023-10-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8725, '2023-10-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8726, '2023-10-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8727, '2023-10-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8728, '2023-10-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8729, '2023-10-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8730, '2023-10-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8731, '2023-10-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8732, '2023-10-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8733, '2023-10-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8734, '2023-11-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8735, '2023-11-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8736, '2023-11-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8737, '2023-11-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8738, '2023-11-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8739, '2023-11-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8740, '2023-11-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8741, '2023-11-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8742, '2023-11-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8743, '2023-11-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8744, '2023-11-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8745, '2023-11-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8746, '2023-11-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8747, '2023-11-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8748, '2023-11-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8749, '2023-11-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8750, '2023-11-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8751, '2023-11-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8752, '2023-11-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8753, '2023-11-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8754, '2023-11-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8755, '2023-11-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8756, '2023-11-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8757, '2023-11-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8758, '2023-11-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8759, '2023-11-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8760, '2023-11-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8761, '2023-11-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8762, '2023-11-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8763, '2023-11-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8764, '2023-12-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8765, '2023-12-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8766, '2023-12-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8767, '2023-12-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8768, '2023-12-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8769, '2023-12-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8770, '2023-12-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8771, '2023-12-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8772, '2023-12-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8773, '2023-12-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8774, '2023-12-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8775, '2023-12-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8776, '2023-12-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8777, '2023-12-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8778, '2023-12-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8779, '2023-12-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8780, '2023-12-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8781, '2023-12-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8782, '2023-12-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8783, '2023-12-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8784, '2023-12-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8785, '2023-12-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8786, '2023-12-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8787, '2023-12-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8788, '2023-12-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8789, '2023-12-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8790, '2023-12-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8791, '2023-12-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8792, '2023-12-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8793, '2023-12-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8794, '2023-12-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8795, '2024-01-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8796, '2024-01-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8797, '2024-01-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8798, '2024-01-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8799, '2024-01-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8800, '2024-01-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8801, '2024-01-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8802, '2024-01-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8803, '2024-01-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8804, '2024-01-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8805, '2024-01-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8806, '2024-01-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8807, '2024-01-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8808, '2024-01-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8809, '2024-01-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8810, '2024-01-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8811, '2024-01-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8812, '2024-01-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8813, '2024-01-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8814, '2024-01-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8815, '2024-01-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8816, '2024-01-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8817, '2024-01-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8818, '2024-01-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8819, '2024-01-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8820, '2024-01-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8821, '2024-01-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8822, '2024-01-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8823, '2024-01-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8824, '2024-01-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8825, '2024-01-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8826, '2024-02-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8827, '2024-02-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8828, '2024-02-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8829, '2024-02-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8830, '2024-02-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8831, '2024-02-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8832, '2024-02-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8833, '2024-02-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8834, '2024-02-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8835, '2024-02-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8836, '2024-02-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8837, '2024-02-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8838, '2024-02-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8839, '2024-02-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8840, '2024-02-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8841, '2024-02-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8842, '2024-02-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8843, '2024-02-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8844, '2024-02-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8845, '2024-02-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8846, '2024-02-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8847, '2024-02-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8848, '2024-02-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8849, '2024-02-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8850, '2024-02-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8851, '2024-02-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8852, '2024-02-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8853, '2024-02-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8854, '2024-03-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8855, '2024-03-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8856, '2024-03-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8857, '2024-03-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8858, '2024-03-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8859, '2024-03-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8860, '2024-03-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8861, '2024-03-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8862, '2024-03-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8863, '2024-03-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8864, '2024-03-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8865, '2024-03-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8866, '2024-03-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8867, '2024-03-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8868, '2024-03-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8869, '2024-03-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8870, '2024-03-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8871, '2024-03-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8872, '2024-03-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8873, '2024-03-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8874, '2024-03-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8875, '2024-03-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8876, '2024-03-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8877, '2024-03-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8878, '2024-03-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8879, '2024-03-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8880, '2024-03-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8881, '2024-03-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8882, '2024-03-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8883, '2024-03-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8884, '2024-03-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8885, '2024-04-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8886, '2024-04-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8887, '2024-04-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8888, '2024-04-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8889, '2024-04-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8890, '2024-04-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8891, '2024-04-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8892, '2024-04-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8893, '2024-04-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8894, '2024-04-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8895, '2024-04-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8896, '2024-04-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8897, '2024-04-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8898, '2024-04-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8899, '2024-04-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8900, '2024-04-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8901, '2024-04-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8902, '2024-04-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8903, '2024-04-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8904, '2024-04-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8905, '2024-04-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8906, '2024-04-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8907, '2024-04-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8908, '2024-04-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8909, '2024-04-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8910, '2024-04-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8911, '2024-04-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8912, '2024-04-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8913, '2024-04-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8914, '2024-04-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8915, '2024-05-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8916, '2024-05-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8917, '2024-05-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8918, '2024-05-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8919, '2024-05-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8920, '2024-05-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8921, '2024-05-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8922, '2024-05-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8923, '2024-05-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8924, '2024-05-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8925, '2024-05-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8926, '2024-05-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8927, '2024-05-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8928, '2024-05-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8929, '2024-05-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8930, '2024-05-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8931, '2024-05-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8932, '2024-05-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8933, '2024-05-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8934, '2024-05-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8935, '2024-05-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8936, '2024-05-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8937, '2024-05-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8938, '2024-05-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8939, '2024-05-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8940, '2024-05-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8941, '2024-05-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8942, '2024-05-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8943, '2024-05-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8944, '2024-05-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8945, '2024-05-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8946, '2024-06-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8947, '2024-06-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8948, '2024-06-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8949, '2024-06-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8950, '2024-06-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8951, '2024-06-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8952, '2024-06-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8953, '2024-06-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8954, '2024-06-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8955, '2024-06-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8956, '2024-06-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8957, '2024-06-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8958, '2024-06-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8959, '2024-06-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8960, '2024-06-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8961, '2024-06-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8962, '2024-06-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8963, '2024-06-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8964, '2024-06-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8965, '2024-06-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8966, '2024-06-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8967, '2024-06-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8968, '2024-06-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8969, '2024-06-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8970, '2024-06-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8971, '2024-06-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8972, '2024-06-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8973, '2024-06-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8974, '2024-06-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8975, '2024-06-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8976, '2024-07-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8977, '2024-07-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8978, '2024-07-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8979, '2024-07-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8980, '2024-07-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8981, '2024-07-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8982, '2024-07-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8983, '2024-07-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8984, '2024-07-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8985, '2024-07-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8986, '2024-07-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8987, '2024-07-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8988, '2024-07-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8989, '2024-07-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8990, '2024-07-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8991, '2024-07-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8992, '2024-07-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (8993, '2024-07-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (8994, '2024-07-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (8995, '2024-07-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (8996, '2024-07-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (8997, '2024-07-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (8998, '2024-07-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (8999, '2024-07-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9000, '2024-07-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9001, '2024-07-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9002, '2024-07-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9003, '2024-07-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9004, '2024-07-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9005, '2024-07-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9006, '2024-07-31 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9007, '2024-08-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9008, '2024-08-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9009, '2024-08-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9010, '2024-08-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9011, '2024-08-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9012, '2024-08-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9013, '2024-08-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9014, '2024-08-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9015, '2024-08-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9016, '2024-08-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9017, '2024-08-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9018, '2024-08-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9019, '2024-08-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9020, '2024-08-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9021, '2024-08-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9022, '2024-08-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9023, '2024-08-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9024, '2024-08-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9025, '2024-08-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9026, '2024-08-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9027, '2024-08-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9028, '2024-08-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9029, '2024-08-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9030, '2024-08-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9031, '2024-08-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9032, '2024-08-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9033, '2024-08-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9034, '2024-08-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9035, '2024-08-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9036, '2024-08-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9037, '2024-08-31 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9038, '2024-09-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9039, '2024-09-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9040, '2024-09-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9041, '2024-09-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9042, '2024-09-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9043, '2024-09-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9044, '2024-09-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9045, '2024-09-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9046, '2024-09-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9047, '2024-09-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9048, '2024-09-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9049, '2024-09-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9050, '2024-09-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9051, '2024-09-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9052, '2024-09-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9053, '2024-09-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9054, '2024-09-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9055, '2024-09-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9056, '2024-09-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9057, '2024-09-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9058, '2024-09-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9059, '2024-09-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9060, '2024-09-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9061, '2024-09-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9062, '2024-09-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9063, '2024-09-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9064, '2024-09-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9065, '2024-09-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9066, '2024-09-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9067, '2024-09-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9068, '2024-10-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9069, '2024-10-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9070, '2024-10-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9071, '2024-10-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9072, '2024-10-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9073, '2024-10-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9074, '2024-10-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9075, '2024-10-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9076, '2024-10-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9077, '2024-10-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9078, '2024-10-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9079, '2024-10-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9080, '2024-10-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9081, '2024-10-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9082, '2024-10-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9083, '2024-10-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9084, '2024-10-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9085, '2024-10-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9086, '2024-10-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9087, '2024-10-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9088, '2024-10-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9089, '2024-10-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9090, '2024-10-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9091, '2024-10-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9092, '2024-10-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9093, '2024-10-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9094, '2024-10-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9095, '2024-10-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9096, '2024-10-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9097, '2024-10-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9098, '2024-10-31 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9099, '2024-11-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9100, '2024-11-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9101, '2024-11-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9102, '2024-11-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9103, '2024-11-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9104, '2024-11-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9105, '2024-11-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9106, '2024-11-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9107, '2024-11-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9108, '2024-11-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9109, '2024-11-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9110, '2024-11-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9111, '2024-11-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9112, '2024-11-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9113, '2024-11-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9114, '2024-11-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9115, '2024-11-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9116, '2024-11-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9117, '2024-11-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9118, '2024-11-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9119, '2024-11-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9120, '2024-11-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9121, '2024-11-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9122, '2024-11-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9123, '2024-11-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9124, '2024-11-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9125, '2024-11-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9126, '2024-11-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9127, '2024-11-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9128, '2024-11-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9129, '2024-12-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9130, '2024-12-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9131, '2024-12-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9132, '2024-12-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9133, '2024-12-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9134, '2024-12-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9135, '2024-12-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9136, '2024-12-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9137, '2024-12-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9138, '2024-12-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9139, '2024-12-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9140, '2024-12-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9141, '2024-12-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9142, '2024-12-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9143, '2024-12-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9144, '2024-12-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9145, '2024-12-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9146, '2024-12-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9147, '2024-12-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9148, '2024-12-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9149, '2024-12-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9150, '2024-12-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9151, '2024-12-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9152, '2024-12-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9153, '2024-12-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9154, '2024-12-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9155, '2024-12-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9156, '2024-12-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9157, '2024-12-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9158, '2024-12-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9159, '2024-12-31 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9160, '2025-01-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9161, '2025-01-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9162, '2025-01-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9163, '2025-01-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9164, '2025-01-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9165, '2025-01-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9166, '2025-01-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9167, '2025-01-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9168, '2025-01-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9169, '2025-01-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9170, '2025-01-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9171, '2025-01-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9172, '2025-01-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9173, '2025-01-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9174, '2025-01-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9175, '2025-01-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9176, '2025-01-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9177, '2025-01-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9178, '2025-01-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9179, '2025-01-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9180, '2025-01-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9181, '2025-01-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9182, '2025-01-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9183, '2025-01-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9184, '2025-01-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9185, '2025-01-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9186, '2025-01-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9187, '2025-01-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9188, '2025-01-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9189, '2025-01-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9190, '2025-01-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9191, '2025-02-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9192, '2025-02-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9193, '2025-02-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9194, '2025-02-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9195, '2025-02-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9196, '2025-02-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9197, '2025-02-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9198, '2025-02-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9199, '2025-02-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9200, '2025-02-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9201, '2025-02-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9202, '2025-02-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9203, '2025-02-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9204, '2025-02-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9205, '2025-02-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9206, '2025-02-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9207, '2025-02-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9208, '2025-02-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9209, '2025-02-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9210, '2025-02-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9211, '2025-02-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9212, '2025-02-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9213, '2025-02-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9214, '2025-02-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9215, '2025-02-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9216, '2025-02-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9217, '2025-02-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9218, '2025-02-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9219, '2025-03-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9220, '2025-03-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9221, '2025-03-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9222, '2025-03-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9223, '2025-03-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9224, '2025-03-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9225, '2025-03-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9226, '2025-03-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9227, '2025-03-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9228, '2025-03-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9229, '2025-03-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9230, '2025-03-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9231, '2025-03-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9232, '2025-03-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9233, '2025-03-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9234, '2025-03-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9235, '2025-03-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9236, '2025-03-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9237, '2025-03-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9238, '2025-03-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9239, '2025-03-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9240, '2025-03-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9241, '2025-03-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9242, '2025-03-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9243, '2025-03-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9244, '2025-03-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9245, '2025-03-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9246, '2025-03-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9247, '2025-03-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9248, '2025-03-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9249, '2025-03-31 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9250, '2025-04-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9251, '2025-04-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9252, '2025-04-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9253, '2025-04-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9254, '2025-04-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9255, '2025-04-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9256, '2025-04-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9257, '2025-04-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9258, '2025-04-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9259, '2025-04-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9260, '2025-04-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9261, '2025-04-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9262, '2025-04-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9263, '2025-04-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9264, '2025-04-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9265, '2025-04-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9266, '2025-04-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9267, '2025-04-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9268, '2025-04-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9269, '2025-04-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9270, '2025-04-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9271, '2025-04-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9272, '2025-04-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9273, '2025-04-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9274, '2025-04-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9275, '2025-04-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9276, '2025-04-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9277, '2025-04-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9278, '2025-04-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9279, '2025-04-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9280, '2025-05-01 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9281, '2025-05-02 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9282, '2025-05-03 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9283, '2025-05-04 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9284, '2025-05-05 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9285, '2025-05-06 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9286, '2025-05-07 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9287, '2025-05-08 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9288, '2025-05-09 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9289, '2025-05-10 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9290, '2025-05-11 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9291, '2025-05-12 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9292, '2025-05-13 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9293, '2025-05-14 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9294, '2025-05-15 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9295, '2025-05-16 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9296, '2025-05-17 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9297, '2025-05-18 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9298, '2025-05-19 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9299, '2025-05-20 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9300, '2025-05-21 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9301, '2025-05-22 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9302, '2025-05-23 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9303, '2025-05-24 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9304, '2025-05-25 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9305, '2025-05-26 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9306, '2025-05-27 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9307, '2025-05-28 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9308, '2025-05-29 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9309, '2025-05-30 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9310, '2025-05-31 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9311, '2025-06-01 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9312, '2025-06-02 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9313, '2025-06-03 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9314, '2025-06-04 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9315, '2025-06-05 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9316, '2025-06-06 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9317, '2025-06-07 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9318, '2025-06-08 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9319, '2025-06-09 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9320, '2025-06-10 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9321, '2025-06-11 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9322, '2025-06-12 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9323, '2025-06-13 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9324, '2025-06-14 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9325, '2025-06-15 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9326, '2025-06-16 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9327, '2025-06-17 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9328, '2025-06-18 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9329, '2025-06-19 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9330, '2025-06-20 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9331, '2025-06-21 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9332, '2025-06-22 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9333, '2025-06-23 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9334, '2025-06-24 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9335, '2025-06-25 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9336, '2025-06-26 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9337, '2025-06-27 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9338, '2025-06-28 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9339, '2025-06-29 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9340, '2025-06-30 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9341, '2025-07-01 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9342, '2025-07-02 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9343, '2025-07-03 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9344, '2025-07-04 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9345, '2025-07-05 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9346, '2025-07-06 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9347, '2025-07-07 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9348, '2025-07-08 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9349, '2025-07-09 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9350, '2025-07-10 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9351, '2025-07-11 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9352, '2025-07-12 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9353, '2025-07-13 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9354, '2025-07-14 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9355, '2025-07-15 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9356, '2025-07-16 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9357, '2025-07-17 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9358, '2025-07-18 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9359, '2025-07-19 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9360, '2025-07-20 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9361, '2025-07-21 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9362, '2025-07-22 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9363, '2025-07-23 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9364, '2025-07-24 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9365, '2025-07-25 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9366, '2025-07-26 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9367, '2025-07-27 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9368, '2025-07-28 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9369, '2025-07-29 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9370, '2025-07-30 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9371, '2025-07-31 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9372, '2025-08-01 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9373, '2025-08-02 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9374, '2025-08-03 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9375, '2025-08-04 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9376, '2025-08-05 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9377, '2025-08-06 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9378, '2025-08-07 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9379, '2025-08-08 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9380, '2025-08-09 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9381, '2025-08-10 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9382, '2025-08-11 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9383, '2025-08-12 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9384, '2025-08-13 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9385, '2025-08-14 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9386, '2025-08-15 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9387, '2025-08-16 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9388, '2025-08-17 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9389, '2025-08-18 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9390, '2025-08-19 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9391, '2025-08-20 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9392, '2025-08-21 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9393, '2025-08-22 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9394, '2025-08-23 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9395, '2025-08-24 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9396, '2025-08-25 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9397, '2025-08-26 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9398, '2025-08-27 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9399, '2025-08-28 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9400, '2025-08-29 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9401, '2025-08-30 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9402, '2025-08-31 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9403, '2025-09-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9404, '2025-09-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9405, '2025-09-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9406, '2025-09-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9407, '2025-09-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9408, '2025-09-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9409, '2025-09-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9410, '2025-09-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9411, '2025-09-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9412, '2025-09-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9413, '2025-09-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9414, '2025-09-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9415, '2025-09-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9416, '2025-09-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9417, '2025-09-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9418, '2025-09-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9419, '2025-09-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9420, '2025-09-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9421, '2025-09-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9422, '2025-09-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9423, '2025-09-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9424, '2025-09-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9425, '2025-09-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9426, '2025-09-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9427, '2025-09-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9428, '2025-09-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9429, '2025-09-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9430, '2025-09-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9431, '2025-09-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9432, '2025-09-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9433, '2025-10-01 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9434, '2025-10-02 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9435, '2025-10-03 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9436, '2025-10-04 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9437, '2025-10-05 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9438, '2025-10-06 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9439, '2025-10-07 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9440, '2025-10-08 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9441, '2025-10-09 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9442, '2025-10-10 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9443, '2025-10-11 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9444, '2025-10-12 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9445, '2025-10-13 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9446, '2025-10-14 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9447, '2025-10-15 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9448, '2025-10-16 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9449, '2025-10-17 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9450, '2025-10-18 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9451, '2025-10-19 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9452, '2025-10-20 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9453, '2025-10-21 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9454, '2025-10-22 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9455, '2025-10-23 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9456, '2025-10-24 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9457, '2025-10-25 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9458, '2025-10-26 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9459, '2025-10-27 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9460, '2025-10-28 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9461, '2025-10-29 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9462, '2025-10-30 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9463, '2025-10-31 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9464, '2025-11-01 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9465, '2025-11-02 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9466, '2025-11-03 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9467, '2025-11-04 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9468, '2025-11-05 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9469, '2025-11-06 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9470, '2025-11-07 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9471, '2025-11-08 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9472, '2025-11-09 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9473, '2025-11-10 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9474, '2025-11-11 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9475, '2025-11-12 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9476, '2025-11-13 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9477, '2025-11-14 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9478, '2025-11-15 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9479, '2025-11-16 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9480, '2025-11-17 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9481, '2025-11-18 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9482, '2025-11-19 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9483, '2025-11-20 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9484, '2025-11-21 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9485, '2025-11-22 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9486, '2025-11-23 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9487, '2025-11-24 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9488, '2025-11-25 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9489, '2025-11-26 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9490, '2025-11-27 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9491, '2025-11-28 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9492, '2025-11-29 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9493, '2025-11-30 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9494, '2025-12-01 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9495, '2025-12-02 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9496, '2025-12-03 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9497, '2025-12-04 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9498, '2025-12-05 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9499, '2025-12-06 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9500, '2025-12-07 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9501, '2025-12-08 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9502, '2025-12-09 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9503, '2025-12-10 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9504, '2025-12-11 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9505, '2025-12-12 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9506, '2025-12-13 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9507, '2025-12-14 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9508, '2025-12-15 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9509, '2025-12-16 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9510, '2025-12-17 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9511, '2025-12-18 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9512, '2025-12-19 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9513, '2025-12-20 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9514, '2025-12-21 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9515, '2025-12-22 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9516, '2025-12-23 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9517, '2025-12-24 00:00:00', 4, 1); +INSERT INTO `tbl_work_date` VALUES (9518, '2025-12-25 00:00:00', 5, 1); +INSERT INTO `tbl_work_date` VALUES (9519, '2025-12-26 00:00:00', 6, 1); +INSERT INTO `tbl_work_date` VALUES (9520, '2025-12-27 00:00:00', 7, 0); +INSERT INTO `tbl_work_date` VALUES (9521, '2025-12-28 00:00:00', 1, 0); +INSERT INTO `tbl_work_date` VALUES (9522, '2025-12-29 00:00:00', 2, 1); +INSERT INTO `tbl_work_date` VALUES (9523, '2025-12-30 00:00:00', 3, 1); +INSERT INTO `tbl_work_date` VALUES (9524, '2025-12-31 00:00:00', 4, 1); + +-- ---------------------------- +-- Table structure for wy_ask_msg_remind_log +-- ---------------------------- +DROP TABLE IF EXISTS `wy_ask_msg_remind_log`; +CREATE TABLE `wy_ask_msg_remind_log` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间id', + `money_id` int(11) NULL DEFAULT NULL COMMENT '费项id', + `receive_phone` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接受号码', + `pay_limit_day` datetime NULL DEFAULT NULL COMMENT '缴费限期', + `remind_days` int(11) NULL DEFAULT NULL COMMENT '提醒天数', + `cell_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产名称', + `send_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人id', + `send_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人名称', + `send_date` datetime NULL DEFAULT NULL COMMENT '发送时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '催缴短信提醒日志' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_ask_msg_remind_log +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_car_manage +-- ---------------------------- +DROP TABLE IF EXISTS `wy_car_manage`; +CREATE TABLE `wy_car_manage` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `car_licnece` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '车牌号', + `stop_car_licence` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '停车牌号', + `car_owner_name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '车主姓名', + `carport` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '车位', + `in_date` datetime NULL DEFAULT NULL COMMENT '入场时间', + `out_date` datetime NULL DEFAULT NULL COMMENT '出场时间', + `agent` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '值班人', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '车辆管理' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_car_manage +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_car_space_manage +-- ---------------------------- +DROP TABLE IF EXISTS `wy_car_space_manage`; +CREATE TABLE `wy_car_space_manage` ( + `id` int(30) NOT NULL AUTO_INCREMENT COMMENT '车位编号', + `car_space_type` bigint(20) NULL DEFAULT NULL COMMENT '车位类型', + `car_licence_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '车牌号码', + `pre_sale_price` double NULL DEFAULT NULL COMMENT '预售价格', + `pre_rent_price` double NULL DEFAULT NULL COMMENT '预租价格', + `stop_car_licence` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '停车证号', + `estate_id` int(11) NULL DEFAULT NULL COMMENT '所属楼盘id', + `manage_type` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '管理类别', + `car_sapce_position` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '车位位置', + `car_sapce_area` double NULL DEFAULT NULL COMMENT '车位面积', + `owner_id` int(11) NULL DEFAULT NULL COMMENT '产权人id', + `owner_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '产权人名称', + `real_sale_price` double NULL DEFAULT NULL COMMENT '实售价格', + `car_space_category` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '车位类别', + `status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '当前状态', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `sale_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '销售人', + `sale_date` datetime NULL DEFAULT NULL COMMENT '销售时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '车位管理' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_car_space_manage +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_car_space_rent +-- ---------------------------- +DROP TABLE IF EXISTS `wy_car_space_rent`; +CREATE TABLE `wy_car_space_rent` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `constract_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '合同编号', + `car_space_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属车位编号', + `rent_start_date` datetime NULL DEFAULT NULL COMMENT '租期开始日', + `rent_stop_date` datetime NULL DEFAULT NULL COMMENT '租期结束日', + `rent_month` double NULL DEFAULT NULL COMMENT '承租月数', + `user_id` int(11) NULL DEFAULT NULL COMMENT '使用人id', + `user_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '使用人名称', + `car_licence_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '车牌号码', + `stop_car_licence` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '停车证号', + `rent_per_month` double NULL DEFAULT NULL COMMENT '月租金', + `service_money_per_month` double NULL DEFAULT NULL COMMENT '月服务费', + `sign_date` datetime NULL DEFAULT NULL COMMENT '签订日期', + `start_date` datetime NULL DEFAULT NULL COMMENT '生效日期', + `stop_date` datetime NULL DEFAULT NULL COMMENT '终止日期', + `status` char(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `agent_money` double NULL DEFAULT NULL COMMENT '中介费', + `is_rent_money` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否收取租金', + `contract_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '合同附件', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '车位租赁' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_car_space_rent +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_car_space_rent_detail +-- ---------------------------- +DROP TABLE IF EXISTS `wy_car_space_rent_detail`; +CREATE TABLE `wy_car_space_rent_detail` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `rent_id` bigint(20) NULL DEFAULT NULL COMMENT '所属租赁id', + `pay_type` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '缴费类型', + `pay_start_date` datetime NULL DEFAULT NULL COMMENT '缴费开始日', + `pay_stop_date` datetime NULL DEFAULT NULL COMMENT '缴费结束日', + `should_receive` double NULL DEFAULT NULL COMMENT '应收金额', + `discount_money` double NULL DEFAULT NULL COMMENT '优惠金额', + `delay_money` double NULL DEFAULT NULL COMMENT '滞纳金', + `real_receive_money` double NULL DEFAULT NULL COMMENT '实收金额', + `desc` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `receive_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款人id', + `receive_person_name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款人名称', + `receive_date` datetime NULL DEFAULT NULL COMMENT '收款时间', + `invoice_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发票号码', + `receive_status` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款状态', + `invalid_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人id', + `invalid_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人名称', + `invalid_reason` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废原因', + `invalid_date` datetime NULL DEFAULT NULL COMMENT '作废时间', + `receipt_check_status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据审核状态', + `receipt_check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据审核人', + `receipt_check_time` datetime NULL DEFAULT NULL COMMENT '单据审核时间', + `receipt_check_advice` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据审核意见', + `money_check_status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '现金审核状态', + `money_check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '现金审核人', + `money_check_time` datetime NULL DEFAULT NULL COMMENT '现金审核时间', + `money_check_advice` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '现金审核意见', + `invalid_check_status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废审核状态', + `invalid_check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废审核人', + `invalid_check_time` datetime NULL DEFAULT NULL COMMENT '作废审核时间', + `invalid_check_advice` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废审核意见', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '车位租赁缴费明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_car_space_rent_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_clean_check +-- ---------------------------- +DROP TABLE IF EXISTS `wy_clean_check`; +CREATE TABLE `wy_clean_check` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `check_date` datetime NULL DEFAULT NULL COMMENT '检查日期', + `check_place` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '检查地段', + `check_condition` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '检查情况', + `check_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '检查人', + `clean_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '清洁人', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '清洁检查' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_clean_check +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_clean_plan +-- ---------------------------- +DROP TABLE IF EXISTS `wy_clean_plan`; +CREATE TABLE `wy_clean_plan` ( + `id` int(10) NOT NULL AUTO_INCREMENT COMMENT '项目编号', + `project_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目名称', + `clean_place` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '清洁地段', + `clean_content` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '清洁内容', + `leader` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '负责人', + `clean_date` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '清洁时间', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '清洁安排' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_clean_plan +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_clean_record +-- ---------------------------- +DROP TABLE IF EXISTS `wy_clean_record`; +CREATE TABLE `wy_clean_record` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `project_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目编号', + `clean_condition` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '清洁情况', + `clean_date` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '清洁时间', + `clean_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '清洁人', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '清洁记录' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_clean_record +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_committee_members +-- ---------------------------- +DROP TABLE IF EXISTS `wy_committee_members`; +CREATE TABLE `wy_committee_members` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `member_code` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '成员代码', + `member_name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '成员姓名', + `member_duty` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '职务', + `birthday` datetime NULL DEFAULT NULL COMMENT '出生日期', + `gender` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '性别', + `phone_number` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `work_place` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '工作单位', + `self_introduce` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '个人简介', + `remark` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业委会成员' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_committee_members +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_committee_metting +-- ---------------------------- +DROP TABLE IF EXISTS `wy_committee_metting`; +CREATE TABLE `wy_committee_metting` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `meeting_date` datetime NULL DEFAULT NULL COMMENT '会议日期', + `meeting_title` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '会议主题', + `meeting_addr` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '会议地点', + `meeting_content` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '会议内容', + `hoster` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主持人', + `recorder` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '记录员', + `joiner` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参见人员', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业委会会议' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_committee_metting +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_community_event +-- ---------------------------- +DROP TABLE IF EXISTS `wy_community_event`; +CREATE TABLE `wy_community_event` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `event_date` datetime NULL DEFAULT NULL COMMENT '活动日期', + `event_content` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '活动内容', + `hoster` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主持者', + `join_person` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参加人员', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '社区活动' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_community_event +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_duty_manage +-- ---------------------------- +DROP TABLE IF EXISTS `wy_duty_manage`; +CREATE TABLE `wy_duty_manage` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `duty_date` datetime NULL DEFAULT NULL COMMENT '执勤日期', + `duty_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '执勤人', + `duty_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '执勤类型', + `duty_place` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '执勤地点', + `duty_record` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '执勤记录', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '执勤管理' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_duty_manage +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_email_receive +-- ---------------------------- +DROP TABLE IF EXISTS `wy_email_receive`; +CREATE TABLE `wy_email_receive` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `receive_date` datetime NULL DEFAULT NULL COMMENT '收件日期', + `get_date` datetime NULL DEFAULT NULL COMMENT '领件日期', + `email_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮件类别', + `receive_unit` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收件单位', + `number` int(11) NULL DEFAULT NULL COMMENT '数量', + `get_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '领件人', + `card_type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '证件类型', + `card` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '证件', + `agent` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '经手人', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '信件收取' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_email_receive +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_estate_income_detail +-- ---------------------------- +DROP TABLE IF EXISTS `wy_estate_income_detail`; +CREATE TABLE `wy_estate_income_detail` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `charge_date` datetime NULL DEFAULT NULL COMMENT '记账日期', + `estate_id` int(11) NULL DEFAULT NULL COMMENT '所属楼盘id', + `income_project` int(11) NULL DEFAULT NULL COMMENT '收入项目', + `income_money` double NULL DEFAULT NULL COMMENT '收入金额', + `desc` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '楼盘经费收入明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_estate_income_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_estate_income_project +-- ---------------------------- +DROP TABLE IF EXISTS `wy_estate_income_project`; +CREATE TABLE `wy_estate_income_project` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '收入项目id', + `income_project` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收入项目名称', + `parent_income_id` int(11) NULL DEFAULT NULL COMMENT '上级收入项目id', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '楼盘经费收入项目' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_estate_income_project +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_estate_money +-- ---------------------------- +DROP TABLE IF EXISTS `wy_estate_money`; +CREATE TABLE `wy_estate_money` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `charge_year` datetime NULL DEFAULT NULL COMMENT '记账年份', + `money` double NULL DEFAULT NULL COMMENT '费用金额', + `desc` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '楼盘费用' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_estate_money +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_estate_out_detail +-- ---------------------------- +DROP TABLE IF EXISTS `wy_estate_out_detail`; +CREATE TABLE `wy_estate_out_detail` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `charge_date` datetime NULL DEFAULT NULL COMMENT '记账日期', + `estate_id` int(11) NULL DEFAULT NULL COMMENT '所属楼盘id', + `output_main_project` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '支出主项目', + `output_sub_project` int(11) NULL DEFAULT NULL COMMENT '支出子项目', + `output_money` double NULL DEFAULT NULL COMMENT '支出金额', + `output_money_year` double NULL DEFAULT NULL COMMENT '年累计支出金额', + `output_money_main` double NULL DEFAULT NULL COMMENT '主项累计支出金额', + `status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `desc` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `next_receive_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '下一步接收人id', + `next_receive_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '下一步接收人姓名', + `send_check_date` datetime NULL DEFAULT NULL COMMENT '送审时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '楼盘经费支出明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_estate_out_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_estate_out_detail_sub +-- ---------------------------- +DROP TABLE IF EXISTS `wy_estate_out_detail_sub`; +CREATE TABLE `wy_estate_out_detail_sub` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `belong_out_project_id` bigint(20) NULL DEFAULT NULL COMMENT '所属主单id', + `receive_date` datetime NULL DEFAULT NULL COMMENT '接受时间', + `check_advice` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批意见', + `check_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批人id', + `check_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批人名称', + `check_date` datetime NULL DEFAULT NULL COMMENT '审批时间', + `check_status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批状态', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '楼盘经费支出明细_审批子表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_estate_out_detail_sub +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_estate_out_project +-- ---------------------------- +DROP TABLE IF EXISTS `wy_estate_out_project`; +CREATE TABLE `wy_estate_out_project` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '项目id', + `project_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '项目名称', + `parent_out_project_id` int(11) NULL DEFAULT NULL COMMENT '上级支出项目id', + `belong_main_projecct` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属主项目', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '建档人', + `create_date` datetime NULL DEFAULT NULL COMMENT '建档时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '楼盘经费支出项目' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_estate_out_project +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_fire_accident +-- ---------------------------- +DROP TABLE IF EXISTS `wy_fire_accident`; +CREATE TABLE `wy_fire_accident` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `accident_date` datetime NULL DEFAULT NULL COMMENT '事故日期', + `accident_place` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '事故地点', + `occur_reason` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发生原因', + `related_person` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '相关人员', + `handle_result` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '处理结果', + `loss` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '损失程度', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '消防事故' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_fire_accident +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_fire_check +-- ---------------------------- +DROP TABLE IF EXISTS `wy_fire_check`; +CREATE TABLE `wy_fire_check` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `check_date` datetime NULL DEFAULT NULL COMMENT '巡视日期', + `check_place` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '巡视地点', + `check_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '巡视人', + `check_condition` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '巡视情况', + `handle_advice` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '处理意见', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '消防巡查' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_fire_check +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_fire_exercise +-- ---------------------------- +DROP TABLE IF EXISTS `wy_fire_exercise`; +CREATE TABLE `wy_fire_exercise` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `unit` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单位', + `start_date` datetime NULL DEFAULT NULL COMMENT '开始日期', + `stop_date` datetime NULL DEFAULT NULL COMMENT '结束日期', + `exercise_purpose` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '演练目的', + `join_persons` int(11) NULL DEFAULT NULL COMMENT '参与人数', + `assistant_unit` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '协助单位', + `exercise_content` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '演练内容', + `exercise_result` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '演练效果', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '消防演练' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_fire_exercise +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_fire_facility +-- ---------------------------- +DROP TABLE IF EXISTS `wy_fire_facility`; +CREATE TABLE `wy_fire_facility` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `facility_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '设施名称', + `specifications` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '规格型号', + `unit` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单位', + `number` int(11) NULL DEFAULT NULL COMMENT '数量', + `place` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '放置地点', + `leader` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '负责人', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '消防设施' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_fire_facility +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_goods_inout +-- ---------------------------- +DROP TABLE IF EXISTS `wy_goods_inout`; +CREATE TABLE `wy_goods_inout` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `inout_date` datetime NULL DEFAULT NULL COMMENT '出入时间', + `carry_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '携带人', + `id_card` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身份证号', + `input_type` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '出入类型', + `live_addr` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '居住地址', + `inout_unit` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '出入单元', + `customer_name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '户主姓名', + `inout_goods` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '出入物品', + `agent` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '值班人', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '物品出入' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_goods_inout +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_green_check +-- ---------------------------- +DROP TABLE IF EXISTS `wy_green_check`; +CREATE TABLE `wy_green_check` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `green_code` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '绿化编码', + `check_date` datetime NULL DEFAULT NULL COMMENT '检查时间', + `check_condition` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '检查情况', + `handle_condition` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '处理情况', + `check_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '检查人', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '绿化检查' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_green_check +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_green_setting +-- ---------------------------- +DROP TABLE IF EXISTS `wy_green_setting`; +CREATE TABLE `wy_green_setting` ( + `setting_code` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '设置编码', + `setting_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '设置名称', + `area` double NULL DEFAULT NULL COMMENT '面积', + `green_date` datetime NULL DEFAULT NULL COMMENT '绿化时间', + `green_place` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地点', + `leader` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '责任人', + `main_vegetation` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '主要植被', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司' +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '绿化设置' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_green_setting +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_income_detail +-- ---------------------------- +DROP TABLE IF EXISTS `wy_income_detail`; +CREATE TABLE `wy_income_detail` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `charge_date` datetime NULL DEFAULT NULL COMMENT '记账日期', + `estate_id` int(11) NULL DEFAULT NULL COMMENT '所属楼盘id', + `income_project` int(11) NULL DEFAULT NULL COMMENT '收入项目', + `income_money` double NULL DEFAULT NULL COMMENT '收入金额', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '收入明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_income_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_income_project +-- ---------------------------- +DROP TABLE IF EXISTS `wy_income_project`; +CREATE TABLE `wy_income_project` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '收入项目id', + `income_project_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收入项目名称', + `parent_income_id` int(11) NULL DEFAULT NULL COMMENT '上级收入项目id', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '收入项目' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_income_project +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_note_manage +-- ---------------------------- +DROP TABLE IF EXISTS `wy_note_manage`; +CREATE TABLE `wy_note_manage` ( + `note_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '票据编号', + `note_prefix` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '票据前缀', + `note_serial_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '票据流水号', + `note_status` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '票据状态', + `note_desc` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '票据说明', + `user_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '使用人id', + `user_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '使用人姓名', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `assign_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分配人id', + `assign_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分配人名称', + `assign_date` datetime NULL DEFAULT NULL COMMENT '分配时间', + `print_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '打印人id', + `print_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '打印人名称', + `print_date` datetime NULL DEFAULT NULL COMMENT '打印时间', + `note_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据类型', + `receive_money_id` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款单号', + `invalid_reason` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废原因', + `invalid_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人id', + `invalid_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人名称', + `invalid_date` datetime NULL DEFAULT NULL COMMENT '作废时间', + `invalid_confirm_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废确认人', + `invalid_confirm_date` datetime NULL DEFAULT NULL COMMENT '作废确认时间', + PRIMARY KEY (`note_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '票据管理' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_note_manage +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_out_detail +-- ---------------------------- +DROP TABLE IF EXISTS `wy_out_detail`; +CREATE TABLE `wy_out_detail` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `charge_date` datetime NULL DEFAULT NULL COMMENT '记账日期', + `estate_id` int(11) NULL DEFAULT NULL COMMENT '所属楼盘id', + `out_project` int(11) NULL DEFAULT NULL COMMENT '支出项目', + `out_money` double NULL DEFAULT NULL COMMENT '支出金额', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '支出明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_out_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_out_project +-- ---------------------------- +DROP TABLE IF EXISTS `wy_out_project`; +CREATE TABLE `wy_out_project` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '支出项目id', + `out_project_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '支出项目名称', + `parent_out_project_id` int(11) NULL DEFAULT NULL COMMENT '上级支出项目id', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '支出项目' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_out_project +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_picture_manage +-- ---------------------------- +DROP TABLE IF EXISTS `wy_picture_manage`; +CREATE TABLE `wy_picture_manage` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `picture_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图纸名称', + `picture_type` bigint(20) NULL DEFAULT NULL COMMENT '图纸类型', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `picture_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图纸附件', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `upload_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '上传人', + `upload_date` datetime NULL DEFAULT NULL COMMENT '上传时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '图纸管理' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_picture_manage +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_property_takeover_detail +-- ---------------------------- +DROP TABLE IF EXISTS `wy_property_takeover_detail`; +CREATE TABLE `wy_property_takeover_detail` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '接管细节id', + `takeover_id` int(11) NULL DEFAULT NULL COMMENT '所属接管id', + `project_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '工程项目名称', + `checked` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验收方', + `checked_date` datetime NULL DEFAULT NULL COMMENT '验收日期', + `checked_result` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验收结果', + `finish_date` datetime NULL DEFAULT NULL COMMENT '整改完成日期', + `finish_condition` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '整改完成情况', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '物业接管工程明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_property_takeover_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_property_takeover_schema +-- ---------------------------- +DROP TABLE IF EXISTS `wy_property_takeover_schema`; +CREATE TABLE `wy_property_takeover_schema` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '接管单号', + `takeover_title` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接管标题', + `estate_id` int(11) NULL DEFAULT NULL COMMENT '所属楼盘', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接管备注', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建日期', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '物业接管概要' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_property_takeover_schema +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_renew_msg_remind_log +-- ---------------------------- +DROP TABLE IF EXISTS `wy_renew_msg_remind_log`; +CREATE TABLE `wy_renew_msg_remind_log` ( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间号', + `money_id` int(11) NULL DEFAULT NULL COMMENT '费项id', + `receive_phone` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接受号码', + `money_stop_date` datetime NULL DEFAULT NULL COMMENT '费用止期', + `remind_days` int(11) NULL DEFAULT NULL COMMENT '提醒天数', + `cell_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产名称', + `send_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人id', + `send_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '发送人姓名', + `send_date` datetime NULL DEFAULT NULL COMMENT '发送时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '续费短信提醒日志' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_renew_msg_remind_log +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_security_arrange +-- ---------------------------- +DROP TABLE IF EXISTS `wy_security_arrange`; +CREATE TABLE `wy_security_arrange` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', + `start_date` datetime NULL DEFAULT NULL COMMENT '开始日期', + `stop_date` datetime NULL DEFAULT NULL COMMENT '结束日期', + `classes` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '班次', + `time_frame` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '时段', + `district` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地段', + `waterkeeper` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '值班人员', + `job` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '岗位', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '保安安排' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_security_arrange +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_service_cashier_group +-- ---------------------------- +DROP TABLE IF EXISTS `wy_service_cashier_group`; +CREATE TABLE `wy_service_cashier_group` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '客服组名称', + `include_building_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '包含楼宇编码', + `include_building_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '包含楼宇名称', + `include_service_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '包含客服编码', + `include_service_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '包含客服名称', + `desc` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '组说明', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '客服收银组' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_service_cashier_group +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_takeover_data_detail +-- ---------------------------- +DROP TABLE IF EXISTS `wy_takeover_data_detail`; +CREATE TABLE `wy_takeover_data_detail` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '接管资料id', + `takeover_id` int(11) NULL DEFAULT NULL COMMENT '所属接管id', + `data_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '资料名称', + `data_copies` int(11) NULL DEFAULT NULL COMMENT '资料份数', + `data_pages` int(11) NULL DEFAULT NULL COMMENT '资料页数', + `data_type` bigint(20) NULL DEFAULT NULL COMMENT '资料分类', + `file_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '档案号', + `handover_person` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '交出人', + `receive_person` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接收人', + `receive_date` datetime NULL DEFAULT NULL COMMENT '接受日期', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '物业接管资料明细' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_takeover_data_detail +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_vegetation_information +-- ---------------------------- +DROP TABLE IF EXISTS `wy_vegetation_information`; +CREATE TABLE `wy_vegetation_information` ( + `vegetation_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '植被编号', + `vegetation_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '植被名称', + `vegetation_type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '种类', + `vegetation_age` int(11) NULL DEFAULT NULL COMMENT '树龄', + `vegetation_number` int(11) NULL DEFAULT NULL COMMENT '数量', + `vegetation_unit` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单位', + `vegetation_habit` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '习性', + `vegetation_feature` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '特点', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`vegetation_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '植被信息' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_vegetation_information +-- ---------------------------- + +-- ---------------------------- +-- Table structure for wy_visit_manage +-- ---------------------------- +DROP TABLE IF EXISTS `wy_visit_manage`; +CREATE TABLE `wy_visit_manage` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `visit_date` datetime NULL DEFAULT NULL COMMENT '来访时间', + `leave_date` datetime NULL DEFAULT NULL COMMENT '离开时间', + `visit_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '来访人', + `id_card` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '身份证号', + `visit_addr` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '来访人住址', + `visit_reason` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '来访事由', + `visited_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '被访人', + `visited_reason` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所住地址', + `agent` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '值班人', + `remark` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '来访管理' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of wy_visit_manage +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_constomer_decorate +-- ---------------------------- +DROP TABLE IF EXISTS `zh_constomer_decorate`; +CREATE TABLE `zh_constomer_decorate` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `cell_id` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间编号', + `proposer` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '申请人', + `phone_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `proposer_date` datetime NULL DEFAULT NULL COMMENT '申请日期', + `decorate_content` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '装修内容', + `check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批人', + `decorate_ensure_money` double NULL DEFAULT NULL COMMENT '装修保证金', + `check_date` datetime NULL DEFAULT NULL COMMENT '审批日期', + `check_advice` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批意见', + `leader_phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '负责人电话', + `execute_company` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '施工单位', + `execute_start_date` datetime NULL DEFAULT NULL COMMENT '施工开始日期', + `leader` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '负责人', + `checked_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验收人', + `execute_stop_date` datetime NULL DEFAULT NULL COMMENT '施工截止日期', + `checked_advice` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验收意见', + `checked_date` datetime NULL DEFAULT NULL COMMENT '验收日期', + `remark` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `status` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `identify` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标识', + `confirm_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '确认人', + `confirm_date` datetime NULL DEFAULT NULL COMMENT '确认时间', + `decorate_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '装修附件', + `against_money` double NULL DEFAULT NULL COMMENT '违约金', + `invalid_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人', + `invalid_date` datetime NULL DEFAULT NULL COMMENT '作废时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主装修' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_constomer_decorate +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_consumer_complain +-- ---------------------------- +DROP TABLE IF EXISTS `zh_consumer_complain`; +CREATE TABLE `zh_consumer_complain` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `cell_id` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间编号', + `complain_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '投诉人', + `complain_phone` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '投诉电话', + `complain_date` datetime NULL DEFAULT NULL COMMENT '投诉日期', + `phone_number` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `reception_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '接待人', + `complain_type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '投诉类别', + `status` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `start_accept_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '开始受理人', + `start_accept_date` datetime NULL DEFAULT NULL COMMENT '开始受理时间', + `accept_result` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '受理结果', + `accept_finish_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '受理完成人', + `accept_finish_date` datetime NULL DEFAULT NULL COMMENT '受理完成时间', + `datasource` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '数据来源', + `refer_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参考附件', + `return_visit_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '回访人', + `return_visit_date` datetime NULL DEFAULT NULL COMMENT '回访时间', + `is_satisfy` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否满意', + `customer_evaluate` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主评价', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主投诉' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_consumer_complain +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_cs_handle_result +-- ---------------------------- +DROP TABLE IF EXISTS `zh_cs_handle_result`; +CREATE TABLE `zh_cs_handle_result` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `service_id` int(11) NULL DEFAULT NULL COMMENT '所属服务单id', + `transactor_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '办理人id', + `transactor_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '办理人名称', + `is_leader` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否负责人', + `relation_company` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '相关单位', + `phone_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `handle_start_date` datetime NULL DEFAULT NULL COMMENT '开始办理时间', + `handle_stop_date` datetime NULL DEFAULT NULL COMMENT '完成办理时间', + `handle_result` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '办理结果', + `handle_finish_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '办理完成附件', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主服务_办理结果' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_cs_handle_result +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_cs_handle_speed +-- ---------------------------- +DROP TABLE IF EXISTS `zh_cs_handle_speed`; +CREATE TABLE `zh_cs_handle_speed` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `service_id` int(11) NULL DEFAULT NULL COMMENT '服务单id', + `transactor_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '办理人', + `transactor_date` datetime NULL DEFAULT NULL COMMENT '办理时间', + `transactor_content` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '办理内容', + `recorder_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '记录人id', + `recorder_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '记录人名称', + `recorder_date` datetime NULL DEFAULT NULL COMMENT '记录时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主服务_办理进度' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_cs_handle_speed +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_customer +-- ---------------------------- +DROP TABLE IF EXISTS `zh_customer`; +CREATE TABLE `zh_customer` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `customer_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主编码', + `customer_pwd` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主密码', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `customer_birthday` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主生日', + `customer_gender` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主性别', + `open_bank` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '开户行', + `nationality` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '国籍', + `bank_account` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '银行账号', + `education` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '学历', + `certificate_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '证件号码', + `certificate_type` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '证件类型', + `work_place` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '工作单位', + `customer_duty` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '职务', + `police` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所在派出所', + `nation` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '民族', + `phone_number` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `native_place` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '籍贯', + `address` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系地址', + `post_code` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '邮编', + `urgency_user_name` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '紧急联系人姓名', + `urgency_user_phone` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '紧急联系人电话', + `urgency_user_address` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '紧急联系人地址', + `customer_status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主状态', + `customer_type` char(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主类型', + `picture` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '照片', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `is_bank_withhold` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否银行代扣', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主信息表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_customer +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_customer_ask_fix +-- ---------------------------- +DROP TABLE IF EXISTS `zh_customer_ask_fix`; +CREATE TABLE `zh_customer_ask_fix` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `cell_id` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间编码', + `proposer` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '申请人', + `proposer_date` datetime NULL DEFAULT NULL COMMENT '申请时间', + `ask_fix_content` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '请修内容', + `check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批人', + `fix_money` double NULL DEFAULT NULL COMMENT '修理费用', + `check_date` datetime NULL DEFAULT NULL COMMENT '审批日期', + `check_advice` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批意见', + `leader_phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '负责人电话', + `execute_company` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '施工单位', + `execute_start_date` datetime NULL DEFAULT NULL COMMENT '施工开始日期', + `leader` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '负责人', + `checked_person` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验收人', + `execute_stop_date` datetime NULL DEFAULT NULL COMMENT '施工结束日期', + `checked_date` datetime NULL DEFAULT NULL COMMENT '验收日期', + `checked_advice` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验收意见', + `remark` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `status` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `identify` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标识', + `confirm_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '确认人', + `confirm_date` datetime NULL DEFAULT NULL COMMENT '确认时间', + `checked_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验收附件', + `refer_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参考附件', + `phone_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主请修' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_customer_ask_fix +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_customer_check +-- ---------------------------- +DROP TABLE IF EXISTS `zh_customer_check`; +CREATE TABLE `zh_customer_check` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `cell_id` varchar(15) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房间编号', + `check_date` datetime NULL DEFAULT NULL COMMENT '验收日期', + `confirm_date` datetime NULL DEFAULT NULL COMMENT '确认日期', + `check_item_id` bigint(20) NULL DEFAULT NULL COMMENT '验收项目编号', + `check_item_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验收项目名称', + `is_pass` varchar(6) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否合格', + `consumer_advice` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主意见', + `house_keeper_advice` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房管员意见', + `check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验收人员', + `remark` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `input_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '录入人', + `input_date` datetime NULL DEFAULT NULL COMMENT '录入时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `check_house_type` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '验房类型', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主验房' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_customer_check +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_customer_estate +-- ---------------------------- +DROP TABLE IF EXISTS `zh_customer_estate`; +CREATE TABLE `zh_customer_estate` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `customer_id` int(11) NULL DEFAULT NULL COMMENT '业主id', + `customer_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主姓名', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间id', + `use_status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '使用状态', + `live_date` datetime NULL DEFAULT NULL COMMENT '入住日期', + `decorate_date` datetime NULL DEFAULT NULL COMMENT '装修时间', + `subscription_card_number` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '认购证号', + `house_code` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '房产证号', + `is_pay_decorate_money` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否缴纳维修金', + `pre_pay_decorate_money` double NULL DEFAULT NULL COMMENT '预缴维修金', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `orderid` int(11) NULL DEFAULT NULL COMMENT '排序号', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主房产对照表' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_customer_estate +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_customer_members +-- ---------------------------- +DROP TABLE IF EXISTS `zh_customer_members`; +CREATE TABLE `zh_customer_members` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `belong_customer_id` int(11) NULL DEFAULT NULL COMMENT '所属业主编码', + `name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '姓名', + `birdate` datetime NULL DEFAULT NULL COMMENT '出生日期', + `gender` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '性别', + `ration` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '与业主关系', + `certificate_type` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '证件类型', + `certificate_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '证件号码', + `education` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '学历', + `remark` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `work_place` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '工作单位', + `phone_number` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `picture` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '照片', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主成员' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_customer_members +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_customer_service +-- ---------------------------- +DROP TABLE IF EXISTS `zh_customer_service`; +CREATE TABLE `zh_customer_service` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `cell_id` int(11) NULL DEFAULT NULL COMMENT '房间编号', + `proposer` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '申请人姓名', + `phone_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `appeal_date` datetime NULL DEFAULT NULL COMMENT '诉求时间', + `appeal_event` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '诉求事项', + `status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `service_type` bigint(20) NULL DEFAULT NULL COMMENT '服务类型', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `identify` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '标识', + `check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批人', + `check_date` datetime NULL DEFAULT NULL COMMENT '审批时间', + `check_advice` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '审批意见', + `service_money` double NULL DEFAULT NULL COMMENT '服务费用', + `return_visit_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '回访人', + `return_visit_date` datetime NULL DEFAULT NULL COMMENT '回访时间', + `is_satisfy` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否满意', + `customer_evaluate` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业主评价', + `refer_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '参考附件', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主服务' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_customer_service +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_customer_service_type +-- ---------------------------- +DROP TABLE IF EXISTS `zh_customer_service_type`; +CREATE TABLE `zh_customer_service_type` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `type_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型名称', + `type_price` double NULL DEFAULT NULL COMMENT '类型单价', + `type_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型说明', + `type_status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '类型状态', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建人时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '业主服务类型' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_customer_service_type +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_rent_contract +-- ---------------------------- +DROP TABLE IF EXISTS `zh_rent_contract`; +CREATE TABLE `zh_rent_contract` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `contract_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '合同编号', + `sign_date` datetime NULL DEFAULT NULL COMMENT '签订日期', + `start_date` datetime NULL DEFAULT NULL COMMENT '生效日期', + `stop_date` datetime NULL DEFAULT NULL COMMENT '终止日期', + `rent_id` int(11) NULL DEFAULT NULL COMMENT '所属租户id', + `contact` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系人', + `start_rent_date` datetime NULL DEFAULT NULL COMMENT '起租日期', + `stop_rent_date` datetime NULL DEFAULT NULL COMMENT '停租日期', + `contract_rent_money` double NULL DEFAULT NULL COMMENT '合同租金金额', + `receive_area` double NULL DEFAULT NULL COMMENT '收费面积', + `contract_status` char(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '合同状态', + `ensure_money` double NULL DEFAULT NULL COMMENT '保证金', + `ensure_money_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '保证金说明', + `contract_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '合同附件', + `rent_days` int(11) NULL DEFAULT NULL COMMENT '租期', + `admin_money` double NULL DEFAULT NULL COMMENT '管理费', + `is_rent_money` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '是否收取租金', + `pay_method` bigint(20) NULL DEFAULT NULL COMMENT '缴纳方式', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `attract_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '招商人员id', + `attract_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '招商人员姓名', + `company` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '租赁合同' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_rent_contract +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_rent_contract_cell +-- ---------------------------- +DROP TABLE IF EXISTS `zh_rent_contract_cell`; +CREATE TABLE `zh_rent_contract_cell` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `contract_id` int(11) NULL DEFAULT NULL COMMENT '所属合同编号', + `stall_message` int(11) NULL DEFAULT NULL COMMENT '所属档口信息', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '租赁合同房间' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_rent_contract_cell +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_rent_contract_change +-- ---------------------------- +DROP TABLE IF EXISTS `zh_rent_contract_change`; +CREATE TABLE `zh_rent_contract_change` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `contract_id` int(11) NULL DEFAULT NULL COMMENT '所属合同编号', + `change_project` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '变更项目', + `old_value` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '原值', + `new_value` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '新值', + `desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `change_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '变更人', + `change_date` datetime NULL DEFAULT NULL COMMENT '变更时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '租赁合同变更' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_rent_contract_change +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_rent_contract_refund +-- ---------------------------- +DROP TABLE IF EXISTS `zh_rent_contract_refund`; +CREATE TABLE `zh_rent_contract_refund` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `contract_id` int(11) NULL DEFAULT NULL COMMENT '所属合同编号', + `rent_id` int(11) NULL DEFAULT NULL COMMENT '所属租户id', + `rent_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '租户名称', + `refund_time` datetime NULL DEFAULT NULL COMMENT '退款日期', + `refund_money` double NULL DEFAULT NULL COMMENT '退款金额', + `refund_status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '退款状态', + `refund_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '退款说明', + `operate_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人id', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人名称', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + `invalid_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人id', + `invalid_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人名称', + `invalid_reason` datetime NULL DEFAULT NULL COMMENT '作废原因', + `invalid_date` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '租赁合同退款' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_rent_contract_refund +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_rent_contract_return +-- ---------------------------- +DROP TABLE IF EXISTS `zh_rent_contract_return`; +CREATE TABLE `zh_rent_contract_return` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `contract_id` int(11) NULL DEFAULT NULL COMMENT '所属合同编号', + `rent_id` int(11) NULL DEFAULT NULL COMMENT '所属租户id', + `rent_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '租户名称', + `return_money_start` datetime NULL DEFAULT NULL COMMENT '返利日期起', + `return_money_stop` datetime NULL DEFAULT NULL COMMENT '返利日期终', + `return_cardinal_money` double NULL DEFAULT NULL COMMENT '返利基数金额', + `return_rate` double NULL DEFAULT NULL COMMENT '返利比例', + `current_return_money` double NULL DEFAULT NULL COMMENT '本次返利金额', + `return_money_status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '返利状态', + `return_money_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '返利说明', + `operate_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人id', + `operate_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人名称', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + `invalid_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人id', + `invalid_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人名称', + `invalid_date` datetime NULL DEFAULT NULL COMMENT '作废时间', + `invalid_reason` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废原因', + `update_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人id', + `update_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人名称', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `update_reason` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改原因', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '租赁合同返利' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_rent_contract_return +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_rent_information +-- ---------------------------- +DROP TABLE IF EXISTS `zh_rent_information`; +CREATE TABLE `zh_rent_information` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `rent_code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '租户编码', + `rent_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '租户名称', + `member_of_right` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '法定代表', + `rent_type` bigint(20) NULL DEFAULT NULL COMMENT '租户类型', + `contact` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系人', + `gender` char(1) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '性别', + `home_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `phone_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '手机', + `addr` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '地址', + `certificate_type` bigint(20) NULL DEFAULT NULL COMMENT '证件类型', + `main_sale` bigint(20) NULL DEFAULT NULL COMMENT '主营商品', + `certificate_number` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '证件号码', + `status` char(2) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '状态', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `picture_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '照片地址', + `create_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人', + `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间', + `update_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `company` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属公司', + `pwd` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '登陆密码', + `rent_attach` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '租户附件', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '租户信息' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_rent_information +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_rent_receive +-- ---------------------------- +DROP TABLE IF EXISTS `zh_rent_receive`; +CREATE TABLE `zh_rent_receive` ( + `id` int(20) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `contract_id` int(11) NULL DEFAULT NULL COMMENT '所属合同编号', + `rent_id` int(11) NULL DEFAULT NULL COMMENT '所属租户id', + `rent_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '租户名称', + `rent_start_date` datetime NULL DEFAULT NULL COMMENT '租金开始日期', + `rent_stop_date` datetime NULL DEFAULT NULL COMMENT '租金截止日期', + `rent_money` double NULL DEFAULT NULL COMMENT '租金金额', + `desc` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '说明', + `receive_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款人id', + `receive_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收款人名称', + `receive_date` datetime NULL DEFAULT NULL COMMENT '收款时间', + `receive_status` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '收取状态', + `invalid_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人id', + `invalid_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废人名称', + `invalid_reason` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '作废原因', + `invalid_date` datetime NULL DEFAULT NULL COMMENT '作废时间', + `past_receive_method` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '原收款方式', + `receipt_check_status` varchar(4) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据审核状态', + `receipt_check_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据审核人', + `receipt_check_time` datetime NULL DEFAULT NULL COMMENT '单据审核时间', + `receipt_check_advice` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '单据审核意见', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '租金收取' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_rent_receive +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_rent_share +-- ---------------------------- +DROP TABLE IF EXISTS `zh_rent_share`; +CREATE TABLE `zh_rent_share` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `contract_id` int(11) NULL DEFAULT NULL COMMENT '所属合同编号', + `rent_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '租户名称', + `share_rent_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分租人', + `share_cell_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分租房间id', + `share_cell_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '分租房间名称', + `contact` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系人', + `phone_number` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '联系电话', + `start_date` datetime NULL DEFAULT NULL COMMENT '起始日期', + `stop_date` datetime NULL DEFAULT NULL COMMENT '截止日期', + `sale_range` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '经营范围', + `remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', + `operate_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人id', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人名称', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + `update_person_id` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人id', + `update_person_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人名称', + `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间', + `update_reason` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改原因', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '租赁分租信息' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_rent_share +-- ---------------------------- + +-- ---------------------------- +-- Table structure for zh_rent_transfer +-- ---------------------------- +DROP TABLE IF EXISTS `zh_rent_transfer`; +CREATE TABLE `zh_rent_transfer` ( + `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自动编号', + `contract_id` int(11) NULL DEFAULT NULL COMMENT '所属合同编号', + `transfer_out_id` int(11) NULL DEFAULT NULL COMMENT '转出租户id', + `transfer_out_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '转出租户名称', + `transfer_in_id` int(11) NULL DEFAULT NULL COMMENT '转入租户id', + `transfer_in_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '转入租户名称', + `change_name_money` double NULL DEFAULT NULL COMMENT '更名费', + `transfer_desc` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '转兑说明', + `transfer_date` datetime NULL DEFAULT NULL COMMENT '转兑时间', + `operate_person` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作人', + `operate_date` datetime NULL DEFAULT NULL COMMENT '操作时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '租户转兑' ROW_FORMAT = Compact; + +-- ---------------------------- +-- Records of zh_rent_transfer +-- ---------------------------- + +SET FOREIGN_KEY_CHECKS = 1; diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/.gitignore" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/.gitignore" new file mode 100644 index 00000000..a2a3040a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" new file mode 100644 index 00000000..e76d1f32 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/.mvn/wrapper/maven-wrapper.jar" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/.mvn/wrapper/maven-wrapper.jar" new file mode 100644 index 00000000..2cc7d4a5 Binary files /dev/null and "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/.mvn/wrapper/maven-wrapper.jar" differ diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/.mvn/wrapper/maven-wrapper.properties" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/.mvn/wrapper/maven-wrapper.properties" new file mode 100644 index 00000000..642d572c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/README.md" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/README.md" new file mode 100644 index 00000000..7572774d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/README.md" @@ -0,0 +1,3 @@ +前端项目地址 +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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/mvnw" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/mvnw" new file mode 100644 index 00000000..a16b5431 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/mvnw.cmd" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/mvnw.cmd" new file mode 100644 index 00000000..c8d43372 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/pom.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/pom.xml" new file mode 100644 index 00000000..6507335a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" new file mode 100644 index 00000000..023c9a63 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" new file mode 100644 index 00000000..6231ce90 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼宇信息表 + *

+ * + * @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 LocalDateTime finishDate; + + /** + * 封顶日期 + */ + private LocalDateTime 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 LocalDateTime getFinishDate() { + return finishDate; + } + + public void setFinishDate(LocalDateTime finishDate) { + this.finishDate = finishDate; + } + + public LocalDateTime getOverRoofDate() { + return overRoofDate; + } + + public void setOverRoofDate(LocalDateTime 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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" new file mode 100644 index 00000000..20cf9fad --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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 Integer 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 Integer getUnitCode() { + return unitCode; + } + + public void setUnitCode(Integer 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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" new file mode 100644 index 00000000..4f403639 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" new file mode 100644 index 00000000..8b7db416 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" new file mode 100644 index 00000000..c455aa05 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" new file mode 100644 index 00000000..d867e860 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" new file mode 100644 index 00000000..070de0e0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" new file mode 100644 index 00000000..ba6be805 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" new file mode 100644 index 00000000..25b3d52f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" new file mode 100644 index 00000000..3185d6c7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" new file mode 100644 index 00000000..e3145667 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" new file mode 100644 index 00000000..248e91c1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" new file mode 100644 index 00000000..04da5c4d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" new file mode 100644 index 00000000..343ce915 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" new file mode 100644 index 00000000..298cd463 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" new file mode 100644 index 00000000..04d92ce4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" new file mode 100644 index 00000000..d684549f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" new file mode 100644 index 00000000..ac36b7f5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" new file mode 100644 index 00000000..1726aaf6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" new file mode 100644 index 00000000..352d3143 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" new file mode 100644 index 00000000..dd320bda --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" new file mode 100644 index 00000000..d08a6e4c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" new file mode 100644 index 00000000..1f173ca4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" new file mode 100644 index 00000000..5121055b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" new file mode 100644 index 00000000..196a3672 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" new file mode 100644 index 00000000..29b44da3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" new file mode 100644 index 00000000..c23dfc0a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" new file mode 100644 index 00000000..e74226d7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" new file mode 100644 index 00000000..4451f4b6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" new file mode 100644 index 00000000..e1cc2fff --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" new file mode 100644 index 00000000..fbdd9156 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" new file mode 100644 index 00000000..5bf6f9d7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" new file mode 100644 index 00000000..eaeb744b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" new file mode 100644 index 00000000..05d8de78 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" new file mode 100644 index 00000000..b7164ecd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" new file mode 100644 index 00000000..e4d1eed9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" new file mode 100644 index 00000000..7cf5a810 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" new file mode 100644 index 00000000..f8c86ab3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" new file mode 100644 index 00000000..b1fb8c64 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" new file mode 100644 index 00000000..de4723c0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" new file mode 100644 index 00000000..91778b33 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" new file mode 100644 index 00000000..0bb821f5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" new file mode 100644 index 00000000..d9d0ad54 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" new file mode 100644 index 00000000..8211db58 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" new file mode 100644 index 00000000..8a718586 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" new file mode 100644 index 00000000..66c98ba8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" new file mode 100644 index 00000000..e2c6bc93 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" new file mode 100644 index 00000000..0e500733 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" new file mode 100644 index 00000000..0ee46f0e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" new file mode 100644 index 00000000..94b6efe5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" new file mode 100644 index 00000000..58761c5f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" new file mode 100644 index 00000000..c07df708 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" new file mode 100644 index 00000000..677f2aba --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" new file mode 100644 index 00000000..c875af6b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" new file mode 100644 index 00000000..e305987c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" new file mode 100644 index 00000000..23224d89 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" new file mode 100644 index 00000000..40531a0d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" new file mode 100644 index 00000000..20512431 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" new file mode 100644 index 00000000..c2c00d40 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" new file mode 100644 index 00000000..25db7f66 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" new file mode 100644 index 00000000..fa25b4c3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" new file mode 100644 index 00000000..1a49e4e4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" new file mode 100644 index 00000000..151eb2b6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" new file mode 100644 index 00000000..e388361f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" new file mode 100644 index 00000000..5444a844 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" new file mode 100644 index 00000000..16849628 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" new file mode 100644 index 00000000..b1696b20 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" new file mode 100644 index 00000000..dc446f8b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" new file mode 100644 index 00000000..a260a4eb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" new file mode 100644 index 00000000..458b823f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" new file mode 100644 index 00000000..a95c03cc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" new file mode 100644 index 00000000..97932db2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" new file mode 100644 index 00000000..e96f7a75 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" new file mode 100644 index 00000000..820ad3d1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" new file mode 100644 index 00000000..c08cfdbc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" new file mode 100644 index 00000000..8c9c0f65 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" new file mode 100644 index 00000000..85154b9a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" new file mode 100644 index 00000000..149454d1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" new file mode 100644 index 00000000..b3d38343 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" new file mode 100644 index 00000000..3f42d89e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" new file mode 100644 index 00000000..d7df3ba7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" new file mode 100644 index 00000000..1164245c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" new file mode 100644 index 00000000..fe86f78e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" new file mode 100644 index 00000000..85674420 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" new file mode 100644 index 00000000..0cdc45d0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" new file mode 100644 index 00000000..589ee04a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" new file mode 100644 index 00000000..0c5b3d4b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" new file mode 100644 index 00000000..b3ab8b8f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" new file mode 100644 index 00000000..7c89ca67 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.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 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; + } + + @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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" new file mode 100644 index 00000000..d20516b2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" new file mode 100644 index 00000000..2728b2e4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" new file mode 100644 index 00000000..4b6632c0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" new file mode 100644 index 00000000..f483e2b9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" new file mode 100644 index 00000000..d9e2f382 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" new file mode 100644 index 00000000..8217a55d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" new file mode 100644 index 00000000..575b2534 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" new file mode 100644 index 00000000..f2224f62 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" new file mode 100644 index 00000000..aa323c34 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" new file mode 100644 index 00000000..105fc9f3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" new file mode 100644 index 00000000..7cf11524 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" new file mode 100644 index 00000000..214b45ea --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" new file mode 100644 index 00000000..1cfc6ba6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" new file mode 100644 index 00000000..1c8cc5a9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" new file mode 100644 index 00000000..d92431f5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" new file mode 100644 index 00000000..02a7bdd9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" new file mode 100644 index 00000000..cb5aba1b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" new file mode 100644 index 00000000..94645af6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" new file mode 100644 index 00000000..14fa37a0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" new file mode 100644 index 00000000..743e7122 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" new file mode 100644 index 00000000..19cfc815 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" new file mode 100644 index 00000000..18c49646 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" new file mode 100644 index 00000000..0515f701 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" new file mode 100644 index 00000000..838774a2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" new file mode 100644 index 00000000..56b7b9c9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" new file mode 100644 index 00000000..aba21711 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" new file mode 100644 index 00000000..48f3ef70 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" new file mode 100644 index 00000000..a2acbb7e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" new file mode 100644 index 00000000..20631bb2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" new file mode 100644 index 00000000..268122ca --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" new file mode 100644 index 00000000..b968dc6e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" new file mode 100644 index 00000000..214d9bcd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" new file mode 100644 index 00000000..59fe6c78 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" new file mode 100644 index 00000000..5ccc4819 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" new file mode 100644 index 00000000..ec64a91b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" new file mode 100644 index 00000000..728cc49c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" new file mode 100644 index 00000000..07ba03a2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" new file mode 100644 index 00000000..4d95ad3e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" new file mode 100644 index 00000000..51205e58 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" new file mode 100644 index 00000000..85d84f0d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" new file mode 100644 index 00000000..1b4ec4eb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" new file mode 100644 index 00000000..9314a2ab --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" new file mode 100644 index 00000000..5be1f110 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" new file mode 100644 index 00000000..537f8f96 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" new file mode 100644 index 00000000..fcc65100 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" new file mode 100644 index 00000000..d35d6215 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" new file mode 100644 index 00000000..c17a838e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" new file mode 100644 index 00000000..14ddcd88 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" new file mode 100644 index 00000000..b737e8d5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" new file mode 100644 index 00000000..41d71f84 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" new file mode 100644 index 00000000..335ee659 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" new file mode 100644 index 00000000..1e2facea --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" new file mode 100644 index 00000000..ae9f7824 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" new file mode 100644 index 00000000..a668aa55 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" new file mode 100644 index 00000000..536ad65c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" new file mode 100644 index 00000000..f81e09c1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" new file mode 100644 index 00000000..c012b4d8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" new file mode 100644 index 00000000..dcee5410 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" new file mode 100644 index 00000000..2e4edece --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" new file mode 100644 index 00000000..e321a5ba --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" new file mode 100644 index 00000000..0f6e93ea --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" new file mode 100644 index 00000000..6ea577a9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" new file mode 100644 index 00000000..0c40a62d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" new file mode 100644 index 00000000..ac4d1b5b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" new file mode 100644 index 00000000..b236dfba --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" new file mode 100644 index 00000000..bda99caa --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" new file mode 100644 index 00000000..7b286205 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" new file mode 100644 index 00000000..8fd6f444 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" new file mode 100644 index 00000000..53740d6c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" new file mode 100644 index 00000000..d64f1faf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" @@ -0,0 +1,31 @@ +package com.mashibing.controller; + +import com.alibaba.fastjson.JSONObject; +import com.mashibing.bean.TblUserRecord; +import com.mashibing.service.LoginService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; + +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){ + System.out.println("login"); + TblUserRecord tblUserRecord = loginService.login(username,password); + System.out.println(tblUserRecord); + return JSONObject.toJSONString(tblUserRecord); + } +} diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" new file mode 100644 index 00000000..0257c63b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" new file mode 100644 index 00000000..3474a209 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" new file mode 100644 index 00000000..e1bd86fb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" new file mode 100644 index 00000000..ff950a38 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" new file mode 100644 index 00000000..9cf1b87f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" new file mode 100644 index 00000000..c90b776e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" new file mode 100644 index 00000000..1ea544f0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" new file mode 100644 index 00000000..eebe00a1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" new file mode 100644 index 00000000..665e48e8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" new file mode 100644 index 00000000..8578c435 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" new file mode 100644 index 00000000..05d2c9ce --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" new file mode 100644 index 00000000..b1e2169a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" new file mode 100644 index 00000000..ba6d8804 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" new file mode 100644 index 00000000..185cb8c5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" new file mode 100644 index 00000000..a6a0adf5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" new file mode 100644 index 00000000..87c4ae14 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" new file mode 100644 index 00000000..ec8ffd95 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" new file mode 100644 index 00000000..5fe0d9ff --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" new file mode 100644 index 00000000..84f22897 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" new file mode 100644 index 00000000..8cc2d90f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" new file mode 100644 index 00000000..46d5c9bb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" new file mode 100644 index 00000000..04a9c351 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" new file mode 100644 index 00000000..1ff878d3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" new file mode 100644 index 00000000..64fcaaec --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" new file mode 100644 index 00000000..ba4ae199 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" new file mode 100644 index 00000000..91111eb8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" new file mode 100644 index 00000000..d3cb9e77 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" new file mode 100644 index 00000000..48ab935c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" new file mode 100644 index 00000000..1186c413 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" new file mode 100644 index 00000000..17629f4e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" new file mode 100644 index 00000000..41580609 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" new file mode 100644 index 00000000..dc2ba35a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" new file mode 100644 index 00000000..1397c359 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" new file mode 100644 index 00000000..c88e53df --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" new file mode 100644 index 00000000..fc948e86 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" new file mode 100644 index 00000000..e165171f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" new file mode 100644 index 00000000..72ba9c89 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" new file mode 100644 index 00000000..bc9ddc5f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" new file mode 100644 index 00000000..33a6b6dc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" new file mode 100644 index 00000000..a8e4fabb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" new file mode 100644 index 00000000..21f1da57 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" new file mode 100644 index 00000000..2801fbe6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" new file mode 100644 index 00000000..e7e42449 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" new file mode 100644 index 00000000..51d93488 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" new file mode 100644 index 00000000..5e51b425 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" new file mode 100644 index 00000000..4700a7a3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" new file mode 100644 index 00000000..d6b8cfdf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" new file mode 100644 index 00000000..653361af --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" new file mode 100644 index 00000000..fe0e7870 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" new file mode 100644 index 00000000..ae5bb2ff --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" new file mode 100644 index 00000000..eab422a8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" new file mode 100644 index 00000000..b8e8905c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" new file mode 100644 index 00000000..30b87ac0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" new file mode 100644 index 00000000..30159a79 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" new file mode 100644 index 00000000..731cbafb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" new file mode 100644 index 00000000..7eecdeb0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" new file mode 100644 index 00000000..6c8aae76 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" new file mode 100644 index 00000000..a7e7e723 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" new file mode 100644 index 00000000..8cca6357 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" new file mode 100644 index 00000000..855d71c4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" new file mode 100644 index 00000000..48c19d6e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" new file mode 100644 index 00000000..1e8cc48b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" new file mode 100644 index 00000000..2d4f1bd5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" new file mode 100644 index 00000000..4f1490c5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" new file mode 100644 index 00000000..0ecc2e95 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" new file mode 100644 index 00000000..6195acdd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" new file mode 100644 index 00000000..ae6721ed --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" new file mode 100644 index 00000000..19a6e568 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" new file mode 100644 index 00000000..f4e8c5d5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" new file mode 100644 index 00000000..0e2270f5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" new file mode 100644 index 00000000..171ad93a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" new file mode 100644 index 00000000..91fe91bd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" new file mode 100644 index 00000000..ba1da783 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" new file mode 100644 index 00000000..f1b7033c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" new file mode 100644 index 00000000..4160a8ef --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" new file mode 100644 index 00000000..c6cb492a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" new file mode 100644 index 00000000..0a9c0d3a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" new file mode 100644 index 00000000..69df7d10 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" new file mode 100644 index 00000000..50c085ac --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" new file mode 100644 index 00000000..142d5a30 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" new file mode 100644 index 00000000..54172a9b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" new file mode 100644 index 00000000..755d557c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" new file mode 100644 index 00000000..8cccd266 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" new file mode 100644 index 00000000..257900ef --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" new file mode 100644 index 00000000..3ba141cd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" new file mode 100644 index 00000000..0ae181d2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" new file mode 100644 index 00000000..c498bf80 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" new file mode 100644 index 00000000..30c8e3b6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" new file mode 100644 index 00000000..a3cf52a5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" new file mode 100644 index 00000000..f0062bb6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" new file mode 100644 index 00000000..f9143e5f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" new file mode 100644 index 00000000..bef2c0fa --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" new file mode 100644 index 00000000..5693d3f0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" new file mode 100644 index 00000000..04c72127 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" new file mode 100644 index 00000000..3a015b99 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" new file mode 100644 index 00000000..c4fb52b4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" new file mode 100644 index 00000000..7b4bbf77 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" new file mode 100644 index 00000000..18235f72 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" new file mode 100644 index 00000000..b02c3008 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" new file mode 100644 index 00000000..bc562c16 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" new file mode 100644 index 00000000..6c3ea69f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" new file mode 100644 index 00000000..6bc45a0a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" new file mode 100644 index 00000000..10f7e8f4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" new file mode 100644 index 00000000..321e6374 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" new file mode 100644 index 00000000..5a129f62 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" new file mode 100644 index 00000000..970a3bde --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" new file mode 100644 index 00000000..bc4bb6a3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" new file mode 100644 index 00000000..10bb9e2c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" new file mode 100644 index 00000000..f4d52721 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" new file mode 100644 index 00000000..64c66222 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" new file mode 100644 index 00000000..946e535e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" new file mode 100644 index 00000000..0d7f2858 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" new file mode 100644 index 00000000..ec356f9f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" new file mode 100644 index 00000000..2dc92abc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" new file mode 100644 index 00000000..166cd50a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" new file mode 100644 index 00000000..18993a8d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" new file mode 100644 index 00000000..4cae98b1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" new file mode 100644 index 00000000..1bf89c28 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" new file mode 100644 index 00000000..e68b0eb1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" new file mode 100644 index 00000000..b30a3836 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" new file mode 100644 index 00000000..4e8c12e7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" new file mode 100644 index 00000000..fe3a85fd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" new file mode 100644 index 00000000..871de4f8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" new file mode 100644 index 00000000..f3fd75bc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" new file mode 100644 index 00000000..3e02ad48 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" new file mode 100644 index 00000000..65199184 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" new file mode 100644 index 00000000..443041b6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" new file mode 100644 index 00000000..58296699 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" new file mode 100644 index 00000000..ae205505 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" new file mode 100644 index 00000000..088db74b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" new file mode 100644 index 00000000..8949939f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" new file mode 100644 index 00000000..d7419b61 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" new file mode 100644 index 00000000..7e04fe0a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" new file mode 100644 index 00000000..1bd9aea8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" new file mode 100644 index 00000000..c16edd2f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" new file mode 100644 index 00000000..738d9db3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" new file mode 100644 index 00000000..52fb39ff --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" new file mode 100644 index 00000000..07d1512c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" new file mode 100644 index 00000000..d9cf9401 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" new file mode 100644 index 00000000..16ab6b5f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" new file mode 100644 index 00000000..5e3b0b23 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" new file mode 100644 index 00000000..9fba207c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" new file mode 100644 index 00000000..bdeda7fd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" new file mode 100644 index 00000000..72e41402 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" new file mode 100644 index 00000000..a9f515f2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" new file mode 100644 index 00000000..7d871844 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" new file mode 100644 index 00000000..09fd9261 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" new file mode 100644 index 00000000..fbaaf909 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" new file mode 100644 index 00000000..fcb9d8ea --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" new file mode 100644 index 00000000..fc9a7e73 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" new file mode 100644 index 00000000..868064e6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" new file mode 100644 index 00000000..33ee960c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" new file mode 100644 index 00000000..8d0a6df4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" new file mode 100644 index 00000000..a8b21571 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" new file mode 100644 index 00000000..6a4c3d09 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" new file mode 100644 index 00000000..a4364501 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" new file mode 100644 index 00000000..011a2ffd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" new file mode 100644 index 00000000..6c29bd5a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" @@ -0,0 +1,17 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcBuilding; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Mapper; + +/** + *

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

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcBuildingMapper extends BaseMapper { + +} diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" new file mode 100644 index 00000000..eac947f9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" new file mode 100644 index 00000000..33d8bb1c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" new file mode 100644 index 00000000..6e7344a6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" new file mode 100644 index 00000000..1667d756 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcCell; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

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

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellMapper extends BaseMapper { + +} diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" new file mode 100644 index 00000000..57448c20 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" new file mode 100644 index 00000000..d4a3740b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcEstate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcEstateMapper extends BaseMapper { + +} diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" new file mode 100644 index 00000000..efe2c3ac --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" new file mode 100644 index 00000000..02e4abad --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcUnit; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

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

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcUnitMapper extends BaseMapper { + +} diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" new file mode 100644 index 00000000..b6ee64ed --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" new file mode 100644 index 00000000..76cf5cdf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" new file mode 100644 index 00000000..9996c751 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" new file mode 100644 index 00000000..9ca0c09e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" new file mode 100644 index 00000000..fe7a89f0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" new file mode 100644 index 00000000..7e0be5cd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" new file mode 100644 index 00000000..3a6a3255 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" new file mode 100644 index 00000000..b9b60d1d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" new file mode 100644 index 00000000..45442b4e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" new file mode 100644 index 00000000..1bfdebe1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" new file mode 100644 index 00000000..90042a3f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" new file mode 100644 index 00000000..7caa4321 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" new file mode 100644 index 00000000..04e9ca1d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" new file mode 100644 index 00000000..af04a3f1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" new file mode 100644 index 00000000..11f47005 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" new file mode 100644 index 00000000..0a2dfcfb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" new file mode 100644 index 00000000..74d6162c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" new file mode 100644 index 00000000..a08eec0f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" new file mode 100644 index 00000000..e4dcb056 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" new file mode 100644 index 00000000..45dc9de6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" new file mode 100644 index 00000000..6e4bd40b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" new file mode 100644 index 00000000..4c07861b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" new file mode 100644 index 00000000..d61ef5dc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" new file mode 100644 index 00000000..1d28dc78 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" new file mode 100644 index 00000000..b7702087 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" new file mode 100644 index 00000000..4e22e989 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" new file mode 100644 index 00000000..e0f94645 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" new file mode 100644 index 00000000..417fb677 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" new file mode 100644 index 00000000..0f6b68ad --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" new file mode 100644 index 00000000..cce5dc33 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" new file mode 100644 index 00000000..b562327f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" new file mode 100644 index 00000000..d2ca32c1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" new file mode 100644 index 00000000..9e614634 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" new file mode 100644 index 00000000..afbc04e8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" new file mode 100644 index 00000000..37b6e890 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" new file mode 100644 index 00000000..c2d25edd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" new file mode 100644 index 00000000..35b423aa --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" new file mode 100644 index 00000000..22b1e67c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cb2be2cc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" new file mode 100644 index 00000000..af81c2c3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" new file mode 100644 index 00000000..9e2ba5af --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" new file mode 100644 index 00000000..bbd98de1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" new file mode 100644 index 00000000..192f82be --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" new file mode 100644 index 00000000..0646e29f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cd7b914d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" new file mode 100644 index 00000000..5434c4a1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" new file mode 100644 index 00000000..3561591e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" new file mode 100644 index 00000000..b6ceb6ee --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" new file mode 100644 index 00000000..07469a2f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" new file mode 100644 index 00000000..e438f742 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" new file mode 100644 index 00000000..cdf835b7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" new file mode 100644 index 00000000..7d3a782f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" new file mode 100644 index 00000000..3d71ac1f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" new file mode 100644 index 00000000..40c37016 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" new file mode 100644 index 00000000..b6e9e973 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" new file mode 100644 index 00000000..4196be6c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" new file mode 100644 index 00000000..b02b1db2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + attID, attName, attNewName, attKey, attClass + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" new file mode 100644 index 00000000..d7144d62 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" new file mode 100644 index 00000000..33c9dad8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, color + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" new file mode 100644 index 00000000..774e562e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" new file mode 100644 index 00000000..0805d128 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" new file mode 100644 index 00000000..e0983f8f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" new file mode 100644 index 00000000..320b6709 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, message_content, message_type + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" new file mode 100644 index 00000000..a04b2826 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.TblCompany; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 企业档案 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCompanyMapper extends BaseMapper { + +} diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" new file mode 100644 index 00000000..a7ffebfe --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" new file mode 100644 index 00000000..4f9bfbc4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" new file mode 100644 index 00000000..48558ff5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" new file mode 100644 index 00000000..d19bc2a5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" new file mode 100644 index 00000000..656febfa --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" new file mode 100644 index 00000000..35c28e50 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" new file mode 100644 index 00000000..844dfed2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, name, status, category + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" new file mode 100644 index 00000000..b3a21a79 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" new file mode 100644 index 00000000..9adb7d0a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" new file mode 100644 index 00000000..b238c676 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" new file mode 100644 index 00000000..85b85050 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" new file mode 100644 index 00000000..72b37cbe --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" new file mode 100644 index 00000000..559dabd3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" new file mode 100644 index 00000000..32bb96ec --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" new file mode 100644 index 00000000..4ca49194 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" new file mode 100644 index 00000000..f24a0930 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" new file mode 100644 index 00000000..c6180843 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" new file mode 100644 index 00000000..be418388 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" new file mode 100644 index 00000000..cfd2d95c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" new file mode 100644 index 00000000..8e85fa24 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" new file mode 100644 index 00000000..37832de8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" new file mode 100644 index 00000000..ee45cbdc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" new file mode 100644 index 00000000..46e98354 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, dept_name + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" new file mode 100644 index 00000000..f61480a2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" new file mode 100644 index 00000000..1513b0bd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" new file mode 100644 index 00000000..d7a52ea0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" new file mode 100644 index 00000000..30a86c07 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" new file mode 100644 index 00000000..760d40fa --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" new file mode 100644 index 00000000..c0807b5d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" new file mode 100644 index 00000000..c953523e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" new file mode 100644 index 00000000..458488e0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" new file mode 100644 index 00000000..5c538e3d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" new file mode 100644 index 00000000..dc8aa233 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" new file mode 100644 index 00000000..3392fe18 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" new file mode 100644 index 00000000..21fa88ee --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" new file mode 100644 index 00000000..5236c6b7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" new file mode 100644 index 00000000..35ef93cd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" new file mode 100644 index 00000000..f43dea95 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" new file mode 100644 index 00000000..fbf84dfa --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" new file mode 100644 index 00000000..38ec96a0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" new file mode 100644 index 00000000..eacce737 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, todo_id + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" new file mode 100644 index 00000000..36fba31c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" new file mode 100644 index 00000000..a8fbf84d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" new file mode 100644 index 00000000..01a62dbb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" new file mode 100644 index 00000000..d8c1d1f6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" new file mode 100644 index 00000000..53c62c6c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" new file mode 100644 index 00000000..4a25e381 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" new file mode 100644 index 00000000..7766e7c0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" new file mode 100644 index 00000000..3d8d6998 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" new file mode 100644 index 00000000..750c80a4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" new file mode 100644 index 00000000..cdcea02d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" new file mode 100644 index 00000000..eac8eddc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" new file mode 100644 index 00000000..8c76b775 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" new file mode 100644 index 00000000..a44766d3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" new file mode 100644 index 00000000..baa161cf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, receive_person, status + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" new file mode 100644 index 00000000..66be8bd9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" new file mode 100644 index 00000000..c4fe8b9b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" new file mode 100644 index 00000000..9956d03c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" new file mode 100644 index 00000000..378ae930 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" new file mode 100644 index 00000000..592f2f5e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" new file mode 100644 index 00000000..dc567184 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" new file mode 100644 index 00000000..fe8dc6f8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" new file mode 100644 index 00000000..ef31ed22 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" new file mode 100644 index 00000000..88fe58d7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" new file mode 100644 index 00000000..e56d1170 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" new file mode 100644 index 00000000..dca74c9e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" new file mode 100644 index 00000000..53f67262 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" new file mode 100644 index 00000000..8a2e2c50 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" new file mode 100644 index 00000000..2066fc38 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" new file mode 100644 index 00000000..829761c5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" new file mode 100644 index 00000000..76b4cc68 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" new file mode 100644 index 00000000..c42a30f0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" new file mode 100644 index 00000000..b6197ea0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" new file mode 100644 index 00000000..029b7a28 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" new file mode 100644 index 00000000..1bee0591 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" new file mode 100644 index 00000000..40be953a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" new file mode 100644 index 00000000..161d6c48 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" new file mode 100644 index 00000000..2b00fd46 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" new file mode 100644 index 00000000..e27d5181 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" new file mode 100644 index 00000000..aa7fe8dd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" new file mode 100644 index 00000000..f57ab44b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" new file mode 100644 index 00000000..77f9a37c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" new file mode 100644 index 00000000..160b35af --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + role_id, model_id + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" new file mode 100644 index 00000000..d40db931 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" new file mode 100644 index 00000000..a862b66c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" new file mode 100644 index 00000000..b2595e2c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" new file mode 100644 index 00000000..20e131e1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" new file mode 100644 index 00000000..7d234a29 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" new file mode 100644 index 00000000..71994c36 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" new file mode 100644 index 00000000..b2796ad4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" new file mode 100644 index 00000000..53b841f1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, name, days + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" new file mode 100644 index 00000000..f7182607 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" new file mode 100644 index 00000000..ee5d0d60 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" new file mode 100644 index 00000000..be89dacb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" new file mode 100644 index 00000000..9d79e6df --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" new file mode 100644 index 00000000..f7839dbe --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" new file mode 100644 index 00000000..51e5975d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" new file mode 100644 index 00000000..70956c0b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" new file mode 100644 index 00000000..eb22c5a6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" new file mode 100644 index 00000000..bdcce86b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" new file mode 100644 index 00000000..e6d8657d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, dept_id + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" new file mode 100644 index 00000000..7842c31a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" new file mode 100644 index 00000000..ffa8728d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" new file mode 100644 index 00000000..36794b99 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" new file mode 100644 index 00000000..dfaa7780 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" new file mode 100644 index 00000000..0f1103fc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" new file mode 100644 index 00000000..6eae3b8f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, role_id + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" new file mode 100644 index 00000000..000795b2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" new file mode 100644 index 00000000..dd40ea54 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, company_id + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" new file mode 100644 index 00000000..6f5da938 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" new file mode 100644 index 00000000..d9f412b6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" new file mode 100644 index 00000000..4c2668e9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" new file mode 100644 index 00000000..b671e2c6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" new file mode 100644 index 00000000..3eade778 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" new file mode 100644 index 00000000..b2144d43 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" new file mode 100644 index 00000000..917dfdf1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" new file mode 100644 index 00000000..8cccbf63 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" new file mode 100644 index 00000000..382495ba --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" new file mode 100644 index 00000000..22c9630e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" new file mode 100644 index 00000000..d180ed91 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" new file mode 100644 index 00000000..0a800a7b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" new file mode 100644 index 00000000..492be76d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" new file mode 100644 index 00000000..4f14698d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" new file mode 100644 index 00000000..bf1a8d28 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" new file mode 100644 index 00000000..95452789 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" new file mode 100644 index 00000000..a8c50a3f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" new file mode 100644 index 00000000..e976b0d3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" new file mode 100644 index 00000000..1e37116b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" new file mode 100644 index 00000000..39f79d5c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" new file mode 100644 index 00000000..841388dd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" new file mode 100644 index 00000000..8501fd02 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" new file mode 100644 index 00000000..227fd4b1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" new file mode 100644 index 00000000..46fe0eb2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" new file mode 100644 index 00000000..e23a1dfd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" new file mode 100644 index 00000000..84dac630 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" new file mode 100644 index 00000000..ad6991e2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" new file mode 100644 index 00000000..d7ad9898 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" new file mode 100644 index 00000000..b1b893c4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" new file mode 100644 index 00000000..6b519077 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" new file mode 100644 index 00000000..e1d7502b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" new file mode 100644 index 00000000..90027bfe --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" new file mode 100644 index 00000000..ab154d1d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" new file mode 100644 index 00000000..39320f02 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" new file mode 100644 index 00000000..4d47cf6b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" new file mode 100644 index 00000000..053e4f19 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" new file mode 100644 index 00000000..0071481d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" new file mode 100644 index 00000000..f937d489 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" new file mode 100644 index 00000000..7c9db4c5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" new file mode 100644 index 00000000..bc0adf13 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" new file mode 100644 index 00000000..1482ae44 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" new file mode 100644 index 00000000..f9c3c1e5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" new file mode 100644 index 00000000..bdc693ae --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" new file mode 100644 index 00000000..7675256f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" new file mode 100644 index 00000000..0bbfe2d0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" new file mode 100644 index 00000000..0c874a9d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" new file mode 100644 index 00000000..d0308f03 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" new file mode 100644 index 00000000..41a5b27e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" new file mode 100644 index 00000000..d041a8b7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" new file mode 100644 index 00000000..a4d7a8d1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" new file mode 100644 index 00000000..54f7c872 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" new file mode 100644 index 00000000..143f3fb9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" new file mode 100644 index 00000000..10ae7e06 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" new file mode 100644 index 00000000..9b46c4c4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" new file mode 100644 index 00000000..cb97cd7f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" new file mode 100644 index 00000000..1ef75962 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" new file mode 100644 index 00000000..600459f2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" new file mode 100644 index 00000000..8f15878b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" new file mode 100644 index 00000000..7020bf79 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" new file mode 100644 index 00000000..f35e7dd6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" new file mode 100644 index 00000000..0b0f0d41 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" new file mode 100644 index 00000000..b6af8384 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" new file mode 100644 index 00000000..17e62a80 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" new file mode 100644 index 00000000..c6924615 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" new file mode 100644 index 00000000..91d8c55d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" new file mode 100644 index 00000000..a7e822e7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" new file mode 100644 index 00000000..3b18e868 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" new file mode 100644 index 00000000..75422fe4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" new file mode 100644 index 00000000..54eb80d5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" new file mode 100644 index 00000000..1e48b3aa --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" new file mode 100644 index 00000000..8c80c030 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" new file mode 100644 index 00000000..b1d4888c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" new file mode 100644 index 00000000..46d9fab5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" new file mode 100644 index 00000000..a14a5e14 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" new file mode 100644 index 00000000..825f5e8d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" new file mode 100644 index 00000000..95e41b69 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" new file mode 100644 index 00000000..0d4bc17f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" new file mode 100644 index 00000000..8a8b5629 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" new file mode 100644 index 00000000..8c1dfdc7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" new file mode 100644 index 00000000..cf05f682 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" new file mode 100644 index 00000000..cedd97b6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" new file mode 100644 index 00000000..aa8112ff --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" new file mode 100644 index 00000000..478dd8ba --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" new file mode 100644 index 00000000..11270014 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" new file mode 100644 index 00000000..e31decca --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" new file mode 100644 index 00000000..815b3fcc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" new file mode 100644 index 00000000..c60cb46c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" new file mode 100644 index 00000000..3c62c16e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" new file mode 100644 index 00000000..3e6d01de --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" new file mode 100644 index 00000000..5639f342 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" new file mode 100644 index 00000000..f5719bb3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" new file mode 100644 index 00000000..8964260f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" new file mode 100644 index 00000000..7d8b163f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" new file mode 100644 index 00000000..21d2d998 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" new file mode 100644 index 00000000..fd3274b9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" new file mode 100644 index 00000000..8099f652 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" new file mode 100644 index 00000000..3ca600a9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" new file mode 100644 index 00000000..d9b094ed --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" new file mode 100644 index 00000000..b9e0b5c9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" new file mode 100644 index 00000000..bdaca0c1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" new file mode 100644 index 00000000..8be4efbb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" new file mode 100644 index 00000000..43bf0708 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" new file mode 100644 index 00000000..a657f2b3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" new file mode 100644 index 00000000..58ea57b6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" new file mode 100644 index 00000000..ad812b47 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" new file mode 100644 index 00000000..f5bb4acb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" new file mode 100644 index 00000000..ffb0e92b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" new file mode 100644 index 00000000..3bc55605 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" new file mode 100644 index 00000000..473ac749 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" new file mode 100644 index 00000000..6ddbe86d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" new file mode 100644 index 00000000..0f7af99b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" new file mode 100644 index 00000000..afb892bb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" new file mode 100644 index 00000000..5743d6fd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" new file mode 100644 index 00000000..2b3a0c9c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" new file mode 100644 index 00000000..27f0027b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" new file mode 100644 index 00000000..350520e6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" new file mode 100644 index 00000000..face874f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" new file mode 100644 index 00000000..31df2ef7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" new file mode 100644 index 00000000..f2bddf67 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" new file mode 100644 index 00000000..e650c63c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" new file mode 100644 index 00000000..6932d3a6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" new file mode 100644 index 00000000..af18e667 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" new file mode 100644 index 00000000..fee9fb8e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" new file mode 100644 index 00000000..e0291c07 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" new file mode 100644 index 00000000..b4ffcbf1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" new file mode 100644 index 00000000..af5fc9a7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" new file mode 100644 index 00000000..4c87b491 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" new file mode 100644 index 00000000..09e7c566 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" new file mode 100644 index 00000000..813331ad --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" new file mode 100644 index 00000000..fbb1d425 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" new file mode 100644 index 00000000..c484aa0e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" new file mode 100644 index 00000000..e7b5f0f7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" new file mode 100644 index 00000000..93796b62 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" new file mode 100644 index 00000000..5fb2eb8a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" new file mode 100644 index 00000000..8a97b3fe --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" new file mode 100644 index 00000000..db98316c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" new file mode 100644 index 00000000..8fdc7dbb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" new file mode 100644 index 00000000..5298dad4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" new file mode 100644 index 00000000..3cfb2e15 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" new file mode 100644 index 00000000..9bf21503 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" new file mode 100644 index 00000000..9a610bab --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" new file mode 100644 index 00000000..6294bb5e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" new file mode 100644 index 00000000..b86eab84 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" new file mode 100644 index 00000000..ae60cf2a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" new file mode 100644 index 00000000..551c6879 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" new file mode 100644 index 00000000..fe777a32 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" new file mode 100644 index 00000000..e5cbc763 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" new file mode 100644 index 00000000..ca6f263a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" new file mode 100644 index 00000000..4f8123cf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" new file mode 100644 index 00000000..885ee84a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" new file mode 100644 index 00000000..7ad0c71e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" new file mode 100644 index 00000000..ad2f6da5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" new file mode 100644 index 00000000..14a73ac9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" new file mode 100644 index 00000000..30a0c03b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" new file mode 100644 index 00000000..7c4ab043 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" new file mode 100644 index 00000000..f1de4911 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" new file mode 100644 index 00000000..b6e94746 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" new file mode 100644 index 00000000..83b9fdd4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" new file mode 100644 index 00000000..dd3d0f4f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" new file mode 100644 index 00000000..a4bd4b0e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" new file mode 100644 index 00000000..4146ee47 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" new file mode 100644 index 00000000..45f35a42 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" new file mode 100644 index 00000000..1b44c37b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" new file mode 100644 index 00000000..809b2ab7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" new file mode 100644 index 00000000..b2169aa2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" new file mode 100644 index 00000000..eb9c29d1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" new file mode 100644 index 00000000..9740de17 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" new file mode 100644 index 00000000..9ede23e9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" new file mode 100644 index 00000000..378531ca --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" new file mode 100644 index 00000000..d1ad6791 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" new file mode 100644 index 00000000..f0eb1243 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" new file mode 100644 index 00000000..d7112a35 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" new file mode 100644 index 00000000..728915dc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" new file mode 100644 index 00000000..ea03d266 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" new file mode 100644 index 00000000..ffce1b03 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" new file mode 100644 index 00000000..9cc75e06 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" new file mode 100644 index 00000000..25715533 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" new file mode 100644 index 00000000..289f482b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" new file mode 100644 index 00000000..2f78cc6c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" new file mode 100644 index 00000000..6dc1337d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" new file mode 100644 index 00000000..464ff62b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" new file mode 100644 index 00000000..60667f48 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" new file mode 100644 index 00000000..f17ac742 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" new file mode 100644 index 00000000..fc9edd16 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" new file mode 100644 index 00000000..9a189a74 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" new file mode 100644 index 00000000..d02f33d9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" new file mode 100644 index 00000000..13bfede9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" new file mode 100644 index 00000000..12ebd96b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" new file mode 100644 index 00000000..69fc1bd6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" new file mode 100644 index 00000000..4e0969ba --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" new file mode 100644 index 00000000..d2ef2b44 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" new file mode 100644 index 00000000..1487019c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" new file mode 100644 index 00000000..e9c84428 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" new file mode 100644 index 00000000..dfe86cba --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" new file mode 100644 index 00000000..b5457417 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" new file mode 100644 index 00000000..a7e6b254 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" new file mode 100644 index 00000000..a82b22a3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" new file mode 100644 index 00000000..0ffa2dd5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" new file mode 100644 index 00000000..1feb9bc4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" new file mode 100644 index 00000000..824d0525 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" new file mode 100644 index 00000000..4c12aabc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" new file mode 100644 index 00000000..7b9069a2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" new file mode 100644 index 00000000..4d903001 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" new file mode 100644 index 00000000..1c4387d7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" new file mode 100644 index 00000000..b119cdee --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" new file mode 100644 index 00000000..06c98288 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" new file mode 100644 index 00000000..3941af10 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" new file mode 100644 index 00000000..26518d8a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" new file mode 100644 index 00000000..9257a0f0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" new file mode 100644 index 00000000..fcebe802 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" new file mode 100644 index 00000000..0b4d1b58 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" new file mode 100644 index 00000000..5d11c5cb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" new file mode 100644 index 00000000..2cc94cba --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" new file mode 100644 index 00000000..26d96d7c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" new file mode 100644 index 00000000..8cb5d807 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" new file mode 100644 index 00000000..c1cf8468 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" new file mode 100644 index 00000000..2f8ce61f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" new file mode 100644 index 00000000..17bb962b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" new file mode 100644 index 00000000..80283723 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" new file mode 100644 index 00000000..ae4fd8da --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" new file mode 100644 index 00000000..23dbc6b6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" new file mode 100644 index 00000000..fcc1232a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" new file mode 100644 index 00000000..a1297cc7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" new file mode 100644 index 00000000..ac257ef1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" new file mode 100644 index 00000000..d6baf168 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" new file mode 100644 index 00000000..4bb2602b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" new file mode 100644 index 00000000..f20be5fb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" new file mode 100644 index 00000000..763d391d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" new file mode 100644 index 00000000..8d98d78e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" new file mode 100644 index 00000000..55935a0f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" new file mode 100644 index 00000000..393582c9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" new file mode 100644 index 00000000..c38dbfa7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" new file mode 100644 index 00000000..4bcc6bae --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" new file mode 100644 index 00000000..d8b33d84 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" new file mode 100644 index 00000000..bd039f3e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" new file mode 100644 index 00000000..94625090 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" new file mode 100644 index 00000000..3354c215 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" new file mode 100644 index 00000000..d49af48f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" new file mode 100644 index 00000000..0ce04b3a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" new file mode 100644 index 00000000..09904864 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" new file mode 100644 index 00000000..4aeb2341 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" new file mode 100644 index 00000000..b2f6102e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" new file mode 100644 index 00000000..e4deb3b7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" new file mode 100644 index 00000000..8e88e8cc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" new file mode 100644 index 00000000..34ff4bbf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" new file mode 100644 index 00000000..cb9bbe1d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" new file mode 100644 index 00000000..b83d423f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" new file mode 100644 index 00000000..945ed42c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" new file mode 100644 index 00000000..2929a149 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" new file mode 100644 index 00000000..d9df2cbc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" new file mode 100644 index 00000000..51aaf56a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" new file mode 100644 index 00000000..72e45927 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" new file mode 100644 index 00000000..85ff1592 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" new file mode 100644 index 00000000..68d12a5e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" new file mode 100644 index 00000000..d08e64c9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" new file mode 100644 index 00000000..666bf01b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" new file mode 100644 index 00000000..6eff60f2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" new file mode 100644 index 00000000..0ab9e557 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" new file mode 100644 index 00000000..e0ebbde7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" new file mode 100644 index 00000000..4968eb5a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" new file mode 100644 index 00000000..f1ede50a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" new file mode 100644 index 00000000..352bf9fb --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" new file mode 100644 index 00000000..f651bd00 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" new file mode 100644 index 00000000..d703f7e2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" new file mode 100644 index 00000000..d73d71c3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" new file mode 100644 index 00000000..92e11f93 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" new file mode 100644 index 00000000..2ccdac25 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" new file mode 100644 index 00000000..b9878a4c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" new file mode 100644 index 00000000..129d35c5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" new file mode 100644 index 00000000..798311e6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" new file mode 100644 index 00000000..e79fafd3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" new file mode 100644 index 00000000..d61d662b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" new file mode 100644 index 00000000..7c27e7fc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" new file mode 100644 index 00000000..a8c2da8f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" new file mode 100644 index 00000000..2c6ef840 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" new file mode 100644 index 00000000..e10ba81d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" new file mode 100644 index 00000000..7eaa504d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" new file mode 100644 index 00000000..eab2bbb0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" new file mode 100644 index 00000000..f408676a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" new file mode 100644 index 00000000..5246bdf3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" new file mode 100644 index 00000000..0fd4696d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" new file mode 100644 index 00000000..f1328ce7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" new file mode 100644 index 00000000..85b51419 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" new file mode 100644 index 00000000..2f7ab162 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" new file mode 100644 index 00000000..1c34335e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" new file mode 100644 index 00000000..44905dd3 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" new file mode 100644 index 00000000..c605c357 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" new file mode 100644 index 00000000..5d48e205 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" new file mode 100644 index 00000000..a08daee9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" new file mode 100644 index 00000000..abfcb014 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" new file mode 100644 index 00000000..bc5c83d6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" new file mode 100644 index 00000000..1b6d4f88 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" new file mode 100644 index 00000000..24f5045b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" new file mode 100644 index 00000000..89fec2be --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" new file mode 100644 index 00000000..95406a39 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" new file mode 100644 index 00000000..4a599f30 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" new file mode 100644 index 00000000..f8d17eba --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" new file mode 100644 index 00000000..e0883e05 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" new file mode 100644 index 00000000..63571b83 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" new file mode 100644 index 00000000..f935c5fc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" new file mode 100644 index 00000000..c6f1dd61 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" new file mode 100644 index 00000000..297efa16 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" new file mode 100644 index 00000000..8ecae9d7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" new file mode 100644 index 00000000..bf27846b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" new file mode 100644 index 00000000..9985660e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" new file mode 100644 index 00000000..3696d95f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" new file mode 100644 index 00000000..84b624e4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" new file mode 100644 index 00000000..439491a8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" new file mode 100644 index 00000000..e1817d3c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" new file mode 100644 index 00000000..d9164085 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" new file mode 100644 index 00000000..fe3269bc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" new file mode 100644 index 00000000..9eaa707e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" new file mode 100644 index 00000000..c8fd799e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..dca9ee28 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" new file mode 100644 index 00000000..38bb88aa --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" new file mode 100644 index 00000000..5cba602f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..3ac683ef --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" new file mode 100644 index 00000000..bf92b465 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" new file mode 100644 index 00000000..8e9dd99c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" new file mode 100644 index 00000000..de0ec987 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" new file mode 100644 index 00000000..74cafef4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" new file mode 100644 index 00000000..3e4332b1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" new file mode 100644 index 00000000..8d423f11 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" new file mode 100644 index 00000000..3af54d5c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" new file mode 100644 index 00000000..c033c55f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" new file mode 100644 index 00000000..6eeb1464 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" new file mode 100644 index 00000000..330ee801 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" new file mode 100644 index 00000000..1020286f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" new file mode 100644 index 00000000..11dfe067 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" new file mode 100644 index 00000000..3a119cb6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" new file mode 100644 index 00000000..2b8e2874 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" new file mode 100644 index 00000000..f4dba8d1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" new file mode 100644 index 00000000..f34a1f05 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" new file mode 100644 index 00000000..fb270d9a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" new file mode 100644 index 00000000..e6ea079c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" new file mode 100644 index 00000000..2ff25f23 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" new file mode 100644 index 00000000..34f6cc0d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" new file mode 100644 index 00000000..d11442b9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" new file mode 100644 index 00000000..5aaedc3b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..c984cb92 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" new file mode 100644 index 00000000..54f554c1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" new file mode 100644 index 00000000..6229c6d7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" new file mode 100644 index 00000000..f2e452bf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" new file mode 100644 index 00000000..f43345e1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" new file mode 100644 index 00000000..29f647a8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" new file mode 100644 index 00000000..885bd2a5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" new file mode 100644 index 00000000..6409c6bf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" new file mode 100644 index 00000000..a9d46521 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" new file mode 100644 index 00000000..ae431c15 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" new file mode 100644 index 00000000..1afd48e1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" new file mode 100644 index 00000000..85318f49 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" new file mode 100644 index 00000000..456cdc83 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" new file mode 100644 index 00000000..759ba1a1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" new file mode 100644 index 00000000..1a1e5af6 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" new file mode 100644 index 00000000..d187a008 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" new file mode 100644 index 00000000..b39dae32 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" new file mode 100644 index 00000000..19aa1062 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" new file mode 100644 index 00000000..76a739ac --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" new file mode 100644 index 00000000..f20819cd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" new file mode 100644 index 00000000..7a213a24 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" new file mode 100644 index 00000000..1ddead49 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" new file mode 100644 index 00000000..89eb91ac --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" new file mode 100644 index 00000000..a806863a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" new file mode 100644 index 00000000..cd80ed83 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" new file mode 100644 index 00000000..4f5c4d15 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" new file mode 100644 index 00000000..b9a4d409 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" new file mode 100644 index 00000000..fe5263b4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" new file mode 100644 index 00000000..15540c2c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" new file mode 100644 index 00000000..7d9d0145 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" new file mode 100644 index 00000000..47254b05 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" new file mode 100644 index 00000000..b78ba2c7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" new file mode 100644 index 00000000..67bc31aa --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" new file mode 100644 index 00000000..9c956a30 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" new file mode 100644 index 00000000..be8a0312 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" new file mode 100644 index 00000000..32c5264b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" new file mode 100644 index 00000000..c4f9fa0f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" new file mode 100644 index 00000000..623237c4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" new file mode 100644 index 00000000..32353953 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" new file mode 100644 index 00000000..37e9f66a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" new file mode 100644 index 00000000..afadd36b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" new file mode 100644 index 00000000..2fdecca4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" new file mode 100644 index 00000000..bd74298d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" new file mode 100644 index 00000000..5a1cf927 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" new file mode 100644 index 00000000..8add15c1 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" new file mode 100644 index 00000000..213f9834 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" new file mode 100644 index 00000000..c9d63b30 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" new file mode 100644 index 00000000..06d23d10 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..0825b0c4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" new file mode 100644 index 00000000..6ee34414 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" new file mode 100644 index 00000000..b8d84fac --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" new file mode 100644 index 00000000..d191d012 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" new file mode 100644 index 00000000..f5e1ac1d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" new file mode 100644 index 00000000..c95705b8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" new file mode 100644 index 00000000..7bde96df --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" new file mode 100644 index 00000000..c130b14c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" new file mode 100644 index 00000000..511baf3d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" new file mode 100644 index 00000000..4b1be59e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" new file mode 100644 index 00000000..45ed0547 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" new file mode 100644 index 00000000..25ac5891 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..ff281e70 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..d209585c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..2d4df8bf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" new file mode 100644 index 00000000..39742aff --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" new file mode 100644 index 00000000..afa57579 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" new file mode 100644 index 00000000..90d5fdc2 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" new file mode 100644 index 00000000..8bf31cb4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" new file mode 100644 index 00000000..aef32264 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" new file mode 100644 index 00000000..11da05bf --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" new file mode 100644 index 00000000..ccdf6385 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" new file mode 100644 index 00000000..c4c7b6c9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" new file mode 100644 index 00000000..238747a8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" new file mode 100644 index 00000000..803a81a7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" new file mode 100644 index 00000000..718d6748 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..34c101cc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..b1a467a8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" new file mode 100644 index 00000000..43e1c77f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" new file mode 100644 index 00000000..b12c0ccc --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" new file mode 100644 index 00000000..031caa22 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" new file mode 100644 index 00000000..2c1f2ad5 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" new file mode 100644 index 00000000..3d8c6bab --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" new file mode 100644 index 00000000..0c10e602 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..80d9ca7c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" new file mode 100644 index 00000000..56d9d151 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" new file mode 100644 index 00000000..95851072 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" new file mode 100644 index 00000000..6aba3269 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" new file mode 100644 index 00000000..88a0f21e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" new file mode 100644 index 00000000..4ef7629b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" new file mode 100644 index 00000000..30380d8e --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" new file mode 100644 index 00000000..da5757ce --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" new file mode 100644 index 00000000..1ed4116f --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" new file mode 100644 index 00000000..867cba4a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" new file mode 100644 index 00000000..df714ba0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" new file mode 100644 index 00000000..75386e6a --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" new file mode 100644 index 00000000..f3f2abca --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" new file mode 100644 index 00000000..c414b8a8 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" new file mode 100644 index 00000000..f79257b4 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" new file mode 100644 index 00000000..16395bcd --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" new file mode 100644 index 00000000..109c871b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" new file mode 100644 index 00000000..def513b7 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" new file mode 100644 index 00000000..45c0da98 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" new file mode 100644 index 00000000..2fdfbd4d --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" new file mode 100644 index 00000000..a93da188 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" new file mode 100644 index 00000000..267f891b --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" new file mode 100644 index 00000000..39bdc8ef --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" new file mode 100644 index 00000000..d370c7df --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" new file mode 100644 index 00000000..2cd6279c --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" new file mode 100644 index 00000000..cdd56946 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/resources/application.yaml" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/main/resources/application.yaml" new file mode 100644 index 00000000..fbf86b78 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" new file mode 100644 index 00000000..22c5e9e9 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" new file mode 100644 index 00000000..f8a635a0 --- /dev/null +++ "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/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/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/webproject.zip" "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/webproject.zip" new file mode 100644 index 00000000..b65a8171 Binary files /dev/null and "b/project/02\351\241\271\347\233\256\347\216\257\345\242\203\346\220\255\345\273\272\345\217\212\347\231\273\345\275\225\346\223\215\344\275\234/webproject.zip" differ diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/.gitignore" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/.gitignore" new file mode 100644 index 00000000..a2a3040a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/.mvn/wrapper/MavenWrapperDownloader.java" new file mode 100644 index 00000000..e76d1f32 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/.mvn/wrapper/maven-wrapper.jar" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/.mvn/wrapper/maven-wrapper.jar" new file mode 100644 index 00000000..2cc7d4a5 Binary files /dev/null and "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/.mvn/wrapper/maven-wrapper.jar" differ diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/.mvn/wrapper/maven-wrapper.properties" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/.mvn/wrapper/maven-wrapper.properties" new file mode 100644 index 00000000..642d572c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/README.md" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/README.md" new file mode 100644 index 00000000..7572774d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/README.md" @@ -0,0 +1,3 @@ +前端项目地址 +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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/mvnw" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/mvnw" new file mode 100644 index 00000000..a16b5431 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/mvnw.cmd" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/mvnw.cmd" new file mode 100644 index 00000000..c8d43372 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/pom.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/pom.xml" new file mode 100644 index 00000000..6507335a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" new file mode 100644 index 00000000..023c9a63 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" new file mode 100644 index 00000000..6231ce90 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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.time.LocalDateTime; +import java.io.Serializable; + +/** + *

+ * 楼宇信息表 + *

+ * + * @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 LocalDateTime finishDate; + + /** + * 封顶日期 + */ + private LocalDateTime 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 LocalDateTime getFinishDate() { + return finishDate; + } + + public void setFinishDate(LocalDateTime finishDate) { + this.finishDate = finishDate; + } + + public LocalDateTime getOverRoofDate() { + return overRoofDate; + } + + public void setOverRoofDate(LocalDateTime 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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" new file mode 100644 index 00000000..20cf9fad --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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 Integer 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 Integer getUnitCode() { + return unitCode; + } + + public void setUnitCode(Integer 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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" new file mode 100644 index 00000000..4f403639 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" new file mode 100644 index 00000000..8b7db416 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" new file mode 100644 index 00000000..c455aa05 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" new file mode 100644 index 00000000..d867e860 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" new file mode 100644 index 00000000..070de0e0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" new file mode 100644 index 00000000..ba6be805 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" new file mode 100644 index 00000000..25b3d52f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" new file mode 100644 index 00000000..3185d6c7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" new file mode 100644 index 00000000..e3145667 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" new file mode 100644 index 00000000..248e91c1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" new file mode 100644 index 00000000..04da5c4d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" new file mode 100644 index 00000000..343ce915 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" new file mode 100644 index 00000000..298cd463 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" new file mode 100644 index 00000000..04d92ce4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" new file mode 100644 index 00000000..d684549f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" new file mode 100644 index 00000000..ac36b7f5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" new file mode 100644 index 00000000..1726aaf6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" new file mode 100644 index 00000000..352d3143 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" new file mode 100644 index 00000000..dd320bda --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" new file mode 100644 index 00000000..d08a6e4c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" new file mode 100644 index 00000000..1f173ca4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" new file mode 100644 index 00000000..5121055b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" new file mode 100644 index 00000000..196a3672 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" new file mode 100644 index 00000000..29b44da3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" new file mode 100644 index 00000000..c23dfc0a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" new file mode 100644 index 00000000..e74226d7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" new file mode 100644 index 00000000..4451f4b6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" new file mode 100644 index 00000000..e1cc2fff --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" new file mode 100644 index 00000000..fbdd9156 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" new file mode 100644 index 00000000..5bf6f9d7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" new file mode 100644 index 00000000..eaeb744b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" new file mode 100644 index 00000000..05d8de78 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" new file mode 100644 index 00000000..b7164ecd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" new file mode 100644 index 00000000..e4d1eed9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" new file mode 100644 index 00000000..7cf5a810 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" new file mode 100644 index 00000000..f8c86ab3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" new file mode 100644 index 00000000..b1fb8c64 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" new file mode 100644 index 00000000..de4723c0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" new file mode 100644 index 00000000..91778b33 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" new file mode 100644 index 00000000..0bb821f5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" new file mode 100644 index 00000000..d9d0ad54 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" new file mode 100644 index 00000000..8211db58 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" new file mode 100644 index 00000000..8a718586 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" new file mode 100644 index 00000000..66c98ba8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" new file mode 100644 index 00000000..e2c6bc93 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" new file mode 100644 index 00000000..0e500733 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" new file mode 100644 index 00000000..0ee46f0e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" new file mode 100644 index 00000000..94b6efe5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" new file mode 100644 index 00000000..58761c5f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" new file mode 100644 index 00000000..c07df708 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" new file mode 100644 index 00000000..677f2aba --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" new file mode 100644 index 00000000..c875af6b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" new file mode 100644 index 00000000..e305987c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" new file mode 100644 index 00000000..23224d89 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" new file mode 100644 index 00000000..40531a0d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" new file mode 100644 index 00000000..20512431 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" new file mode 100644 index 00000000..c2c00d40 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" new file mode 100644 index 00000000..25db7f66 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" new file mode 100644 index 00000000..fa25b4c3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" new file mode 100644 index 00000000..1a49e4e4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" new file mode 100644 index 00000000..151eb2b6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" new file mode 100644 index 00000000..e388361f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" new file mode 100644 index 00000000..5444a844 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" new file mode 100644 index 00000000..16849628 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" new file mode 100644 index 00000000..b1696b20 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" new file mode 100644 index 00000000..dc446f8b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" new file mode 100644 index 00000000..a260a4eb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" new file mode 100644 index 00000000..458b823f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" new file mode 100644 index 00000000..a95c03cc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" new file mode 100644 index 00000000..97932db2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" new file mode 100644 index 00000000..e96f7a75 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" new file mode 100644 index 00000000..820ad3d1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" new file mode 100644 index 00000000..c08cfdbc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" new file mode 100644 index 00000000..8c9c0f65 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" new file mode 100644 index 00000000..85154b9a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" new file mode 100644 index 00000000..149454d1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" new file mode 100644 index 00000000..b3d38343 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" new file mode 100644 index 00000000..3f42d89e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" new file mode 100644 index 00000000..d7df3ba7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" new file mode 100644 index 00000000..1164245c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" new file mode 100644 index 00000000..fe86f78e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" new file mode 100644 index 00000000..85674420 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" new file mode 100644 index 00000000..0cdc45d0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" new file mode 100644 index 00000000..589ee04a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" new file mode 100644 index 00000000..0c5b3d4b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" new file mode 100644 index 00000000..b3ab8b8f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" new file mode 100644 index 00000000..60eb7902 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" new file mode 100644 index 00000000..d20516b2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" new file mode 100644 index 00000000..2728b2e4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" new file mode 100644 index 00000000..4b6632c0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" new file mode 100644 index 00000000..f483e2b9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" new file mode 100644 index 00000000..d9e2f382 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" new file mode 100644 index 00000000..8217a55d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" new file mode 100644 index 00000000..575b2534 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" new file mode 100644 index 00000000..f2224f62 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" new file mode 100644 index 00000000..aa323c34 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" new file mode 100644 index 00000000..105fc9f3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" new file mode 100644 index 00000000..7cf11524 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" new file mode 100644 index 00000000..214b45ea --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" new file mode 100644 index 00000000..1cfc6ba6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" new file mode 100644 index 00000000..1c8cc5a9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" new file mode 100644 index 00000000..d92431f5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" new file mode 100644 index 00000000..02a7bdd9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" new file mode 100644 index 00000000..cb5aba1b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" new file mode 100644 index 00000000..94645af6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" new file mode 100644 index 00000000..14fa37a0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" new file mode 100644 index 00000000..743e7122 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" new file mode 100644 index 00000000..19cfc815 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" new file mode 100644 index 00000000..18c49646 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" new file mode 100644 index 00000000..0515f701 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" new file mode 100644 index 00000000..838774a2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" new file mode 100644 index 00000000..56b7b9c9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" new file mode 100644 index 00000000..aba21711 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" new file mode 100644 index 00000000..48f3ef70 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" new file mode 100644 index 00000000..a2acbb7e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" new file mode 100644 index 00000000..20631bb2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" new file mode 100644 index 00000000..268122ca --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" new file mode 100644 index 00000000..b968dc6e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" new file mode 100644 index 00000000..214d9bcd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" new file mode 100644 index 00000000..59fe6c78 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" new file mode 100644 index 00000000..5ccc4819 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" new file mode 100644 index 00000000..ec64a91b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" new file mode 100644 index 00000000..728cc49c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" new file mode 100644 index 00000000..07ba03a2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" new file mode 100644 index 00000000..4d95ad3e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" new file mode 100644 index 00000000..51205e58 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" new file mode 100644 index 00000000..85d84f0d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" new file mode 100644 index 00000000..1b4ec4eb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" new file mode 100644 index 00000000..9314a2ab --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" new file mode 100644 index 00000000..5be1f110 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" new file mode 100644 index 00000000..537f8f96 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" new file mode 100644 index 00000000..fcc65100 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" new file mode 100644 index 00000000..d35d6215 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" new file mode 100644 index 00000000..c17a838e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" new file mode 100644 index 00000000..14ddcd88 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" new file mode 100644 index 00000000..b737e8d5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" new file mode 100644 index 00000000..41d71f84 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" new file mode 100644 index 00000000..335ee659 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" new file mode 100644 index 00000000..1e2facea --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" new file mode 100644 index 00000000..ae9f7824 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" new file mode 100644 index 00000000..a668aa55 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" new file mode 100644 index 00000000..536ad65c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" new file mode 100644 index 00000000..f81e09c1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" new file mode 100644 index 00000000..c012b4d8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" new file mode 100644 index 00000000..dcee5410 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" new file mode 100644 index 00000000..2e4edece --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" new file mode 100644 index 00000000..e321a5ba --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" new file mode 100644 index 00000000..0f6e93ea --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" new file mode 100644 index 00000000..6ea577a9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" new file mode 100644 index 00000000..0c40a62d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" new file mode 100644 index 00000000..ac4d1b5b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" new file mode 100644 index 00000000..b236dfba --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" new file mode 100644 index 00000000..bda99caa --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" new file mode 100644 index 00000000..7b286205 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" new file mode 100644 index 00000000..8fd6f444 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" new file mode 100644 index 00000000..53740d6c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" new file mode 100644 index 00000000..0d55872a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" @@ -0,0 +1,27 @@ +package com.mashibing.controller; + +import com.alibaba.fastjson.JSONObject; +import com.mashibing.bean.TblCompany; +import com.mashibing.returnJson.ReturnObject; +import com.mashibing.service.EstateService; +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 = "*",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)); + } +} diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" new file mode 100644 index 00000000..e8286669 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" new file mode 100644 index 00000000..0257c63b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" new file mode 100644 index 00000000..3474a209 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" new file mode 100644 index 00000000..e1bd86fb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" new file mode 100644 index 00000000..ff950a38 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" new file mode 100644 index 00000000..9cf1b87f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" new file mode 100644 index 00000000..c90b776e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" new file mode 100644 index 00000000..1ea544f0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" new file mode 100644 index 00000000..eebe00a1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" new file mode 100644 index 00000000..665e48e8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" new file mode 100644 index 00000000..8578c435 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" new file mode 100644 index 00000000..05d2c9ce --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" new file mode 100644 index 00000000..b1e2169a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" new file mode 100644 index 00000000..ba6d8804 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" new file mode 100644 index 00000000..185cb8c5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" new file mode 100644 index 00000000..a6a0adf5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" new file mode 100644 index 00000000..87c4ae14 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" new file mode 100644 index 00000000..ec8ffd95 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" new file mode 100644 index 00000000..5fe0d9ff --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" new file mode 100644 index 00000000..84f22897 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" new file mode 100644 index 00000000..8cc2d90f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" new file mode 100644 index 00000000..46d5c9bb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" new file mode 100644 index 00000000..04a9c351 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" new file mode 100644 index 00000000..1ff878d3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" new file mode 100644 index 00000000..64fcaaec --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" new file mode 100644 index 00000000..ba4ae199 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" new file mode 100644 index 00000000..91111eb8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" new file mode 100644 index 00000000..d3cb9e77 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" new file mode 100644 index 00000000..48ab935c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" new file mode 100644 index 00000000..1186c413 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" new file mode 100644 index 00000000..17629f4e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" new file mode 100644 index 00000000..41580609 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" new file mode 100644 index 00000000..dc2ba35a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" new file mode 100644 index 00000000..1397c359 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" new file mode 100644 index 00000000..c88e53df --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" new file mode 100644 index 00000000..fc948e86 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" new file mode 100644 index 00000000..e165171f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" new file mode 100644 index 00000000..72ba9c89 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" new file mode 100644 index 00000000..bc9ddc5f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" new file mode 100644 index 00000000..33a6b6dc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" new file mode 100644 index 00000000..a8e4fabb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" new file mode 100644 index 00000000..21f1da57 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" new file mode 100644 index 00000000..2801fbe6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" new file mode 100644 index 00000000..e7e42449 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" new file mode 100644 index 00000000..51d93488 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" new file mode 100644 index 00000000..5e51b425 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" new file mode 100644 index 00000000..4700a7a3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" new file mode 100644 index 00000000..d6b8cfdf --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" new file mode 100644 index 00000000..653361af --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" new file mode 100644 index 00000000..fe0e7870 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" new file mode 100644 index 00000000..ae5bb2ff --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" new file mode 100644 index 00000000..eab422a8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" new file mode 100644 index 00000000..b8e8905c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" new file mode 100644 index 00000000..30b87ac0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" new file mode 100644 index 00000000..30159a79 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" new file mode 100644 index 00000000..731cbafb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" new file mode 100644 index 00000000..7eecdeb0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" new file mode 100644 index 00000000..6c8aae76 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" new file mode 100644 index 00000000..a7e7e723 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" new file mode 100644 index 00000000..8cca6357 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" new file mode 100644 index 00000000..855d71c4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" new file mode 100644 index 00000000..48c19d6e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" new file mode 100644 index 00000000..1e8cc48b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" new file mode 100644 index 00000000..2d4f1bd5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" new file mode 100644 index 00000000..4f1490c5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" new file mode 100644 index 00000000..0ecc2e95 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" new file mode 100644 index 00000000..6195acdd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" new file mode 100644 index 00000000..ae6721ed --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" new file mode 100644 index 00000000..19a6e568 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" new file mode 100644 index 00000000..f4e8c5d5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" new file mode 100644 index 00000000..0e2270f5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" new file mode 100644 index 00000000..171ad93a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" new file mode 100644 index 00000000..91fe91bd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" new file mode 100644 index 00000000..ba1da783 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" new file mode 100644 index 00000000..f1b7033c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" new file mode 100644 index 00000000..4160a8ef --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" new file mode 100644 index 00000000..c6cb492a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" new file mode 100644 index 00000000..0a9c0d3a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" new file mode 100644 index 00000000..69df7d10 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" new file mode 100644 index 00000000..50c085ac --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" new file mode 100644 index 00000000..142d5a30 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" new file mode 100644 index 00000000..54172a9b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" new file mode 100644 index 00000000..755d557c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" new file mode 100644 index 00000000..8cccd266 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" new file mode 100644 index 00000000..257900ef --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" new file mode 100644 index 00000000..3ba141cd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" new file mode 100644 index 00000000..0ae181d2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" new file mode 100644 index 00000000..c498bf80 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" new file mode 100644 index 00000000..30c8e3b6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" new file mode 100644 index 00000000..a3cf52a5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" new file mode 100644 index 00000000..f0062bb6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" new file mode 100644 index 00000000..f9143e5f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" new file mode 100644 index 00000000..bef2c0fa --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" new file mode 100644 index 00000000..5693d3f0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" new file mode 100644 index 00000000..04c72127 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" new file mode 100644 index 00000000..3a015b99 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" new file mode 100644 index 00000000..c4fb52b4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" new file mode 100644 index 00000000..7b4bbf77 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" new file mode 100644 index 00000000..18235f72 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" new file mode 100644 index 00000000..b02c3008 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" new file mode 100644 index 00000000..bc562c16 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" new file mode 100644 index 00000000..6c3ea69f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" new file mode 100644 index 00000000..6bc45a0a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" new file mode 100644 index 00000000..10f7e8f4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" new file mode 100644 index 00000000..321e6374 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" new file mode 100644 index 00000000..5a129f62 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" new file mode 100644 index 00000000..970a3bde --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" new file mode 100644 index 00000000..bc4bb6a3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" new file mode 100644 index 00000000..10bb9e2c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" new file mode 100644 index 00000000..f4d52721 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" new file mode 100644 index 00000000..64c66222 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" new file mode 100644 index 00000000..946e535e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" new file mode 100644 index 00000000..0d7f2858 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" new file mode 100644 index 00000000..ec356f9f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" new file mode 100644 index 00000000..2dc92abc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" new file mode 100644 index 00000000..166cd50a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" new file mode 100644 index 00000000..18993a8d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" new file mode 100644 index 00000000..4cae98b1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" new file mode 100644 index 00000000..1bf89c28 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" new file mode 100644 index 00000000..e68b0eb1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" new file mode 100644 index 00000000..b30a3836 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" new file mode 100644 index 00000000..4e8c12e7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" new file mode 100644 index 00000000..fe3a85fd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" new file mode 100644 index 00000000..871de4f8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" new file mode 100644 index 00000000..f3fd75bc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" new file mode 100644 index 00000000..3e02ad48 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" new file mode 100644 index 00000000..65199184 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" new file mode 100644 index 00000000..443041b6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" new file mode 100644 index 00000000..58296699 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" new file mode 100644 index 00000000..ae205505 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" new file mode 100644 index 00000000..088db74b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" new file mode 100644 index 00000000..8949939f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" new file mode 100644 index 00000000..d7419b61 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" new file mode 100644 index 00000000..7e04fe0a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" new file mode 100644 index 00000000..1bd9aea8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" new file mode 100644 index 00000000..c16edd2f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" new file mode 100644 index 00000000..738d9db3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" new file mode 100644 index 00000000..52fb39ff --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" new file mode 100644 index 00000000..07d1512c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" new file mode 100644 index 00000000..d9cf9401 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" new file mode 100644 index 00000000..16ab6b5f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" new file mode 100644 index 00000000..5e3b0b23 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" new file mode 100644 index 00000000..9fba207c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" new file mode 100644 index 00000000..bdeda7fd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" new file mode 100644 index 00000000..72e41402 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" new file mode 100644 index 00000000..a9f515f2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" new file mode 100644 index 00000000..7d871844 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" new file mode 100644 index 00000000..09fd9261 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" new file mode 100644 index 00000000..fbaaf909 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" new file mode 100644 index 00000000..fcb9d8ea --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" new file mode 100644 index 00000000..fc9a7e73 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" new file mode 100644 index 00000000..868064e6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" new file mode 100644 index 00000000..33ee960c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" new file mode 100644 index 00000000..8d0a6df4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" new file mode 100644 index 00000000..a8b21571 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" new file mode 100644 index 00000000..6a4c3d09 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" new file mode 100644 index 00000000..a4364501 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" new file mode 100644 index 00000000..011a2ffd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" new file mode 100644 index 00000000..6c29bd5a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" @@ -0,0 +1,17 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcBuilding; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Mapper; + +/** + *

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

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcBuildingMapper extends BaseMapper { + +} diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" new file mode 100644 index 00000000..eac947f9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" new file mode 100644 index 00000000..33d8bb1c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" new file mode 100644 index 00000000..6e7344a6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" new file mode 100644 index 00000000..1667d756 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcCell; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

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

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellMapper extends BaseMapper { + +} diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" new file mode 100644 index 00000000..57448c20 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" new file mode 100644 index 00000000..d4a3740b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcEstate; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

+ * 楼盘信息 Mapper 接口 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcEstateMapper extends BaseMapper { + +} diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" new file mode 100644 index 00000000..efe2c3ac --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" new file mode 100644 index 00000000..02e4abad --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcUnit; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

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

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcUnitMapper extends BaseMapper { + +} diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" new file mode 100644 index 00000000..b6ee64ed --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" new file mode 100644 index 00000000..76cf5cdf --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" new file mode 100644 index 00000000..9996c751 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" new file mode 100644 index 00000000..9ca0c09e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" new file mode 100644 index 00000000..fe7a89f0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" new file mode 100644 index 00000000..7e0be5cd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" new file mode 100644 index 00000000..3a6a3255 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" new file mode 100644 index 00000000..b9b60d1d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" new file mode 100644 index 00000000..45442b4e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" new file mode 100644 index 00000000..1bfdebe1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" new file mode 100644 index 00000000..90042a3f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" new file mode 100644 index 00000000..7caa4321 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" new file mode 100644 index 00000000..04e9ca1d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" new file mode 100644 index 00000000..af04a3f1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" new file mode 100644 index 00000000..11f47005 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" new file mode 100644 index 00000000..0a2dfcfb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" new file mode 100644 index 00000000..74d6162c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" new file mode 100644 index 00000000..a08eec0f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" new file mode 100644 index 00000000..e4dcb056 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" new file mode 100644 index 00000000..45dc9de6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" new file mode 100644 index 00000000..6e4bd40b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" new file mode 100644 index 00000000..4c07861b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" new file mode 100644 index 00000000..d61ef5dc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" new file mode 100644 index 00000000..1d28dc78 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" new file mode 100644 index 00000000..b7702087 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" new file mode 100644 index 00000000..4e22e989 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" new file mode 100644 index 00000000..e0f94645 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" new file mode 100644 index 00000000..417fb677 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" new file mode 100644 index 00000000..0f6b68ad --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" new file mode 100644 index 00000000..cce5dc33 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" new file mode 100644 index 00000000..b562327f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" new file mode 100644 index 00000000..d2ca32c1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" new file mode 100644 index 00000000..9e614634 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" new file mode 100644 index 00000000..afbc04e8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" new file mode 100644 index 00000000..37b6e890 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" new file mode 100644 index 00000000..c2d25edd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" new file mode 100644 index 00000000..35b423aa --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" new file mode 100644 index 00000000..22b1e67c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cb2be2cc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" new file mode 100644 index 00000000..af81c2c3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" new file mode 100644 index 00000000..9e2ba5af --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" new file mode 100644 index 00000000..bbd98de1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" new file mode 100644 index 00000000..192f82be --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" new file mode 100644 index 00000000..0646e29f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cd7b914d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" new file mode 100644 index 00000000..5434c4a1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" new file mode 100644 index 00000000..3561591e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" new file mode 100644 index 00000000..b6ceb6ee --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" new file mode 100644 index 00000000..07469a2f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" new file mode 100644 index 00000000..e438f742 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" new file mode 100644 index 00000000..cdf835b7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" new file mode 100644 index 00000000..7d3a782f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" new file mode 100644 index 00000000..3d71ac1f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" new file mode 100644 index 00000000..40c37016 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" new file mode 100644 index 00000000..b6e9e973 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" new file mode 100644 index 00000000..4196be6c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" new file mode 100644 index 00000000..b02b1db2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + attID, attName, attNewName, attKey, attClass + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" new file mode 100644 index 00000000..d7144d62 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" new file mode 100644 index 00000000..33c9dad8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, color + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" new file mode 100644 index 00000000..774e562e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" new file mode 100644 index 00000000..0805d128 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" new file mode 100644 index 00000000..e0983f8f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" new file mode 100644 index 00000000..320b6709 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, message_content, message_type + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" new file mode 100644 index 00000000..34692b8d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" new file mode 100644 index 00000000..dd3a87b4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" new file mode 100644 index 00000000..4f9bfbc4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" new file mode 100644 index 00000000..48558ff5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" new file mode 100644 index 00000000..d19bc2a5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" new file mode 100644 index 00000000..656febfa --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" new file mode 100644 index 00000000..35c28e50 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" new file mode 100644 index 00000000..844dfed2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, name, status, category + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" new file mode 100644 index 00000000..b3a21a79 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" new file mode 100644 index 00000000..9adb7d0a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" new file mode 100644 index 00000000..b238c676 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" new file mode 100644 index 00000000..85b85050 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" new file mode 100644 index 00000000..72b37cbe --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" new file mode 100644 index 00000000..559dabd3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" new file mode 100644 index 00000000..32bb96ec --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" new file mode 100644 index 00000000..4ca49194 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" new file mode 100644 index 00000000..f24a0930 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" new file mode 100644 index 00000000..c6180843 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" new file mode 100644 index 00000000..be418388 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" new file mode 100644 index 00000000..cfd2d95c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" new file mode 100644 index 00000000..8e85fa24 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" new file mode 100644 index 00000000..37832de8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" new file mode 100644 index 00000000..ee45cbdc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" new file mode 100644 index 00000000..46e98354 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, dept_name + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" new file mode 100644 index 00000000..f61480a2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" new file mode 100644 index 00000000..1513b0bd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" new file mode 100644 index 00000000..d7a52ea0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" new file mode 100644 index 00000000..30a86c07 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" new file mode 100644 index 00000000..760d40fa --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" new file mode 100644 index 00000000..c0807b5d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" new file mode 100644 index 00000000..c953523e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" new file mode 100644 index 00000000..458488e0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" new file mode 100644 index 00000000..5c538e3d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" new file mode 100644 index 00000000..dc8aa233 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" new file mode 100644 index 00000000..3392fe18 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" new file mode 100644 index 00000000..21fa88ee --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" new file mode 100644 index 00000000..5236c6b7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" new file mode 100644 index 00000000..35ef93cd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" new file mode 100644 index 00000000..f43dea95 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" new file mode 100644 index 00000000..fbf84dfa --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" new file mode 100644 index 00000000..38ec96a0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" new file mode 100644 index 00000000..eacce737 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, todo_id + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" new file mode 100644 index 00000000..36fba31c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" new file mode 100644 index 00000000..a8fbf84d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" new file mode 100644 index 00000000..01a62dbb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" new file mode 100644 index 00000000..d8c1d1f6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" new file mode 100644 index 00000000..53c62c6c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" new file mode 100644 index 00000000..4a25e381 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" new file mode 100644 index 00000000..7766e7c0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" new file mode 100644 index 00000000..3d8d6998 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" new file mode 100644 index 00000000..750c80a4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" new file mode 100644 index 00000000..cdcea02d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" new file mode 100644 index 00000000..eac8eddc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" new file mode 100644 index 00000000..8c76b775 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" new file mode 100644 index 00000000..a44766d3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" new file mode 100644 index 00000000..baa161cf --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, receive_person, status + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" new file mode 100644 index 00000000..66be8bd9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" new file mode 100644 index 00000000..c4fe8b9b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" new file mode 100644 index 00000000..9956d03c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" new file mode 100644 index 00000000..378ae930 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" new file mode 100644 index 00000000..592f2f5e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" new file mode 100644 index 00000000..dc567184 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" new file mode 100644 index 00000000..fe8dc6f8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" new file mode 100644 index 00000000..ef31ed22 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" new file mode 100644 index 00000000..88fe58d7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" new file mode 100644 index 00000000..e56d1170 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" new file mode 100644 index 00000000..dca74c9e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" new file mode 100644 index 00000000..53f67262 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" new file mode 100644 index 00000000..8a2e2c50 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" new file mode 100644 index 00000000..2066fc38 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" new file mode 100644 index 00000000..829761c5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" new file mode 100644 index 00000000..76b4cc68 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" new file mode 100644 index 00000000..c42a30f0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" new file mode 100644 index 00000000..b6197ea0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" new file mode 100644 index 00000000..029b7a28 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" new file mode 100644 index 00000000..1bee0591 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" new file mode 100644 index 00000000..40be953a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" new file mode 100644 index 00000000..161d6c48 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" new file mode 100644 index 00000000..2b00fd46 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" new file mode 100644 index 00000000..e27d5181 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" new file mode 100644 index 00000000..aa7fe8dd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" new file mode 100644 index 00000000..f57ab44b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" new file mode 100644 index 00000000..77f9a37c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" new file mode 100644 index 00000000..160b35af --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + role_id, model_id + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" new file mode 100644 index 00000000..d40db931 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" new file mode 100644 index 00000000..a862b66c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" new file mode 100644 index 00000000..b2595e2c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" new file mode 100644 index 00000000..20e131e1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" new file mode 100644 index 00000000..7d234a29 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" new file mode 100644 index 00000000..71994c36 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" new file mode 100644 index 00000000..b2796ad4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" new file mode 100644 index 00000000..53b841f1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, name, days + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" new file mode 100644 index 00000000..f7182607 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" new file mode 100644 index 00000000..ee5d0d60 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" new file mode 100644 index 00000000..be89dacb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" new file mode 100644 index 00000000..9d79e6df --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" new file mode 100644 index 00000000..f7839dbe --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" new file mode 100644 index 00000000..51e5975d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" new file mode 100644 index 00000000..70956c0b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" new file mode 100644 index 00000000..eb22c5a6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" new file mode 100644 index 00000000..bdcce86b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" new file mode 100644 index 00000000..e6d8657d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, dept_id + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" new file mode 100644 index 00000000..7842c31a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" new file mode 100644 index 00000000..ffa8728d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" new file mode 100644 index 00000000..36794b99 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" new file mode 100644 index 00000000..dfaa7780 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" new file mode 100644 index 00000000..0f1103fc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" new file mode 100644 index 00000000..6eae3b8f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, role_id + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" new file mode 100644 index 00000000..000795b2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" new file mode 100644 index 00000000..dd40ea54 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, company_id + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" new file mode 100644 index 00000000..6f5da938 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" new file mode 100644 index 00000000..d9f412b6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" new file mode 100644 index 00000000..4c2668e9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" new file mode 100644 index 00000000..b671e2c6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" new file mode 100644 index 00000000..3eade778 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" new file mode 100644 index 00000000..b2144d43 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" new file mode 100644 index 00000000..917dfdf1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" new file mode 100644 index 00000000..8cccbf63 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" new file mode 100644 index 00000000..382495ba --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" new file mode 100644 index 00000000..22c9630e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" new file mode 100644 index 00000000..d180ed91 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" new file mode 100644 index 00000000..0a800a7b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" new file mode 100644 index 00000000..492be76d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" new file mode 100644 index 00000000..4f14698d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" new file mode 100644 index 00000000..bf1a8d28 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" new file mode 100644 index 00000000..95452789 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" new file mode 100644 index 00000000..a8c50a3f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" new file mode 100644 index 00000000..e976b0d3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" new file mode 100644 index 00000000..1e37116b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" new file mode 100644 index 00000000..39f79d5c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" new file mode 100644 index 00000000..841388dd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" new file mode 100644 index 00000000..8501fd02 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" new file mode 100644 index 00000000..227fd4b1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" new file mode 100644 index 00000000..46fe0eb2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" new file mode 100644 index 00000000..e23a1dfd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" new file mode 100644 index 00000000..84dac630 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" new file mode 100644 index 00000000..ad6991e2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" new file mode 100644 index 00000000..d7ad9898 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" new file mode 100644 index 00000000..b1b893c4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" new file mode 100644 index 00000000..6b519077 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" new file mode 100644 index 00000000..e1d7502b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" new file mode 100644 index 00000000..90027bfe --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" new file mode 100644 index 00000000..ab154d1d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" new file mode 100644 index 00000000..39320f02 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" new file mode 100644 index 00000000..4d47cf6b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" new file mode 100644 index 00000000..053e4f19 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" new file mode 100644 index 00000000..0071481d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" new file mode 100644 index 00000000..f937d489 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" new file mode 100644 index 00000000..7c9db4c5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" new file mode 100644 index 00000000..bc0adf13 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" new file mode 100644 index 00000000..1482ae44 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" new file mode 100644 index 00000000..f9c3c1e5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" new file mode 100644 index 00000000..bdc693ae --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" new file mode 100644 index 00000000..7675256f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" new file mode 100644 index 00000000..0bbfe2d0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" new file mode 100644 index 00000000..0c874a9d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" new file mode 100644 index 00000000..d0308f03 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" new file mode 100644 index 00000000..41a5b27e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" new file mode 100644 index 00000000..d041a8b7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" new file mode 100644 index 00000000..a4d7a8d1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" new file mode 100644 index 00000000..54f7c872 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" new file mode 100644 index 00000000..143f3fb9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" new file mode 100644 index 00000000..10ae7e06 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" new file mode 100644 index 00000000..9b46c4c4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" new file mode 100644 index 00000000..cb97cd7f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" new file mode 100644 index 00000000..1ef75962 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" new file mode 100644 index 00000000..600459f2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" new file mode 100644 index 00000000..8f15878b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" new file mode 100644 index 00000000..7020bf79 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" new file mode 100644 index 00000000..f35e7dd6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" new file mode 100644 index 00000000..0b0f0d41 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" new file mode 100644 index 00000000..b6af8384 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" new file mode 100644 index 00000000..17e62a80 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" new file mode 100644 index 00000000..c6924615 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" new file mode 100644 index 00000000..91d8c55d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" new file mode 100644 index 00000000..a7e822e7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" new file mode 100644 index 00000000..3b18e868 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" new file mode 100644 index 00000000..75422fe4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" new file mode 100644 index 00000000..54eb80d5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" new file mode 100644 index 00000000..1e48b3aa --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" new file mode 100644 index 00000000..8c80c030 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" new file mode 100644 index 00000000..b1d4888c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" new file mode 100644 index 00000000..46d9fab5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" new file mode 100644 index 00000000..a14a5e14 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" new file mode 100644 index 00000000..825f5e8d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" new file mode 100644 index 00000000..95e41b69 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" new file mode 100644 index 00000000..0d4bc17f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" new file mode 100644 index 00000000..8a8b5629 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" new file mode 100644 index 00000000..8c1dfdc7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" new file mode 100644 index 00000000..cf05f682 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" new file mode 100644 index 00000000..cedd97b6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" new file mode 100644 index 00000000..aa8112ff --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" new file mode 100644 index 00000000..478dd8ba --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" new file mode 100644 index 00000000..11270014 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" new file mode 100644 index 00000000..e31decca --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" new file mode 100644 index 00000000..815b3fcc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" new file mode 100644 index 00000000..c60cb46c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" new file mode 100644 index 00000000..3c62c16e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" new file mode 100644 index 00000000..3e6d01de --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" new file mode 100644 index 00000000..5639f342 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" new file mode 100644 index 00000000..f5719bb3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" new file mode 100644 index 00000000..8964260f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" new file mode 100644 index 00000000..7d8b163f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" new file mode 100644 index 00000000..21d2d998 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" new file mode 100644 index 00000000..fd3274b9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" new file mode 100644 index 00000000..8099f652 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" new file mode 100644 index 00000000..3ca600a9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" new file mode 100644 index 00000000..d9b094ed --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" new file mode 100644 index 00000000..b9e0b5c9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" new file mode 100644 index 00000000..bdaca0c1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" new file mode 100644 index 00000000..8be4efbb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" new file mode 100644 index 00000000..43bf0708 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" new file mode 100644 index 00000000..a657f2b3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" new file mode 100644 index 00000000..58ea57b6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" new file mode 100644 index 00000000..ad812b47 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" new file mode 100644 index 00000000..f5bb4acb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" new file mode 100644 index 00000000..ffb0e92b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" new file mode 100644 index 00000000..3bc55605 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" new file mode 100644 index 00000000..473ac749 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" new file mode 100644 index 00000000..6ddbe86d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" new file mode 100644 index 00000000..0f7af99b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" new file mode 100644 index 00000000..afb892bb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" new file mode 100644 index 00000000..5743d6fd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" new file mode 100644 index 00000000..2b3a0c9c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" new file mode 100644 index 00000000..27f0027b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" new file mode 100644 index 00000000..350520e6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" new file mode 100644 index 00000000..face874f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" new file mode 100644 index 00000000..31df2ef7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" new file mode 100644 index 00000000..f2bddf67 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" new file mode 100644 index 00000000..e650c63c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" new file mode 100644 index 00000000..6932d3a6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" new file mode 100644 index 00000000..af18e667 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" new file mode 100644 index 00000000..fee9fb8e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" new file mode 100644 index 00000000..e0291c07 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" new file mode 100644 index 00000000..b4ffcbf1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" new file mode 100644 index 00000000..af5fc9a7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" new file mode 100644 index 00000000..4c87b491 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" new file mode 100644 index 00000000..09e7c566 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" new file mode 100644 index 00000000..813331ad --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" new file mode 100644 index 00000000..fbb1d425 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" new file mode 100644 index 00000000..c484aa0e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" new file mode 100644 index 00000000..e7b5f0f7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" new file mode 100644 index 00000000..faf18ebc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" new file mode 100644 index 00000000..c72ead08 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" new file mode 100644 index 00000000..0615c146 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" @@ -0,0 +1,48 @@ +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 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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" new file mode 100644 index 00000000..d62a2b7c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" new file mode 100644 index 00000000..3d920a74 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" @@ -0,0 +1,20 @@ +package com.mashibing.service; + +import com.mashibing.bean.TblCompany; +import com.mashibing.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; + + public List selectCompany(){ + List companys = tblCompanyMapper.selectCompany(); + return companys; + } +} diff --git "a/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/LoginService.java" new file mode 100644 index 00000000..93796b62 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcBuildingService.java" new file mode 100644 index 00000000..5fb2eb8a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" new file mode 100644 index 00000000..8a97b3fe --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" new file mode 100644 index 00000000..db98316c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" new file mode 100644 index 00000000..8fdc7dbb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" new file mode 100644 index 00000000..5298dad4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" new file mode 100644 index 00000000..3cfb2e15 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" new file mode 100644 index 00000000..9bf21503 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" new file mode 100644 index 00000000..9a610bab --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" new file mode 100644 index 00000000..6294bb5e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" new file mode 100644 index 00000000..b86eab84 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" new file mode 100644 index 00000000..ae60cf2a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" new file mode 100644 index 00000000..551c6879 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" new file mode 100644 index 00000000..fe777a32 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" new file mode 100644 index 00000000..e5cbc763 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" new file mode 100644 index 00000000..ca6f263a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" new file mode 100644 index 00000000..4f8123cf --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" new file mode 100644 index 00000000..885ee84a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" new file mode 100644 index 00000000..7ad0c71e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" new file mode 100644 index 00000000..ad2f6da5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" new file mode 100644 index 00000000..14a73ac9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" new file mode 100644 index 00000000..30a0c03b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" new file mode 100644 index 00000000..7c4ab043 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" new file mode 100644 index 00000000..f1de4911 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" new file mode 100644 index 00000000..b6e94746 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" new file mode 100644 index 00000000..83b9fdd4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" new file mode 100644 index 00000000..dd3d0f4f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" new file mode 100644 index 00000000..a4bd4b0e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" new file mode 100644 index 00000000..4146ee47 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" new file mode 100644 index 00000000..45f35a42 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" new file mode 100644 index 00000000..1b44c37b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" new file mode 100644 index 00000000..809b2ab7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" new file mode 100644 index 00000000..b2169aa2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" new file mode 100644 index 00000000..eb9c29d1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" new file mode 100644 index 00000000..9740de17 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" new file mode 100644 index 00000000..9ede23e9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" new file mode 100644 index 00000000..378531ca --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" new file mode 100644 index 00000000..d1ad6791 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" new file mode 100644 index 00000000..f0eb1243 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" new file mode 100644 index 00000000..d7112a35 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" new file mode 100644 index 00000000..728915dc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" new file mode 100644 index 00000000..ea03d266 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" new file mode 100644 index 00000000..ffce1b03 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" new file mode 100644 index 00000000..9cc75e06 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" new file mode 100644 index 00000000..25715533 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" new file mode 100644 index 00000000..289f482b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" new file mode 100644 index 00000000..2f78cc6c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" new file mode 100644 index 00000000..6dc1337d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" new file mode 100644 index 00000000..464ff62b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" new file mode 100644 index 00000000..60667f48 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" new file mode 100644 index 00000000..f17ac742 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" new file mode 100644 index 00000000..fc9edd16 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" new file mode 100644 index 00000000..9a189a74 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" new file mode 100644 index 00000000..d02f33d9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" new file mode 100644 index 00000000..13bfede9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" new file mode 100644 index 00000000..12ebd96b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" new file mode 100644 index 00000000..69fc1bd6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" new file mode 100644 index 00000000..4e0969ba --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" new file mode 100644 index 00000000..d2ef2b44 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" new file mode 100644 index 00000000..1487019c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" new file mode 100644 index 00000000..e9c84428 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" new file mode 100644 index 00000000..dfe86cba --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" new file mode 100644 index 00000000..b5457417 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" new file mode 100644 index 00000000..a7e6b254 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" new file mode 100644 index 00000000..a82b22a3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" new file mode 100644 index 00000000..0ffa2dd5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" new file mode 100644 index 00000000..1feb9bc4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" new file mode 100644 index 00000000..824d0525 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" new file mode 100644 index 00000000..4c12aabc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" new file mode 100644 index 00000000..7b9069a2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" new file mode 100644 index 00000000..4d903001 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" new file mode 100644 index 00000000..1c4387d7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" new file mode 100644 index 00000000..b119cdee --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" new file mode 100644 index 00000000..06c98288 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" new file mode 100644 index 00000000..3941af10 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" new file mode 100644 index 00000000..26518d8a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" new file mode 100644 index 00000000..9257a0f0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" new file mode 100644 index 00000000..fcebe802 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" new file mode 100644 index 00000000..0b4d1b58 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" new file mode 100644 index 00000000..5d11c5cb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" new file mode 100644 index 00000000..2cc94cba --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" new file mode 100644 index 00000000..26d96d7c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" new file mode 100644 index 00000000..8cb5d807 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" new file mode 100644 index 00000000..c1cf8468 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" new file mode 100644 index 00000000..2f8ce61f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" new file mode 100644 index 00000000..17bb962b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" new file mode 100644 index 00000000..80283723 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" new file mode 100644 index 00000000..ae4fd8da --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" new file mode 100644 index 00000000..23dbc6b6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" new file mode 100644 index 00000000..fcc1232a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" new file mode 100644 index 00000000..a1297cc7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" new file mode 100644 index 00000000..ac257ef1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" new file mode 100644 index 00000000..d6baf168 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" new file mode 100644 index 00000000..4bb2602b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" new file mode 100644 index 00000000..f20be5fb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" new file mode 100644 index 00000000..763d391d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" new file mode 100644 index 00000000..8d98d78e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" new file mode 100644 index 00000000..55935a0f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" new file mode 100644 index 00000000..393582c9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" new file mode 100644 index 00000000..c38dbfa7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" new file mode 100644 index 00000000..4bcc6bae --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" new file mode 100644 index 00000000..d8b33d84 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" new file mode 100644 index 00000000..bd039f3e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" new file mode 100644 index 00000000..94625090 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" new file mode 100644 index 00000000..3354c215 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" new file mode 100644 index 00000000..d49af48f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" new file mode 100644 index 00000000..0ce04b3a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" new file mode 100644 index 00000000..09904864 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" new file mode 100644 index 00000000..4aeb2341 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" new file mode 100644 index 00000000..b2f6102e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" new file mode 100644 index 00000000..e4deb3b7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" new file mode 100644 index 00000000..8e88e8cc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" new file mode 100644 index 00000000..34ff4bbf --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" new file mode 100644 index 00000000..cb9bbe1d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" new file mode 100644 index 00000000..b83d423f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" new file mode 100644 index 00000000..945ed42c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" new file mode 100644 index 00000000..2929a149 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" new file mode 100644 index 00000000..d9df2cbc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" new file mode 100644 index 00000000..51aaf56a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" new file mode 100644 index 00000000..72e45927 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" new file mode 100644 index 00000000..85ff1592 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" new file mode 100644 index 00000000..68d12a5e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" new file mode 100644 index 00000000..d08e64c9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" new file mode 100644 index 00000000..666bf01b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" new file mode 100644 index 00000000..6eff60f2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" new file mode 100644 index 00000000..0ab9e557 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" new file mode 100644 index 00000000..e0ebbde7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" new file mode 100644 index 00000000..4968eb5a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" new file mode 100644 index 00000000..f1ede50a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" new file mode 100644 index 00000000..352bf9fb --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" new file mode 100644 index 00000000..f651bd00 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" new file mode 100644 index 00000000..d703f7e2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" new file mode 100644 index 00000000..d73d71c3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" new file mode 100644 index 00000000..92e11f93 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" new file mode 100644 index 00000000..2ccdac25 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" new file mode 100644 index 00000000..b9878a4c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" new file mode 100644 index 00000000..129d35c5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" new file mode 100644 index 00000000..798311e6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" new file mode 100644 index 00000000..e79fafd3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" new file mode 100644 index 00000000..d61d662b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" new file mode 100644 index 00000000..7c27e7fc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" new file mode 100644 index 00000000..a8c2da8f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" new file mode 100644 index 00000000..2c6ef840 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" new file mode 100644 index 00000000..e10ba81d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" new file mode 100644 index 00000000..7eaa504d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" new file mode 100644 index 00000000..eab2bbb0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" new file mode 100644 index 00000000..f408676a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" new file mode 100644 index 00000000..5246bdf3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" new file mode 100644 index 00000000..0fd4696d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" new file mode 100644 index 00000000..f1328ce7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" new file mode 100644 index 00000000..85b51419 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" new file mode 100644 index 00000000..2f7ab162 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" new file mode 100644 index 00000000..1c34335e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" new file mode 100644 index 00000000..44905dd3 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" new file mode 100644 index 00000000..c605c357 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" new file mode 100644 index 00000000..5d48e205 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" new file mode 100644 index 00000000..a08daee9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" new file mode 100644 index 00000000..abfcb014 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" new file mode 100644 index 00000000..bc5c83d6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" new file mode 100644 index 00000000..1b6d4f88 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" new file mode 100644 index 00000000..24f5045b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" new file mode 100644 index 00000000..89fec2be --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" new file mode 100644 index 00000000..95406a39 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" new file mode 100644 index 00000000..4a599f30 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" new file mode 100644 index 00000000..f8d17eba --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" new file mode 100644 index 00000000..e0883e05 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" new file mode 100644 index 00000000..63571b83 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" new file mode 100644 index 00000000..f935c5fc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" new file mode 100644 index 00000000..c6f1dd61 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" new file mode 100644 index 00000000..297efa16 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" new file mode 100644 index 00000000..8ecae9d7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" new file mode 100644 index 00000000..bf27846b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" new file mode 100644 index 00000000..9985660e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" new file mode 100644 index 00000000..3696d95f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" new file mode 100644 index 00000000..84b624e4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" new file mode 100644 index 00000000..439491a8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" new file mode 100644 index 00000000..e1817d3c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" new file mode 100644 index 00000000..d9164085 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" new file mode 100644 index 00000000..fe3269bc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" new file mode 100644 index 00000000..9eaa707e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" new file mode 100644 index 00000000..c8fd799e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..dca9ee28 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" new file mode 100644 index 00000000..38bb88aa --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" new file mode 100644 index 00000000..5cba602f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..3ac683ef --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" new file mode 100644 index 00000000..bf92b465 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" new file mode 100644 index 00000000..8e9dd99c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" new file mode 100644 index 00000000..de0ec987 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" new file mode 100644 index 00000000..74cafef4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" new file mode 100644 index 00000000..3e4332b1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" new file mode 100644 index 00000000..8d423f11 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" new file mode 100644 index 00000000..3af54d5c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" new file mode 100644 index 00000000..c033c55f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" new file mode 100644 index 00000000..6eeb1464 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" new file mode 100644 index 00000000..330ee801 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" new file mode 100644 index 00000000..1020286f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" new file mode 100644 index 00000000..11dfe067 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" new file mode 100644 index 00000000..3a119cb6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" new file mode 100644 index 00000000..2b8e2874 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" new file mode 100644 index 00000000..f4dba8d1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" new file mode 100644 index 00000000..f34a1f05 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" new file mode 100644 index 00000000..fb270d9a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" new file mode 100644 index 00000000..e6ea079c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" new file mode 100644 index 00000000..2ff25f23 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" new file mode 100644 index 00000000..34f6cc0d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" new file mode 100644 index 00000000..d11442b9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" new file mode 100644 index 00000000..5aaedc3b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..c984cb92 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" new file mode 100644 index 00000000..54f554c1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" new file mode 100644 index 00000000..6229c6d7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" new file mode 100644 index 00000000..f2e452bf --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" new file mode 100644 index 00000000..f43345e1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" new file mode 100644 index 00000000..29f647a8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" new file mode 100644 index 00000000..885bd2a5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" new file mode 100644 index 00000000..6409c6bf --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" new file mode 100644 index 00000000..a9d46521 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" new file mode 100644 index 00000000..ae431c15 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" new file mode 100644 index 00000000..1afd48e1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" new file mode 100644 index 00000000..85318f49 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" new file mode 100644 index 00000000..456cdc83 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" new file mode 100644 index 00000000..759ba1a1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" new file mode 100644 index 00000000..1a1e5af6 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" new file mode 100644 index 00000000..d187a008 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" new file mode 100644 index 00000000..b39dae32 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" new file mode 100644 index 00000000..19aa1062 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" new file mode 100644 index 00000000..76a739ac --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" new file mode 100644 index 00000000..f20819cd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" new file mode 100644 index 00000000..7a213a24 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" new file mode 100644 index 00000000..1ddead49 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" new file mode 100644 index 00000000..89eb91ac --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" new file mode 100644 index 00000000..a806863a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" new file mode 100644 index 00000000..cd80ed83 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" new file mode 100644 index 00000000..4f5c4d15 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" new file mode 100644 index 00000000..b9a4d409 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" new file mode 100644 index 00000000..fe5263b4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" new file mode 100644 index 00000000..15540c2c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" new file mode 100644 index 00000000..7d9d0145 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" new file mode 100644 index 00000000..47254b05 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" new file mode 100644 index 00000000..b78ba2c7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" new file mode 100644 index 00000000..67bc31aa --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" new file mode 100644 index 00000000..9c956a30 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" new file mode 100644 index 00000000..be8a0312 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" new file mode 100644 index 00000000..32c5264b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" new file mode 100644 index 00000000..c4f9fa0f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" new file mode 100644 index 00000000..623237c4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" new file mode 100644 index 00000000..32353953 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" new file mode 100644 index 00000000..37e9f66a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" new file mode 100644 index 00000000..afadd36b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" new file mode 100644 index 00000000..2fdecca4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" new file mode 100644 index 00000000..bd74298d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" new file mode 100644 index 00000000..5a1cf927 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" new file mode 100644 index 00000000..8add15c1 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" new file mode 100644 index 00000000..213f9834 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" new file mode 100644 index 00000000..c9d63b30 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" new file mode 100644 index 00000000..06d23d10 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..0825b0c4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" new file mode 100644 index 00000000..6ee34414 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" new file mode 100644 index 00000000..b8d84fac --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" new file mode 100644 index 00000000..d191d012 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" new file mode 100644 index 00000000..f5e1ac1d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" new file mode 100644 index 00000000..c95705b8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" new file mode 100644 index 00000000..7bde96df --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" new file mode 100644 index 00000000..c130b14c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" new file mode 100644 index 00000000..511baf3d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" new file mode 100644 index 00000000..4b1be59e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" new file mode 100644 index 00000000..45ed0547 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" new file mode 100644 index 00000000..25ac5891 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..ff281e70 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..d209585c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..2d4df8bf --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" new file mode 100644 index 00000000..39742aff --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" new file mode 100644 index 00000000..afa57579 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" new file mode 100644 index 00000000..90d5fdc2 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" new file mode 100644 index 00000000..8bf31cb4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" new file mode 100644 index 00000000..aef32264 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" new file mode 100644 index 00000000..11da05bf --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" new file mode 100644 index 00000000..ccdf6385 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" new file mode 100644 index 00000000..c4c7b6c9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" new file mode 100644 index 00000000..238747a8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" new file mode 100644 index 00000000..803a81a7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" new file mode 100644 index 00000000..718d6748 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..34c101cc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..b1a467a8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" new file mode 100644 index 00000000..43e1c77f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" new file mode 100644 index 00000000..b12c0ccc --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" new file mode 100644 index 00000000..031caa22 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" new file mode 100644 index 00000000..2c1f2ad5 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" new file mode 100644 index 00000000..3d8c6bab --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" new file mode 100644 index 00000000..0c10e602 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..80d9ca7c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" new file mode 100644 index 00000000..56d9d151 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" new file mode 100644 index 00000000..95851072 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" new file mode 100644 index 00000000..6aba3269 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" new file mode 100644 index 00000000..88a0f21e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" new file mode 100644 index 00000000..4ef7629b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" new file mode 100644 index 00000000..30380d8e --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" new file mode 100644 index 00000000..da5757ce --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" new file mode 100644 index 00000000..1ed4116f --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" new file mode 100644 index 00000000..867cba4a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" new file mode 100644 index 00000000..df714ba0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" new file mode 100644 index 00000000..75386e6a --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" new file mode 100644 index 00000000..f3f2abca --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" new file mode 100644 index 00000000..c414b8a8 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" new file mode 100644 index 00000000..f79257b4 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" new file mode 100644 index 00000000..16395bcd --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" new file mode 100644 index 00000000..109c871b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" new file mode 100644 index 00000000..def513b7 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" new file mode 100644 index 00000000..45c0da98 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" new file mode 100644 index 00000000..2fdfbd4d --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" new file mode 100644 index 00000000..a93da188 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" new file mode 100644 index 00000000..267f891b --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" new file mode 100644 index 00000000..39bdc8ef --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" new file mode 100644 index 00000000..d370c7df --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" new file mode 100644 index 00000000..2cd6279c --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" new file mode 100644 index 00000000..cdd56946 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/resources/application.yaml" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/main/resources/application.yaml" new file mode 100644 index 00000000..fbf86b78 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" new file mode 100644 index 00000000..22c5e9e9 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" new file mode 100644 index 00000000..f8a635a0 --- /dev/null +++ "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/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/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/webproject.zip" "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/webproject.zip" new file mode 100644 index 00000000..08d24fa2 Binary files /dev/null and "b/project/03\351\241\271\347\233\256\347\231\273\345\275\225\345\212\237\350\203\275\345\256\214\345\226\204/webproject.zip" differ diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/03 \346\245\274\347\233\230\347\256\241\347\220\206.md" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/03 \346\245\274\347\233\230\347\256\241\347\220\206.md" new file mode 100644 index 00000000..29200213 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/03 \346\245\274\347\233\230\347\256\241\347\220\206.md" @@ -0,0 +1,1861 @@ +# 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 \(.*\)$'` + 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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/mvnw.cmd" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/mvnw.cmd" new file mode 100644 index 00000000..c8d43372 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/pom.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/pom.xml" new file mode 100644 index 00000000..6507335a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/FamilyServicePlatformApplication.java" new file mode 100644 index 00000000..023c9a63 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcBuilding.java" new file mode 100644 index 00000000..1997f89d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcCell.java" new file mode 100644 index 00000000..20cf9fad --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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 Integer 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 Integer getUnitCode() { + return unitCode; + } + + public void setUnitCode(Integer 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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcCellAddbuild.java" new file mode 100644 index 00000000..4f403639 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcEstate.java" new file mode 100644 index 00000000..8b7db416 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FcUnit.java" new file mode 100644 index 00000000..c455aa05 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyEstateTemporary.java" new file mode 100644 index 00000000..d867e860 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyHistoryMoneyTemp.java" new file mode 100644 index 00000000..070de0e0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidMain.java" new file mode 100644 index 00000000..ba6be805 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyInvalidSub.java" new file mode 100644 index 00000000..25b3d52f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneySetting.java" new file mode 100644 index 00000000..3185d6c7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary01.java" new file mode 100644 index 00000000..e3145667 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary02.java" new file mode 100644 index 00000000..248e91c1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary03.java" new file mode 100644 index 00000000..04da5c4d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyMoneyTemporary04.java" new file mode 100644 index 00000000..343ce915 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyPreReceive.java" new file mode 100644 index 00000000..298cd463 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyPropertyMoneyDist.java" new file mode 100644 index 00000000..04d92ce4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBox.java" new file mode 100644 index 00000000..d684549f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyPublicBoxUser.java" new file mode 100644 index 00000000..ac36b7f5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptMain.java" new file mode 100644 index 00000000..1726aaf6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyReceiptSub.java" new file mode 100644 index 00000000..352d3143 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyRefundMain.java" new file mode 100644 index 00000000..dd320bda --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyRefundSub.java" new file mode 100644 index 00000000..d08a6e4c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FySaleContract.java" new file mode 100644 index 00000000..1f173ca4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBook.java" new file mode 100644 index 00000000..5121055b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyShareStandingBookDetail.java" new file mode 100644 index 00000000..196a3672 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyShareUserDetail.java" new file mode 100644 index 00000000..29b44da3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBook.java" new file mode 100644 index 00000000..c23dfc0a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyStandingBookDetail.java" new file mode 100644 index 00000000..e74226d7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/FyTemporaryMoneySetting.java" new file mode 100644 index 00000000..4451f4b6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblAdviceBox.java" new file mode 100644 index 00000000..e1cc2fff --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblAnswerData.java" new file mode 100644 index 00000000..fbdd9156 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblArgRecord.java" new file mode 100644 index 00000000..5bf6f9d7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblAttupload.java" new file mode 100644 index 00000000..eaeb744b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblColor.java" new file mode 100644 index 00000000..05d8de78 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCommonLanguage.java" new file mode 100644 index 00000000..b7164ecd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCommonMessage.java" new file mode 100644 index 00000000..e4d1eed9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCompany.java" new file mode 100644 index 00000000..7cf5a810 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCompanyRecord.java" new file mode 100644 index 00000000..f8c86ab3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblComparyNotice.java" new file mode 100644 index 00000000..b1fb8c64 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblCustomType.java" new file mode 100644 index 00000000..de4723c0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDashboard.java" new file mode 100644 index 00000000..91778b33 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDate.java" new file mode 100644 index 00000000..0bb821f5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDbSetting.java" new file mode 100644 index 00000000..d9d0ad54 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDbbackup.java" new file mode 100644 index 00000000..8211db58 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDbrecovery.java" new file mode 100644 index 00000000..8a718586 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDbsource.java" new file mode 100644 index 00000000..66c98ba8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDept.java" new file mode 100644 index 00000000..e2c6bc93 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDeptkey.java" new file mode 100644 index 00000000..0e500733 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblDesktop.java" new file mode 100644 index 00000000..0ee46f0e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEmailReceive.java" new file mode 100644 index 00000000..94b6efe5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEmailSend.java" new file mode 100644 index 00000000..58761c5f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContact.java" new file mode 100644 index 00000000..c07df708 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEmployeeContactCategory.java" new file mode 100644 index 00000000..677f2aba --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblEnvirSetting.java" new file mode 100644 index 00000000..c875af6b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblFunctionModel.java" new file mode 100644 index 00000000..e305987c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblGroupRecord.java" new file mode 100644 index 00000000..23224d89 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsTodo.java" new file mode 100644 index 00000000..40531a0d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblGroupsUser.java" new file mode 100644 index 00000000..20512431 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblLoginLog.java" new file mode 100644 index 00000000..c2c00d40 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMainMenu.java" new file mode 100644 index 00000000..25db7f66 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMessageCharge.java" new file mode 100644 index 00000000..fa25b4c3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMessageReceive.java" new file mode 100644 index 00000000..1a49e4e4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMessageSend.java" new file mode 100644 index 00000000..151eb2b6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMsgReceive.java" new file mode 100644 index 00000000..e388361f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMyNote.java" new file mode 100644 index 00000000..5444a844 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMyadvice.java" new file mode 100644 index 00000000..16849628 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMydash.java" new file mode 100644 index 00000000..b1696b20 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMydesk.java" new file mode 100644 index 00000000..dc446f8b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMyplan.java" new file mode 100644 index 00000000..a260a4eb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblMyset.java" new file mode 100644 index 00000000..458b823f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskDir.java" new file mode 100644 index 00000000..a95c03cc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblNetdiskUrl.java" new file mode 100644 index 00000000..97932db2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblPositionRecord.java" new file mode 100644 index 00000000..e96f7a75 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblPrintPaper.java" new file mode 100644 index 00000000..820ad3d1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblPrintParam.java" new file mode 100644 index 00000000..c08cfdbc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblQuick.java" new file mode 100644 index 00000000..8c9c0f65 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblRole.java" new file mode 100644 index 00000000..85154b9a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblRoleMenuPrivi.java" new file mode 100644 index 00000000..149454d1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblRule.java" new file mode 100644 index 00000000..b3d38343 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblSendLog.java" new file mode 100644 index 00000000..3f42d89e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblShortcutIcon.java" new file mode 100644 index 00000000..d7df3ba7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblStopDate.java" new file mode 100644 index 00000000..1164245c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblSysDiagrams.java" new file mode 100644 index 00000000..fe86f78e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblSystemLog.java" new file mode 100644 index 00000000..85674420 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblTodo.java" new file mode 100644 index 00000000..0cdc45d0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblType.java" new file mode 100644 index 00000000..589ee04a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserDept.java" new file mode 100644 index 00000000..0c5b3d4b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserGroup.java" new file mode 100644 index 00000000..b3ab8b8f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserRecord.java" new file mode 100644 index 00000000..60eb7902 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserRole.java" new file mode 100644 index 00000000..d20516b2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblUserSubCompany.java" new file mode 100644 index 00000000..2728b2e4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVod.java" new file mode 100644 index 00000000..4b6632c0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVoteData.java" new file mode 100644 index 00000000..f483e2b9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVoteDetail.java" new file mode 100644 index 00000000..d9e2f382 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVoteProject1.java" new file mode 100644 index 00000000..8217a55d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblVoteSubject.java" new file mode 100644 index 00000000..575b2534 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/TblWorkDate.java" new file mode 100644 index 00000000..f2224f62 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyAskMsgRemindLog.java" new file mode 100644 index 00000000..aa323c34 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCarManage.java" new file mode 100644 index 00000000..105fc9f3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceManage.java" new file mode 100644 index 00000000..7cf11524 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRent.java" new file mode 100644 index 00000000..214b45ea --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCarSpaceRentDetail.java" new file mode 100644 index 00000000..1cfc6ba6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCleanCheck.java" new file mode 100644 index 00000000..1c8cc5a9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCleanPlan.java" new file mode 100644 index 00000000..d92431f5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCleanRecord.java" new file mode 100644 index 00000000..02a7bdd9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMembers.java" new file mode 100644 index 00000000..cb5aba1b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCommitteeMetting.java" new file mode 100644 index 00000000..94645af6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyCommunityEvent.java" new file mode 100644 index 00000000..14fa37a0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyDutyManage.java" new file mode 100644 index 00000000..743e7122 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEmailReceive.java" new file mode 100644 index 00000000..19cfc815 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeDetail.java" new file mode 100644 index 00000000..18c49646 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateIncomeProject.java" new file mode 100644 index 00000000..0515f701 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateMoney.java" new file mode 100644 index 00000000..838774a2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetail.java" new file mode 100644 index 00000000..56b7b9c9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutDetailSub.java" new file mode 100644 index 00000000..aba21711 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyEstateOutProject.java" new file mode 100644 index 00000000..48f3ef70 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyFireAccident.java" new file mode 100644 index 00000000..a2acbb7e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyFireCheck.java" new file mode 100644 index 00000000..20631bb2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyFireExercise.java" new file mode 100644 index 00000000..268122ca --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyFireFacility.java" new file mode 100644 index 00000000..b968dc6e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyGoodsInout.java" new file mode 100644 index 00000000..214d9bcd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyGreenCheck.java" new file mode 100644 index 00000000..59fe6c78 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyGreenSetting.java" new file mode 100644 index 00000000..5ccc4819 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeDetail.java" new file mode 100644 index 00000000..ec64a91b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyIncomeProject.java" new file mode 100644 index 00000000..728cc49c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyNoteManage.java" new file mode 100644 index 00000000..07ba03a2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyOutDetail.java" new file mode 100644 index 00000000..4d95ad3e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyOutProject.java" new file mode 100644 index 00000000..51205e58 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyPictureManage.java" new file mode 100644 index 00000000..85d84f0d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverDetail.java" new file mode 100644 index 00000000..1b4ec4eb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyPropertyTakeoverSchema.java" new file mode 100644 index 00000000..9314a2ab --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyRenewMsgRemindLog.java" new file mode 100644 index 00000000..5be1f110 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WySecurityArrange.java" new file mode 100644 index 00000000..537f8f96 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyServiceCashierGroup.java" new file mode 100644 index 00000000..fcc65100 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyTakeoverDataDetail.java" new file mode 100644 index 00000000..d35d6215 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyVegetationInformation.java" new file mode 100644 index 00000000..c17a838e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/WyVisitManage.java" new file mode 100644 index 00000000..14ddcd88 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhConstomerDecorate.java" new file mode 100644 index 00000000..b737e8d5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhConsumerComplain.java" new file mode 100644 index 00000000..41d71f84 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleResult.java" new file mode 100644 index 00000000..335ee659 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCsHandleSpeed.java" new file mode 100644 index 00000000..1e2facea --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomer.java" new file mode 100644 index 00000000..ae9f7824 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerAskFix.java" new file mode 100644 index 00000000..a668aa55 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerCheck.java" new file mode 100644 index 00000000..536ad65c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerEstate.java" new file mode 100644 index 00000000..f81e09c1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerMembers.java" new file mode 100644 index 00000000..c012b4d8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerService.java" new file mode 100644 index 00000000..dcee5410 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhCustomerServiceType.java" new file mode 100644 index 00000000..2e4edece --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContract.java" new file mode 100644 index 00000000..e321a5ba --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractCell.java" new file mode 100644 index 00000000..0f6e93ea --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractChange.java" new file mode 100644 index 00000000..6ea577a9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractRefund.java" new file mode 100644 index 00000000..0c40a62d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentContractReturn.java" new file mode 100644 index 00000000..ac4d1b5b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentInformation.java" new file mode 100644 index 00000000..b236dfba --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentReceive.java" new file mode 100644 index 00000000..bda99caa --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentShare.java" new file mode 100644 index 00000000..7b286205 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/bean/ZhRentTransfer.java" new file mode 100644 index 00000000..8fd6f444 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/config/CorsConfig.java" new file mode 100644 index 00000000..53740d6c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" new file mode 100644 index 00000000..343ae9b8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/EstateController.java" @@ -0,0 +1,68 @@ +package com.mashibing.controller; + +import com.alibaba.fastjson.JSONObject; +import com.mashibing.bean.FcBuilding; +import com.mashibing.bean.FcEstate; +import com.mashibing.bean.TblCompany; +import com.mashibing.returnJson.ReturnObject; +import com.mashibing.service.EstateService; +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.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +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("更新楼宇失败")); + } + } +} diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/LoginController.java" new file mode 100644 index 00000000..e8286669 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcBuildingController.java" new file mode 100644 index 00000000..0257c63b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellAddbuildController.java" new file mode 100644 index 00000000..3474a209 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcCellController.java" new file mode 100644 index 00000000..e1bd86fb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcEstateController.java" new file mode 100644 index 00000000..ff950a38 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FcUnitController.java" new file mode 100644 index 00000000..9cf1b87f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyEstateTemporaryController.java" new file mode 100644 index 00000000..c90b776e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyHistoryMoneyTempController.java" new file mode 100644 index 00000000..1ea544f0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidMainController.java" new file mode 100644 index 00000000..eebe00a1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyInvalidSubController.java" new file mode 100644 index 00000000..665e48e8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneySettingController.java" new file mode 100644 index 00000000..8578c435 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary01Controller.java" new file mode 100644 index 00000000..05d2c9ce --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary02Controller.java" new file mode 100644 index 00000000..b1e2169a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary03Controller.java" new file mode 100644 index 00000000..ba6d8804 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyMoneyTemporary04Controller.java" new file mode 100644 index 00000000..185cb8c5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyPreReceiveController.java" new file mode 100644 index 00000000..a6a0adf5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyPropertyMoneyDistController.java" new file mode 100644 index 00000000..87c4ae14 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxController.java" new file mode 100644 index 00000000..ec8ffd95 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyPublicBoxUserController.java" new file mode 100644 index 00000000..5fe0d9ff --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptMainController.java" new file mode 100644 index 00000000..84f22897 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyReceiptSubController.java" new file mode 100644 index 00000000..8cc2d90f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundMainController.java" new file mode 100644 index 00000000..46d5c9bb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyRefundSubController.java" new file mode 100644 index 00000000..04a9c351 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FySaleContractController.java" new file mode 100644 index 00000000..1ff878d3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookController.java" new file mode 100644 index 00000000..64fcaaec --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareStandingBookDetailController.java" new file mode 100644 index 00000000..ba4ae199 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyShareUserDetailController.java" new file mode 100644 index 00000000..91111eb8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookController.java" new file mode 100644 index 00000000..d3cb9e77 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyStandingBookDetailController.java" new file mode 100644 index 00000000..48ab935c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/FyTemporaryMoneySettingController.java" new file mode 100644 index 00000000..1186c413 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblAdviceBoxController.java" new file mode 100644 index 00000000..17629f4e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblAnswerDataController.java" new file mode 100644 index 00000000..41580609 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblArgRecordController.java" new file mode 100644 index 00000000..dc2ba35a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblAttuploadController.java" new file mode 100644 index 00000000..1397c359 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblColorController.java" new file mode 100644 index 00000000..c88e53df --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonLanguageController.java" new file mode 100644 index 00000000..fc948e86 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCommonMessageController.java" new file mode 100644 index 00000000..e165171f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyController.java" new file mode 100644 index 00000000..72ba9c89 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCompanyRecordController.java" new file mode 100644 index 00000000..bc9ddc5f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblComparyNoticeController.java" new file mode 100644 index 00000000..33a6b6dc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblCustomTypeController.java" new file mode 100644 index 00000000..a8e4fabb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDashboardController.java" new file mode 100644 index 00000000..21f1da57 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDateController.java" new file mode 100644 index 00000000..2801fbe6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbSettingController.java" new file mode 100644 index 00000000..e7e42449 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbbackupController.java" new file mode 100644 index 00000000..51d93488 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbrecoveryController.java" new file mode 100644 index 00000000..5e51b425 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDbsourceController.java" new file mode 100644 index 00000000..4700a7a3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptController.java" new file mode 100644 index 00000000..d6b8cfdf --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDeptkeyController.java" new file mode 100644 index 00000000..653361af --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblDesktopController.java" new file mode 100644 index 00000000..fe0e7870 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailReceiveController.java" new file mode 100644 index 00000000..ae5bb2ff --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmailSendController.java" new file mode 100644 index 00000000..eab422a8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactCategoryController.java" new file mode 100644 index 00000000..b8e8905c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEmployeeContactController.java" new file mode 100644 index 00000000..30b87ac0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblEnvirSettingController.java" new file mode 100644 index 00000000..30159a79 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblFunctionModelController.java" new file mode 100644 index 00000000..731cbafb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupRecordController.java" new file mode 100644 index 00000000..7eecdeb0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsTodoController.java" new file mode 100644 index 00000000..6c8aae76 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblGroupsUserController.java" new file mode 100644 index 00000000..a7e7e723 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblLoginLogController.java" new file mode 100644 index 00000000..8cca6357 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMainMenuController.java" new file mode 100644 index 00000000..855d71c4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageChargeController.java" new file mode 100644 index 00000000..48c19d6e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageReceiveController.java" new file mode 100644 index 00000000..1e8cc48b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMessageSendController.java" new file mode 100644 index 00000000..2d4f1bd5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMsgReceiveController.java" new file mode 100644 index 00000000..4f1490c5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyNoteController.java" new file mode 100644 index 00000000..0ecc2e95 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyadviceController.java" new file mode 100644 index 00000000..6195acdd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydashController.java" new file mode 100644 index 00000000..ae6721ed --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMydeskController.java" new file mode 100644 index 00000000..19a6e568 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMyplanController.java" new file mode 100644 index 00000000..f4e8c5d5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblMysetController.java" new file mode 100644 index 00000000..0e2270f5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskDirController.java" new file mode 100644 index 00000000..171ad93a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblNetdiskUrlController.java" new file mode 100644 index 00000000..91fe91bd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblPositionRecordController.java" new file mode 100644 index 00000000..ba1da783 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintPaperController.java" new file mode 100644 index 00000000..f1b7033c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblPrintParamController.java" new file mode 100644 index 00000000..4160a8ef --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblQuickController.java" new file mode 100644 index 00000000..c6cb492a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleController.java" new file mode 100644 index 00000000..0a9c0d3a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblRoleMenuPriviController.java" new file mode 100644 index 00000000..69df7d10 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblRuleController.java" new file mode 100644 index 00000000..50c085ac --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblSendLogController.java" new file mode 100644 index 00000000..142d5a30 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblShortcutIconController.java" new file mode 100644 index 00000000..54172a9b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblStopDateController.java" new file mode 100644 index 00000000..755d557c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblSysDiagramsController.java" new file mode 100644 index 00000000..8cccd266 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblSystemLogController.java" new file mode 100644 index 00000000..257900ef --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblTodoController.java" new file mode 100644 index 00000000..3ba141cd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblTypeController.java" new file mode 100644 index 00000000..0ae181d2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserDeptController.java" new file mode 100644 index 00000000..c498bf80 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserGroupController.java" new file mode 100644 index 00000000..30c8e3b6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRecordController.java" new file mode 100644 index 00000000..a3cf52a5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserRoleController.java" new file mode 100644 index 00000000..f0062bb6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblUserSubCompanyController.java" new file mode 100644 index 00000000..f9143e5f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVodController.java" new file mode 100644 index 00000000..bef2c0fa --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDataController.java" new file mode 100644 index 00000000..5693d3f0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteDetailController.java" new file mode 100644 index 00000000..04c72127 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteProject1Controller.java" new file mode 100644 index 00000000..3a015b99 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblVoteSubjectController.java" new file mode 100644 index 00000000..c4fb52b4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/TblWorkDateController.java" new file mode 100644 index 00000000..7b4bbf77 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyAskMsgRemindLogController.java" new file mode 100644 index 00000000..18235f72 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarManageController.java" new file mode 100644 index 00000000..b02c3008 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceManageController.java" new file mode 100644 index 00000000..bc562c16 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentController.java" new file mode 100644 index 00000000..6c3ea69f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCarSpaceRentDetailController.java" new file mode 100644 index 00000000..6bc45a0a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanCheckController.java" new file mode 100644 index 00000000..10f7e8f4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanPlanController.java" new file mode 100644 index 00000000..321e6374 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCleanRecordController.java" new file mode 100644 index 00000000..5a129f62 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMembersController.java" new file mode 100644 index 00000000..970a3bde --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommitteeMettingController.java" new file mode 100644 index 00000000..bc4bb6a3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyCommunityEventController.java" new file mode 100644 index 00000000..10bb9e2c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyDutyManageController.java" new file mode 100644 index 00000000..f4d52721 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEmailReceiveController.java" new file mode 100644 index 00000000..64c66222 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeDetailController.java" new file mode 100644 index 00000000..946e535e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateIncomeProjectController.java" new file mode 100644 index 00000000..0d7f2858 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateMoneyController.java" new file mode 100644 index 00000000..ec356f9f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailController.java" new file mode 100644 index 00000000..2dc92abc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutDetailSubController.java" new file mode 100644 index 00000000..166cd50a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyEstateOutProjectController.java" new file mode 100644 index 00000000..18993a8d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireAccidentController.java" new file mode 100644 index 00000000..4cae98b1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireCheckController.java" new file mode 100644 index 00000000..1bf89c28 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireExerciseController.java" new file mode 100644 index 00000000..e68b0eb1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyFireFacilityController.java" new file mode 100644 index 00000000..b30a3836 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyGoodsInoutController.java" new file mode 100644 index 00000000..4e8c12e7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenCheckController.java" new file mode 100644 index 00000000..fe3a85fd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyGreenSettingController.java" new file mode 100644 index 00000000..871de4f8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeDetailController.java" new file mode 100644 index 00000000..f3fd75bc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyIncomeProjectController.java" new file mode 100644 index 00000000..3e02ad48 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyNoteManageController.java" new file mode 100644 index 00000000..65199184 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutDetailController.java" new file mode 100644 index 00000000..443041b6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyOutProjectController.java" new file mode 100644 index 00000000..58296699 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyPictureManageController.java" new file mode 100644 index 00000000..ae205505 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverDetailController.java" new file mode 100644 index 00000000..088db74b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyPropertyTakeoverSchemaController.java" new file mode 100644 index 00000000..8949939f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyRenewMsgRemindLogController.java" new file mode 100644 index 00000000..d7419b61 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WySecurityArrangeController.java" new file mode 100644 index 00000000..7e04fe0a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyServiceCashierGroupController.java" new file mode 100644 index 00000000..1bd9aea8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyTakeoverDataDetailController.java" new file mode 100644 index 00000000..c16edd2f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyVegetationInformationController.java" new file mode 100644 index 00000000..738d9db3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/WyVisitManageController.java" new file mode 100644 index 00000000..52fb39ff --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConstomerDecorateController.java" new file mode 100644 index 00000000..07d1512c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhConsumerComplainController.java" new file mode 100644 index 00000000..d9cf9401 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleResultController.java" new file mode 100644 index 00000000..16ab6b5f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCsHandleSpeedController.java" new file mode 100644 index 00000000..5e3b0b23 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerAskFixController.java" new file mode 100644 index 00000000..9fba207c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerCheckController.java" new file mode 100644 index 00000000..bdeda7fd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerController.java" new file mode 100644 index 00000000..72e41402 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerEstateController.java" new file mode 100644 index 00000000..a9f515f2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerMembersController.java" new file mode 100644 index 00000000..7d871844 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceController.java" new file mode 100644 index 00000000..09fd9261 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhCustomerServiceTypeController.java" new file mode 100644 index 00000000..fbaaf909 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractCellController.java" new file mode 100644 index 00000000..fcb9d8ea --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractChangeController.java" new file mode 100644 index 00000000..fc9a7e73 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractController.java" new file mode 100644 index 00000000..868064e6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractRefundController.java" new file mode 100644 index 00000000..33ee960c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentContractReturnController.java" new file mode 100644 index 00000000..8d0a6df4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentInformationController.java" new file mode 100644 index 00000000..a8b21571 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentReceiveController.java" new file mode 100644 index 00000000..6a4c3d09 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentShareController.java" new file mode 100644 index 00000000..a4364501 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/controller/base/ZhRentTransferController.java" new file mode 100644 index 00000000..011a2ffd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.java" new file mode 100644 index 00000000..02c5f487 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcBuildingMapper.xml" new file mode 100644 index 00000000..eac947f9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.java" new file mode 100644 index 00000000..33d8bb1c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcCellAddbuildMapper.xml" new file mode 100644 index 00000000..6e7344a6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" new file mode 100644 index 00000000..1667d756 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcCell; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

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

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellMapper extends BaseMapper { + +} diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcCellMapper.xml" new file mode 100644 index 00000000..57448c20 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.java" new file mode 100644 index 00000000..14fe26da --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcEstateMapper.xml" new file mode 100644 index 00000000..efe2c3ac --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" new file mode 100644 index 00000000..02e4abad --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.java" @@ -0,0 +1,16 @@ +package com.mashibing.mapper; + +import com.mashibing.bean.FcUnit; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + *

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

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcUnitMapper extends BaseMapper { + +} diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FcUnitMapper.xml" new file mode 100644 index 00000000..b6ee64ed --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.java" new file mode 100644 index 00000000..76cf5cdf --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyEstateTemporaryMapper.xml" new file mode 100644 index 00000000..9996c751 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.java" new file mode 100644 index 00000000..9ca0c09e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyHistoryMoneyTempMapper.xml" new file mode 100644 index 00000000..fe7a89f0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.java" new file mode 100644 index 00000000..7e0be5cd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidMainMapper.xml" new file mode 100644 index 00000000..3a6a3255 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.java" new file mode 100644 index 00000000..b9b60d1d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyInvalidSubMapper.xml" new file mode 100644 index 00000000..45442b4e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.java" new file mode 100644 index 00000000..1bfdebe1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneySettingMapper.xml" new file mode 100644 index 00000000..90042a3f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.java" new file mode 100644 index 00000000..7caa4321 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary01Mapper.xml" new file mode 100644 index 00000000..04e9ca1d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.java" new file mode 100644 index 00000000..af04a3f1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary02Mapper.xml" new file mode 100644 index 00000000..11f47005 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.java" new file mode 100644 index 00000000..0a2dfcfb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary03Mapper.xml" new file mode 100644 index 00000000..74d6162c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.java" new file mode 100644 index 00000000..a08eec0f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyMoneyTemporary04Mapper.xml" new file mode 100644 index 00000000..e4dcb056 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.java" new file mode 100644 index 00000000..45dc9de6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPreReceiveMapper.xml" new file mode 100644 index 00000000..6e4bd40b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.java" new file mode 100644 index 00000000..4c07861b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPropertyMoneyDistMapper.xml" new file mode 100644 index 00000000..d61ef5dc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.java" new file mode 100644 index 00000000..1d28dc78 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxMapper.xml" new file mode 100644 index 00000000..b7702087 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.java" new file mode 100644 index 00000000..4e22e989 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyPublicBoxUserMapper.xml" new file mode 100644 index 00000000..e0f94645 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.java" new file mode 100644 index 00000000..417fb677 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptMainMapper.xml" new file mode 100644 index 00000000..0f6b68ad --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.java" new file mode 100644 index 00000000..cce5dc33 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyReceiptSubMapper.xml" new file mode 100644 index 00000000..b562327f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.java" new file mode 100644 index 00000000..d2ca32c1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundMainMapper.xml" new file mode 100644 index 00000000..9e614634 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.java" new file mode 100644 index 00000000..afbc04e8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyRefundSubMapper.xml" new file mode 100644 index 00000000..37b6e890 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.java" new file mode 100644 index 00000000..c2d25edd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FySaleContractMapper.xml" new file mode 100644 index 00000000..35b423aa --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.java" new file mode 100644 index 00000000..22b1e67c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cb2be2cc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.java" new file mode 100644 index 00000000..af81c2c3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareStandingBookMapper.xml" new file mode 100644 index 00000000..9e2ba5af --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.java" new file mode 100644 index 00000000..bbd98de1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyShareUserDetailMapper.xml" new file mode 100644 index 00000000..192f82be --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.java" new file mode 100644 index 00000000..0646e29f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookDetailMapper.xml" new file mode 100644 index 00000000..cd7b914d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.java" new file mode 100644 index 00000000..5434c4a1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyStandingBookMapper.xml" new file mode 100644 index 00000000..3561591e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.java" new file mode 100644 index 00000000..b6ceb6ee --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/FyTemporaryMoneySettingMapper.xml" new file mode 100644 index 00000000..07469a2f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.java" new file mode 100644 index 00000000..e438f742 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAdviceBoxMapper.xml" new file mode 100644 index 00000000..cdf835b7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.java" new file mode 100644 index 00000000..7d3a782f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAnswerDataMapper.xml" new file mode 100644 index 00000000..3d71ac1f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.java" new file mode 100644 index 00000000..40c37016 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblArgRecordMapper.xml" new file mode 100644 index 00000000..b6e9e973 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.java" new file mode 100644 index 00000000..4196be6c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" new file mode 100644 index 00000000..b02b1db2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblAttuploadMapper.xml" @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + attID, attName, attNewName, attKey, attClass + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.java" new file mode 100644 index 00000000..d7144d62 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" new file mode 100644 index 00000000..33c9dad8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblColorMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, color + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.java" new file mode 100644 index 00000000..774e562e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonLanguageMapper.xml" new file mode 100644 index 00000000..0805d128 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.java" new file mode 100644 index 00000000..e0983f8f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" new file mode 100644 index 00000000..320b6709 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCommonMessageMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, message_content, message_type + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.java" new file mode 100644 index 00000000..34692b8d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyMapper.xml" new file mode 100644 index 00000000..dd3a87b4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.java" new file mode 100644 index 00000000..4f9bfbc4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCompanyRecordMapper.xml" new file mode 100644 index 00000000..48558ff5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.java" new file mode 100644 index 00000000..d19bc2a5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblComparyNoticeMapper.xml" new file mode 100644 index 00000000..656febfa --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.java" new file mode 100644 index 00000000..35c28e50 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" new file mode 100644 index 00000000..844dfed2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblCustomTypeMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, name, status, category + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.java" new file mode 100644 index 00000000..b3a21a79 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDashboardMapper.xml" new file mode 100644 index 00000000..9adb7d0a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.java" new file mode 100644 index 00000000..b238c676 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" new file mode 100644 index 00000000..85b85050 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.java" new file mode 100644 index 00000000..72b37cbe --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbSettingMapper.xml" new file mode 100644 index 00000000..559dabd3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.java" new file mode 100644 index 00000000..32bb96ec --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbbackupMapper.xml" new file mode 100644 index 00000000..4ca49194 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.java" new file mode 100644 index 00000000..f24a0930 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbrecoveryMapper.xml" new file mode 100644 index 00000000..c6180843 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.java" new file mode 100644 index 00000000..be418388 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDbsourceMapper.xml" new file mode 100644 index 00000000..cfd2d95c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.java" new file mode 100644 index 00000000..8e85fa24 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptMapper.xml" new file mode 100644 index 00000000..37832de8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.java" new file mode 100644 index 00000000..ee45cbdc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" new file mode 100644 index 00000000..46e98354 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDeptkeyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, dept_name + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.java" new file mode 100644 index 00000000..f61480a2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblDesktopMapper.xml" new file mode 100644 index 00000000..1513b0bd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.java" new file mode 100644 index 00000000..d7a52ea0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailReceiveMapper.xml" new file mode 100644 index 00000000..30a86c07 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.java" new file mode 100644 index 00000000..760d40fa --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmailSendMapper.xml" new file mode 100644 index 00000000..c0807b5d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.java" new file mode 100644 index 00000000..c953523e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactCategoryMapper.xml" new file mode 100644 index 00000000..458488e0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.java" new file mode 100644 index 00000000..5c538e3d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEmployeeContactMapper.xml" new file mode 100644 index 00000000..dc8aa233 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.java" new file mode 100644 index 00000000..3392fe18 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblEnvirSettingMapper.xml" new file mode 100644 index 00000000..21fa88ee --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.java" new file mode 100644 index 00000000..5236c6b7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblFunctionModelMapper.xml" new file mode 100644 index 00000000..35ef93cd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.java" new file mode 100644 index 00000000..f43dea95 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupRecordMapper.xml" new file mode 100644 index 00000000..fbf84dfa --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.java" new file mode 100644 index 00000000..38ec96a0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" new file mode 100644 index 00000000..eacce737 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsTodoMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + id, todo_id + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.java" new file mode 100644 index 00000000..36fba31c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblGroupsUserMapper.xml" new file mode 100644 index 00000000..a8fbf84d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.java" new file mode 100644 index 00000000..01a62dbb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblLoginLogMapper.xml" new file mode 100644 index 00000000..d8c1d1f6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.java" new file mode 100644 index 00000000..53c62c6c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMainMenuMapper.xml" new file mode 100644 index 00000000..4a25e381 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.java" new file mode 100644 index 00000000..7766e7c0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageChargeMapper.xml" new file mode 100644 index 00000000..3d8d6998 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.java" new file mode 100644 index 00000000..750c80a4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageReceiveMapper.xml" new file mode 100644 index 00000000..cdcea02d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.java" new file mode 100644 index 00000000..eac8eddc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMessageSendMapper.xml" new file mode 100644 index 00000000..8c76b775 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.java" new file mode 100644 index 00000000..a44766d3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" new file mode 100644 index 00000000..baa161cf --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMsgReceiveMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, receive_person, status + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.java" new file mode 100644 index 00000000..66be8bd9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyNoteMapper.xml" new file mode 100644 index 00000000..c4fe8b9b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.java" new file mode 100644 index 00000000..9956d03c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyadviceMapper.xml" new file mode 100644 index 00000000..378ae930 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.java" new file mode 100644 index 00000000..592f2f5e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMydashMapper.xml" new file mode 100644 index 00000000..dc567184 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.java" new file mode 100644 index 00000000..fe8dc6f8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMydeskMapper.xml" new file mode 100644 index 00000000..ef31ed22 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.java" new file mode 100644 index 00000000..88fe58d7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMyplanMapper.xml" new file mode 100644 index 00000000..e56d1170 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.java" new file mode 100644 index 00000000..dca74c9e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblMysetMapper.xml" new file mode 100644 index 00000000..53f67262 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.java" new file mode 100644 index 00000000..8a2e2c50 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskDirMapper.xml" new file mode 100644 index 00000000..2066fc38 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.java" new file mode 100644 index 00000000..829761c5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblNetdiskUrlMapper.xml" new file mode 100644 index 00000000..76b4cc68 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.java" new file mode 100644 index 00000000..c42a30f0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPositionRecordMapper.xml" new file mode 100644 index 00000000..b6197ea0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.java" new file mode 100644 index 00000000..029b7a28 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintPaperMapper.xml" new file mode 100644 index 00000000..1bee0591 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.java" new file mode 100644 index 00000000..40be953a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblPrintParamMapper.xml" new file mode 100644 index 00000000..161d6c48 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.java" new file mode 100644 index 00000000..2b00fd46 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblQuickMapper.xml" new file mode 100644 index 00000000..e27d5181 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.java" new file mode 100644 index 00000000..aa7fe8dd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMapper.xml" new file mode 100644 index 00000000..f57ab44b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.java" new file mode 100644 index 00000000..77f9a37c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" new file mode 100644 index 00000000..160b35af --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRoleMenuPriviMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + role_id, model_id + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.java" new file mode 100644 index 00000000..d40db931 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblRuleMapper.xml" new file mode 100644 index 00000000..a862b66c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.java" new file mode 100644 index 00000000..b2595e2c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSendLogMapper.xml" new file mode 100644 index 00000000..20e131e1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.java" new file mode 100644 index 00000000..7d234a29 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblShortcutIconMapper.xml" new file mode 100644 index 00000000..71994c36 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.java" new file mode 100644 index 00000000..b2796ad4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" new file mode 100644 index 00000000..53b841f1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblStopDateMapper.xml" @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + id, name, days + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.java" new file mode 100644 index 00000000..f7182607 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSysDiagramsMapper.xml" new file mode 100644 index 00000000..ee5d0d60 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.java" new file mode 100644 index 00000000..be89dacb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblSystemLogMapper.xml" new file mode 100644 index 00000000..9d79e6df --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.java" new file mode 100644 index 00000000..f7839dbe --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblTodoMapper.xml" new file mode 100644 index 00000000..51e5975d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.java" new file mode 100644 index 00000000..70956c0b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblTypeMapper.xml" new file mode 100644 index 00000000..eb22c5a6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.java" new file mode 100644 index 00000000..bdcce86b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" new file mode 100644 index 00000000..e6d8657d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserDeptMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, dept_id + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.java" new file mode 100644 index 00000000..7842c31a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserGroupMapper.xml" new file mode 100644 index 00000000..ffa8728d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.java" new file mode 100644 index 00000000..36794b99 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRecordMapper.xml" new file mode 100644 index 00000000..dfaa7780 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.java" new file mode 100644 index 00000000..0f1103fc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" new file mode 100644 index 00000000..6eae3b8f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserRoleMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, role_id + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.java" new file mode 100644 index 00000000..000795b2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" new file mode 100644 index 00000000..dd40ea54 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblUserSubCompanyMapper.xml" @@ -0,0 +1,16 @@ + + + + + + + + + + + + + user_id, company_id + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.java" new file mode 100644 index 00000000..6f5da938 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVodMapper.xml" new file mode 100644 index 00000000..d9f412b6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.java" new file mode 100644 index 00000000..4c2668e9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDataMapper.xml" new file mode 100644 index 00000000..b671e2c6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.java" new file mode 100644 index 00000000..3eade778 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteDetailMapper.xml" new file mode 100644 index 00000000..b2144d43 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.java" new file mode 100644 index 00000000..917dfdf1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteProject1Mapper.xml" new file mode 100644 index 00000000..8cccbf63 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.java" new file mode 100644 index 00000000..382495ba --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblVoteSubjectMapper.xml" new file mode 100644 index 00000000..22c9630e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.java" new file mode 100644 index 00000000..d180ed91 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" new file mode 100644 index 00000000..0a800a7b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/TblWorkDateMapper.xml" @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + id, dt, weekday, is_work + + + diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.java" new file mode 100644 index 00000000..492be76d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyAskMsgRemindLogMapper.xml" new file mode 100644 index 00000000..4f14698d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.java" new file mode 100644 index 00000000..bf1a8d28 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarManageMapper.xml" new file mode 100644 index 00000000..95452789 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.java" new file mode 100644 index 00000000..a8c50a3f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceManageMapper.xml" new file mode 100644 index 00000000..e976b0d3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.java" new file mode 100644 index 00000000..1e37116b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentDetailMapper.xml" new file mode 100644 index 00000000..39f79d5c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.java" new file mode 100644 index 00000000..841388dd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCarSpaceRentMapper.xml" new file mode 100644 index 00000000..8501fd02 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.java" new file mode 100644 index 00000000..227fd4b1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanCheckMapper.xml" new file mode 100644 index 00000000..46fe0eb2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.java" new file mode 100644 index 00000000..e23a1dfd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanPlanMapper.xml" new file mode 100644 index 00000000..84dac630 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.java" new file mode 100644 index 00000000..ad6991e2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCleanRecordMapper.xml" new file mode 100644 index 00000000..d7ad9898 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.java" new file mode 100644 index 00000000..b1b893c4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMembersMapper.xml" new file mode 100644 index 00000000..6b519077 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.java" new file mode 100644 index 00000000..e1d7502b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommitteeMettingMapper.xml" new file mode 100644 index 00000000..90027bfe --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.java" new file mode 100644 index 00000000..ab154d1d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyCommunityEventMapper.xml" new file mode 100644 index 00000000..39320f02 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.java" new file mode 100644 index 00000000..4d47cf6b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyDutyManageMapper.xml" new file mode 100644 index 00000000..053e4f19 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.java" new file mode 100644 index 00000000..0071481d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEmailReceiveMapper.xml" new file mode 100644 index 00000000..f937d489 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.java" new file mode 100644 index 00000000..7c9db4c5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeDetailMapper.xml" new file mode 100644 index 00000000..bc0adf13 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.java" new file mode 100644 index 00000000..1482ae44 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateIncomeProjectMapper.xml" new file mode 100644 index 00000000..f9c3c1e5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.java" new file mode 100644 index 00000000..bdc693ae --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateMoneyMapper.xml" new file mode 100644 index 00000000..7675256f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.java" new file mode 100644 index 00000000..0bbfe2d0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailMapper.xml" new file mode 100644 index 00000000..0c874a9d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.java" new file mode 100644 index 00000000..d0308f03 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutDetailSubMapper.xml" new file mode 100644 index 00000000..41a5b27e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.java" new file mode 100644 index 00000000..d041a8b7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyEstateOutProjectMapper.xml" new file mode 100644 index 00000000..a4d7a8d1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.java" new file mode 100644 index 00000000..54f7c872 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireAccidentMapper.xml" new file mode 100644 index 00000000..143f3fb9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.java" new file mode 100644 index 00000000..10ae7e06 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireCheckMapper.xml" new file mode 100644 index 00000000..9b46c4c4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.java" new file mode 100644 index 00000000..cb97cd7f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireExerciseMapper.xml" new file mode 100644 index 00000000..1ef75962 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.java" new file mode 100644 index 00000000..600459f2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyFireFacilityMapper.xml" new file mode 100644 index 00000000..8f15878b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.java" new file mode 100644 index 00000000..7020bf79 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGoodsInoutMapper.xml" new file mode 100644 index 00000000..f35e7dd6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.java" new file mode 100644 index 00000000..0b0f0d41 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenCheckMapper.xml" new file mode 100644 index 00000000..b6af8384 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.java" new file mode 100644 index 00000000..17e62a80 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyGreenSettingMapper.xml" new file mode 100644 index 00000000..c6924615 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.java" new file mode 100644 index 00000000..91d8c55d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeDetailMapper.xml" new file mode 100644 index 00000000..a7e822e7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.java" new file mode 100644 index 00000000..3b18e868 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyIncomeProjectMapper.xml" new file mode 100644 index 00000000..75422fe4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.java" new file mode 100644 index 00000000..54eb80d5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyNoteManageMapper.xml" new file mode 100644 index 00000000..1e48b3aa --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.java" new file mode 100644 index 00000000..8c80c030 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyOutDetailMapper.xml" new file mode 100644 index 00000000..b1d4888c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.java" new file mode 100644 index 00000000..46d9fab5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyOutProjectMapper.xml" new file mode 100644 index 00000000..a14a5e14 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.java" new file mode 100644 index 00000000..825f5e8d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPictureManageMapper.xml" new file mode 100644 index 00000000..95e41b69 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.java" new file mode 100644 index 00000000..0d4bc17f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverDetailMapper.xml" new file mode 100644 index 00000000..8a8b5629 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.java" new file mode 100644 index 00000000..8c1dfdc7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyPropertyTakeoverSchemaMapper.xml" new file mode 100644 index 00000000..cf05f682 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.java" new file mode 100644 index 00000000..cedd97b6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyRenewMsgRemindLogMapper.xml" new file mode 100644 index 00000000..aa8112ff --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.java" new file mode 100644 index 00000000..478dd8ba --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WySecurityArrangeMapper.xml" new file mode 100644 index 00000000..11270014 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.java" new file mode 100644 index 00000000..e31decca --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyServiceCashierGroupMapper.xml" new file mode 100644 index 00000000..815b3fcc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.java" new file mode 100644 index 00000000..c60cb46c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyTakeoverDataDetailMapper.xml" new file mode 100644 index 00000000..3c62c16e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.java" new file mode 100644 index 00000000..3e6d01de --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyVegetationInformationMapper.xml" new file mode 100644 index 00000000..5639f342 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.java" new file mode 100644 index 00000000..f5719bb3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/WyVisitManageMapper.xml" new file mode 100644 index 00000000..8964260f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.java" new file mode 100644 index 00000000..7d8b163f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhConstomerDecorateMapper.xml" new file mode 100644 index 00000000..21d2d998 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.java" new file mode 100644 index 00000000..fd3274b9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhConsumerComplainMapper.xml" new file mode 100644 index 00000000..8099f652 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.java" new file mode 100644 index 00000000..3ca600a9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleResultMapper.xml" new file mode 100644 index 00000000..d9b094ed --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.java" new file mode 100644 index 00000000..b9e0b5c9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCsHandleSpeedMapper.xml" new file mode 100644 index 00000000..bdaca0c1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.java" new file mode 100644 index 00000000..8be4efbb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerAskFixMapper.xml" new file mode 100644 index 00000000..43bf0708 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.java" new file mode 100644 index 00000000..a657f2b3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerCheckMapper.xml" new file mode 100644 index 00000000..58ea57b6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.java" new file mode 100644 index 00000000..ad812b47 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerEstateMapper.xml" new file mode 100644 index 00000000..f5bb4acb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.java" new file mode 100644 index 00000000..ffb0e92b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMapper.xml" new file mode 100644 index 00000000..3bc55605 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.java" new file mode 100644 index 00000000..473ac749 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerMembersMapper.xml" new file mode 100644 index 00000000..6ddbe86d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.java" new file mode 100644 index 00000000..0f7af99b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceMapper.xml" new file mode 100644 index 00000000..afb892bb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.java" new file mode 100644 index 00000000..5743d6fd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhCustomerServiceTypeMapper.xml" new file mode 100644 index 00000000..2b3a0c9c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.java" new file mode 100644 index 00000000..27f0027b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractCellMapper.xml" new file mode 100644 index 00000000..350520e6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.java" new file mode 100644 index 00000000..face874f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractChangeMapper.xml" new file mode 100644 index 00000000..31df2ef7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.java" new file mode 100644 index 00000000..f2bddf67 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractMapper.xml" new file mode 100644 index 00000000..e650c63c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.java" new file mode 100644 index 00000000..6932d3a6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractRefundMapper.xml" new file mode 100644 index 00000000..af18e667 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.java" new file mode 100644 index 00000000..fee9fb8e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentContractReturnMapper.xml" new file mode 100644 index 00000000..e0291c07 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.java" new file mode 100644 index 00000000..b4ffcbf1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentInformationMapper.xml" new file mode 100644 index 00000000..af5fc9a7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.java" new file mode 100644 index 00000000..4c87b491 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentReceiveMapper.xml" new file mode 100644 index 00000000..09e7c566 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.java" new file mode 100644 index 00000000..813331ad --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentShareMapper.xml" new file mode 100644 index 00000000..fbb1d425 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.java" new file mode 100644 index 00000000..c484aa0e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/mapper/ZhRentTransferMapper.xml" new file mode 100644 index 00000000..e7b5f0f7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/returnJson/Permission.java" new file mode 100644 index 00000000..faf18ebc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/returnJson/Permissions.java" new file mode 100644 index 00000000..c72ead08 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/returnJson/ReturnObject.java" new file mode 100644 index 00000000..b195bfd1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/returnJson/UserInfo.java" new file mode 100644 index 00000000..d62a2b7c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" new file mode 100644 index 00000000..f641b021 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/EstateService.java" @@ -0,0 +1,78 @@ +package com.mashibing.service; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.mashibing.bean.FcBuilding; +import com.mashibing.bean.FcEstate; +import com.mashibing.bean.TblCompany; +import com.mashibing.mapper.FcBuildingMapper; +import com.mashibing.mapper.FcEstateMapper; +import com.mashibing.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 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 + * 楼宇信息表 服务类 + *

+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcBuildingService extends IService { + +} diff --git "a/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FcCellAddbuildService.java" new file mode 100644 index 00000000..8a97b3fe --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FcCellService.java" new file mode 100644 index 00000000..db98316c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FcEstateService.java" new file mode 100644 index 00000000..8fdc7dbb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FcUnitService.java" new file mode 100644 index 00000000..5298dad4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyEstateTemporaryService.java" new file mode 100644 index 00000000..3cfb2e15 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyHistoryMoneyTempService.java" new file mode 100644 index 00000000..9bf21503 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidMainService.java" new file mode 100644 index 00000000..9a610bab --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyInvalidSubService.java" new file mode 100644 index 00000000..6294bb5e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneySettingService.java" new file mode 100644 index 00000000..b86eab84 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary01Service.java" new file mode 100644 index 00000000..ae60cf2a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary02Service.java" new file mode 100644 index 00000000..551c6879 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary03Service.java" new file mode 100644 index 00000000..fe777a32 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyMoneyTemporary04Service.java" new file mode 100644 index 00000000..e5cbc763 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyPreReceiveService.java" new file mode 100644 index 00000000..ca6f263a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyPropertyMoneyDistService.java" new file mode 100644 index 00000000..4f8123cf --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxService.java" new file mode 100644 index 00000000..885ee84a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyPublicBoxUserService.java" new file mode 100644 index 00000000..7ad0c71e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptMainService.java" new file mode 100644 index 00000000..ad2f6da5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyReceiptSubService.java" new file mode 100644 index 00000000..14a73ac9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundMainService.java" new file mode 100644 index 00000000..30a0c03b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyRefundSubService.java" new file mode 100644 index 00000000..7c4ab043 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FySaleContractService.java" new file mode 100644 index 00000000..f1de4911 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookDetailService.java" new file mode 100644 index 00000000..b6e94746 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyShareStandingBookService.java" new file mode 100644 index 00000000..83b9fdd4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyShareUserDetailService.java" new file mode 100644 index 00000000..dd3d0f4f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookDetailService.java" new file mode 100644 index 00000000..a4bd4b0e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyStandingBookService.java" new file mode 100644 index 00000000..4146ee47 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/FyTemporaryMoneySettingService.java" new file mode 100644 index 00000000..45f35a42 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblAdviceBoxService.java" new file mode 100644 index 00000000..1b44c37b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblAnswerDataService.java" new file mode 100644 index 00000000..809b2ab7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblArgRecordService.java" new file mode 100644 index 00000000..b2169aa2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblAttuploadService.java" new file mode 100644 index 00000000..eb9c29d1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblColorService.java" new file mode 100644 index 00000000..9740de17 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonLanguageService.java" new file mode 100644 index 00000000..9ede23e9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCommonMessageService.java" new file mode 100644 index 00000000..378531ca --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyRecordService.java" new file mode 100644 index 00000000..d1ad6791 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCompanyService.java" new file mode 100644 index 00000000..f0eb1243 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblComparyNoticeService.java" new file mode 100644 index 00000000..d7112a35 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblCustomTypeService.java" new file mode 100644 index 00000000..728915dc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDashboardService.java" new file mode 100644 index 00000000..ea03d266 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDateService.java" new file mode 100644 index 00000000..ffce1b03 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDbSettingService.java" new file mode 100644 index 00000000..9cc75e06 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDbbackupService.java" new file mode 100644 index 00000000..25715533 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDbrecoveryService.java" new file mode 100644 index 00000000..289f482b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDbsourceService.java" new file mode 100644 index 00000000..2f78cc6c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptService.java" new file mode 100644 index 00000000..6dc1337d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDeptkeyService.java" new file mode 100644 index 00000000..464ff62b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblDesktopService.java" new file mode 100644 index 00000000..60667f48 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailReceiveService.java" new file mode 100644 index 00000000..f17ac742 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEmailSendService.java" new file mode 100644 index 00000000..fc9edd16 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactCategoryService.java" new file mode 100644 index 00000000..9a189a74 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEmployeeContactService.java" new file mode 100644 index 00000000..d02f33d9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblEnvirSettingService.java" new file mode 100644 index 00000000..13bfede9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblFunctionModelService.java" new file mode 100644 index 00000000..12ebd96b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupRecordService.java" new file mode 100644 index 00000000..69fc1bd6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsTodoService.java" new file mode 100644 index 00000000..4e0969ba --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblGroupsUserService.java" new file mode 100644 index 00000000..d2ef2b44 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblLoginLogService.java" new file mode 100644 index 00000000..1487019c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMainMenuService.java" new file mode 100644 index 00000000..e9c84428 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageChargeService.java" new file mode 100644 index 00000000..dfe86cba --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageReceiveService.java" new file mode 100644 index 00000000..b5457417 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMessageSendService.java" new file mode 100644 index 00000000..a7e6b254 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMsgReceiveService.java" new file mode 100644 index 00000000..a82b22a3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMyNoteService.java" new file mode 100644 index 00000000..0ffa2dd5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMyadviceService.java" new file mode 100644 index 00000000..1feb9bc4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMydashService.java" new file mode 100644 index 00000000..824d0525 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMydeskService.java" new file mode 100644 index 00000000..4c12aabc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMyplanService.java" new file mode 100644 index 00000000..7b9069a2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblMysetService.java" new file mode 100644 index 00000000..4d903001 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskDirService.java" new file mode 100644 index 00000000..1c4387d7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblNetdiskUrlService.java" new file mode 100644 index 00000000..b119cdee --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblPositionRecordService.java" new file mode 100644 index 00000000..06c98288 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintPaperService.java" new file mode 100644 index 00000000..3941af10 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblPrintParamService.java" new file mode 100644 index 00000000..26518d8a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblQuickService.java" new file mode 100644 index 00000000..9257a0f0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleMenuPriviService.java" new file mode 100644 index 00000000..fcebe802 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblRoleService.java" new file mode 100644 index 00000000..0b4d1b58 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblRuleService.java" new file mode 100644 index 00000000..5d11c5cb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblSendLogService.java" new file mode 100644 index 00000000..2cc94cba --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblShortcutIconService.java" new file mode 100644 index 00000000..26d96d7c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblStopDateService.java" new file mode 100644 index 00000000..8cb5d807 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblSysDiagramsService.java" new file mode 100644 index 00000000..c1cf8468 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblSystemLogService.java" new file mode 100644 index 00000000..2f8ce61f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblTodoService.java" new file mode 100644 index 00000000..17bb962b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblTypeService.java" new file mode 100644 index 00000000..80283723 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserDeptService.java" new file mode 100644 index 00000000..ae4fd8da --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserGroupService.java" new file mode 100644 index 00000000..23dbc6b6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRecordService.java" new file mode 100644 index 00000000..fcc1232a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserRoleService.java" new file mode 100644 index 00000000..a1297cc7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblUserSubCompanyService.java" new file mode 100644 index 00000000..ac257ef1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVodService.java" new file mode 100644 index 00000000..d6baf168 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDataService.java" new file mode 100644 index 00000000..4bb2602b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteDetailService.java" new file mode 100644 index 00000000..f20be5fb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteProject1Service.java" new file mode 100644 index 00000000..763d391d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblVoteSubjectService.java" new file mode 100644 index 00000000..8d98d78e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/TblWorkDateService.java" new file mode 100644 index 00000000..55935a0f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyAskMsgRemindLogService.java" new file mode 100644 index 00000000..393582c9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCarManageService.java" new file mode 100644 index 00000000..c38dbfa7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceManageService.java" new file mode 100644 index 00000000..4bcc6bae --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentDetailService.java" new file mode 100644 index 00000000..d8b33d84 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCarSpaceRentService.java" new file mode 100644 index 00000000..bd039f3e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanCheckService.java" new file mode 100644 index 00000000..94625090 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanPlanService.java" new file mode 100644 index 00000000..3354c215 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCleanRecordService.java" new file mode 100644 index 00000000..d49af48f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMembersService.java" new file mode 100644 index 00000000..0ce04b3a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCommitteeMettingService.java" new file mode 100644 index 00000000..09904864 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyCommunityEventService.java" new file mode 100644 index 00000000..4aeb2341 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyDutyManageService.java" new file mode 100644 index 00000000..b2f6102e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEmailReceiveService.java" new file mode 100644 index 00000000..e4deb3b7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeDetailService.java" new file mode 100644 index 00000000..8e88e8cc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateIncomeProjectService.java" new file mode 100644 index 00000000..34ff4bbf --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateMoneyService.java" new file mode 100644 index 00000000..cb9bbe1d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailService.java" new file mode 100644 index 00000000..b83d423f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutDetailSubService.java" new file mode 100644 index 00000000..945ed42c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyEstateOutProjectService.java" new file mode 100644 index 00000000..2929a149 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyFireAccidentService.java" new file mode 100644 index 00000000..d9df2cbc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyFireCheckService.java" new file mode 100644 index 00000000..51aaf56a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyFireExerciseService.java" new file mode 100644 index 00000000..72e45927 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyFireFacilityService.java" new file mode 100644 index 00000000..85ff1592 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyGoodsInoutService.java" new file mode 100644 index 00000000..68d12a5e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenCheckService.java" new file mode 100644 index 00000000..d08e64c9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyGreenSettingService.java" new file mode 100644 index 00000000..666bf01b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeDetailService.java" new file mode 100644 index 00000000..6eff60f2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyIncomeProjectService.java" new file mode 100644 index 00000000..0ab9e557 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyNoteManageService.java" new file mode 100644 index 00000000..e0ebbde7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyOutDetailService.java" new file mode 100644 index 00000000..4968eb5a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyOutProjectService.java" new file mode 100644 index 00000000..f1ede50a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyPictureManageService.java" new file mode 100644 index 00000000..352bf9fb --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverDetailService.java" new file mode 100644 index 00000000..f651bd00 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyPropertyTakeoverSchemaService.java" new file mode 100644 index 00000000..d703f7e2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyRenewMsgRemindLogService.java" new file mode 100644 index 00000000..d73d71c3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WySecurityArrangeService.java" new file mode 100644 index 00000000..92e11f93 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyServiceCashierGroupService.java" new file mode 100644 index 00000000..2ccdac25 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyTakeoverDataDetailService.java" new file mode 100644 index 00000000..b9878a4c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyVegetationInformationService.java" new file mode 100644 index 00000000..129d35c5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/WyVisitManageService.java" new file mode 100644 index 00000000..798311e6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhConstomerDecorateService.java" new file mode 100644 index 00000000..e79fafd3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhConsumerComplainService.java" new file mode 100644 index 00000000..d61d662b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleResultService.java" new file mode 100644 index 00000000..7c27e7fc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCsHandleSpeedService.java" new file mode 100644 index 00000000..a8c2da8f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerAskFixService.java" new file mode 100644 index 00000000..2c6ef840 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerCheckService.java" new file mode 100644 index 00000000..e10ba81d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerEstateService.java" new file mode 100644 index 00000000..7eaa504d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerMembersService.java" new file mode 100644 index 00000000..eab2bbb0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerService.java" new file mode 100644 index 00000000..f408676a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceService.java" new file mode 100644 index 00000000..5246bdf3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhCustomerServiceTypeService.java" new file mode 100644 index 00000000..0fd4696d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractCellService.java" new file mode 100644 index 00000000..f1328ce7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractChangeService.java" new file mode 100644 index 00000000..85b51419 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractRefundService.java" new file mode 100644 index 00000000..2f7ab162 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractReturnService.java" new file mode 100644 index 00000000..1c34335e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentContractService.java" new file mode 100644 index 00000000..44905dd3 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentInformationService.java" new file mode 100644 index 00000000..c605c357 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentReceiveService.java" new file mode 100644 index 00000000..5d48e205 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentShareService.java" new file mode 100644 index 00000000..a08daee9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/base/ZhRentTransferService.java" new file mode 100644 index 00000000..abfcb014 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcBuildingServiceImpl.java" new file mode 100644 index 00000000..bc5c83d6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellAddbuildServiceImpl.java" new file mode 100644 index 00000000..1b6d4f88 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcCellServiceImpl.java" new file mode 100644 index 00000000..24f5045b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcEstateServiceImpl.java" new file mode 100644 index 00000000..89fec2be --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FcUnitServiceImpl.java" new file mode 100644 index 00000000..95406a39 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyEstateTemporaryServiceImpl.java" new file mode 100644 index 00000000..4a599f30 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyHistoryMoneyTempServiceImpl.java" new file mode 100644 index 00000000..f8d17eba --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidMainServiceImpl.java" new file mode 100644 index 00000000..e0883e05 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyInvalidSubServiceImpl.java" new file mode 100644 index 00000000..63571b83 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneySettingServiceImpl.java" new file mode 100644 index 00000000..f935c5fc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary01ServiceImpl.java" new file mode 100644 index 00000000..c6f1dd61 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary02ServiceImpl.java" new file mode 100644 index 00000000..297efa16 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary03ServiceImpl.java" new file mode 100644 index 00000000..8ecae9d7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyMoneyTemporary04ServiceImpl.java" new file mode 100644 index 00000000..bf27846b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyPreReceiveServiceImpl.java" new file mode 100644 index 00000000..9985660e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyPropertyMoneyDistServiceImpl.java" new file mode 100644 index 00000000..3696d95f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxServiceImpl.java" new file mode 100644 index 00000000..84b624e4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyPublicBoxUserServiceImpl.java" new file mode 100644 index 00000000..439491a8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptMainServiceImpl.java" new file mode 100644 index 00000000..e1817d3c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyReceiptSubServiceImpl.java" new file mode 100644 index 00000000..d9164085 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundMainServiceImpl.java" new file mode 100644 index 00000000..fe3269bc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyRefundSubServiceImpl.java" new file mode 100644 index 00000000..9eaa707e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FySaleContractServiceImpl.java" new file mode 100644 index 00000000..c8fd799e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..dca9ee28 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareStandingBookServiceImpl.java" new file mode 100644 index 00000000..38bb88aa --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyShareUserDetailServiceImpl.java" new file mode 100644 index 00000000..5cba602f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookDetailServiceImpl.java" new file mode 100644 index 00000000..3ac683ef --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyStandingBookServiceImpl.java" new file mode 100644 index 00000000..bf92b465 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/FyTemporaryMoneySettingServiceImpl.java" new file mode 100644 index 00000000..8e9dd99c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblAdviceBoxServiceImpl.java" new file mode 100644 index 00000000..de0ec987 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblAnswerDataServiceImpl.java" new file mode 100644 index 00000000..74cafef4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblArgRecordServiceImpl.java" new file mode 100644 index 00000000..3e4332b1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblAttuploadServiceImpl.java" new file mode 100644 index 00000000..8d423f11 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblColorServiceImpl.java" new file mode 100644 index 00000000..3af54d5c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonLanguageServiceImpl.java" new file mode 100644 index 00000000..c033c55f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCommonMessageServiceImpl.java" new file mode 100644 index 00000000..6eeb1464 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyRecordServiceImpl.java" new file mode 100644 index 00000000..330ee801 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCompanyServiceImpl.java" new file mode 100644 index 00000000..1020286f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblComparyNoticeServiceImpl.java" new file mode 100644 index 00000000..11dfe067 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblCustomTypeServiceImpl.java" new file mode 100644 index 00000000..3a119cb6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDashboardServiceImpl.java" new file mode 100644 index 00000000..2b8e2874 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDateServiceImpl.java" new file mode 100644 index 00000000..f4dba8d1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbSettingServiceImpl.java" new file mode 100644 index 00000000..f34a1f05 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbbackupServiceImpl.java" new file mode 100644 index 00000000..fb270d9a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbrecoveryServiceImpl.java" new file mode 100644 index 00000000..e6ea079c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDbsourceServiceImpl.java" new file mode 100644 index 00000000..2ff25f23 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptServiceImpl.java" new file mode 100644 index 00000000..34f6cc0d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDeptkeyServiceImpl.java" new file mode 100644 index 00000000..d11442b9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblDesktopServiceImpl.java" new file mode 100644 index 00000000..5aaedc3b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..c984cb92 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmailSendServiceImpl.java" new file mode 100644 index 00000000..54f554c1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactCategoryServiceImpl.java" new file mode 100644 index 00000000..6229c6d7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEmployeeContactServiceImpl.java" new file mode 100644 index 00000000..f2e452bf --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblEnvirSettingServiceImpl.java" new file mode 100644 index 00000000..f43345e1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblFunctionModelServiceImpl.java" new file mode 100644 index 00000000..29f647a8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupRecordServiceImpl.java" new file mode 100644 index 00000000..885bd2a5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsTodoServiceImpl.java" new file mode 100644 index 00000000..6409c6bf --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblGroupsUserServiceImpl.java" new file mode 100644 index 00000000..a9d46521 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblLoginLogServiceImpl.java" new file mode 100644 index 00000000..ae431c15 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMainMenuServiceImpl.java" new file mode 100644 index 00000000..1afd48e1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageChargeServiceImpl.java" new file mode 100644 index 00000000..85318f49 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageReceiveServiceImpl.java" new file mode 100644 index 00000000..456cdc83 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMessageSendServiceImpl.java" new file mode 100644 index 00000000..759ba1a1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMsgReceiveServiceImpl.java" new file mode 100644 index 00000000..1a1e5af6 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyNoteServiceImpl.java" new file mode 100644 index 00000000..d187a008 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyadviceServiceImpl.java" new file mode 100644 index 00000000..b39dae32 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydashServiceImpl.java" new file mode 100644 index 00000000..19aa1062 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMydeskServiceImpl.java" new file mode 100644 index 00000000..76a739ac --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMyplanServiceImpl.java" new file mode 100644 index 00000000..f20819cd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblMysetServiceImpl.java" new file mode 100644 index 00000000..7a213a24 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskDirServiceImpl.java" new file mode 100644 index 00000000..1ddead49 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblNetdiskUrlServiceImpl.java" new file mode 100644 index 00000000..89eb91ac --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblPositionRecordServiceImpl.java" new file mode 100644 index 00000000..a806863a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintPaperServiceImpl.java" new file mode 100644 index 00000000..cd80ed83 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblPrintParamServiceImpl.java" new file mode 100644 index 00000000..4f5c4d15 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblQuickServiceImpl.java" new file mode 100644 index 00000000..b9a4d409 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleMenuPriviServiceImpl.java" new file mode 100644 index 00000000..fe5263b4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblRoleServiceImpl.java" new file mode 100644 index 00000000..15540c2c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblRuleServiceImpl.java" new file mode 100644 index 00000000..7d9d0145 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblSendLogServiceImpl.java" new file mode 100644 index 00000000..47254b05 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblShortcutIconServiceImpl.java" new file mode 100644 index 00000000..b78ba2c7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblStopDateServiceImpl.java" new file mode 100644 index 00000000..67bc31aa --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblSysDiagramsServiceImpl.java" new file mode 100644 index 00000000..9c956a30 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblSystemLogServiceImpl.java" new file mode 100644 index 00000000..be8a0312 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblTodoServiceImpl.java" new file mode 100644 index 00000000..32c5264b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblTypeServiceImpl.java" new file mode 100644 index 00000000..c4f9fa0f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserDeptServiceImpl.java" new file mode 100644 index 00000000..623237c4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserGroupServiceImpl.java" new file mode 100644 index 00000000..32353953 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRecordServiceImpl.java" new file mode 100644 index 00000000..37e9f66a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserRoleServiceImpl.java" new file mode 100644 index 00000000..afadd36b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblUserSubCompanyServiceImpl.java" new file mode 100644 index 00000000..2fdecca4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVodServiceImpl.java" new file mode 100644 index 00000000..bd74298d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDataServiceImpl.java" new file mode 100644 index 00000000..5a1cf927 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteDetailServiceImpl.java" new file mode 100644 index 00000000..8add15c1 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteProject1ServiceImpl.java" new file mode 100644 index 00000000..213f9834 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblVoteSubjectServiceImpl.java" new file mode 100644 index 00000000..c9d63b30 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/TblWorkDateServiceImpl.java" new file mode 100644 index 00000000..06d23d10 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyAskMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..0825b0c4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarManageServiceImpl.java" new file mode 100644 index 00000000..6ee34414 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceManageServiceImpl.java" new file mode 100644 index 00000000..b8d84fac --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentDetailServiceImpl.java" new file mode 100644 index 00000000..d191d012 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCarSpaceRentServiceImpl.java" new file mode 100644 index 00000000..f5e1ac1d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanCheckServiceImpl.java" new file mode 100644 index 00000000..c95705b8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanPlanServiceImpl.java" new file mode 100644 index 00000000..7bde96df --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCleanRecordServiceImpl.java" new file mode 100644 index 00000000..c130b14c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMembersServiceImpl.java" new file mode 100644 index 00000000..511baf3d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommitteeMettingServiceImpl.java" new file mode 100644 index 00000000..4b1be59e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyCommunityEventServiceImpl.java" new file mode 100644 index 00000000..45ed0547 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyDutyManageServiceImpl.java" new file mode 100644 index 00000000..25ac5891 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEmailReceiveServiceImpl.java" new file mode 100644 index 00000000..ff281e70 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..d209585c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..2d4df8bf --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateMoneyServiceImpl.java" new file mode 100644 index 00000000..39742aff --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailServiceImpl.java" new file mode 100644 index 00000000..afa57579 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutDetailSubServiceImpl.java" new file mode 100644 index 00000000..90d5fdc2 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyEstateOutProjectServiceImpl.java" new file mode 100644 index 00000000..8bf31cb4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireAccidentServiceImpl.java" new file mode 100644 index 00000000..aef32264 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireCheckServiceImpl.java" new file mode 100644 index 00000000..11da05bf --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireExerciseServiceImpl.java" new file mode 100644 index 00000000..ccdf6385 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyFireFacilityServiceImpl.java" new file mode 100644 index 00000000..c4c7b6c9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyGoodsInoutServiceImpl.java" new file mode 100644 index 00000000..238747a8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenCheckServiceImpl.java" new file mode 100644 index 00000000..803a81a7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyGreenSettingServiceImpl.java" new file mode 100644 index 00000000..718d6748 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeDetailServiceImpl.java" new file mode 100644 index 00000000..34c101cc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyIncomeProjectServiceImpl.java" new file mode 100644 index 00000000..b1a467a8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyNoteManageServiceImpl.java" new file mode 100644 index 00000000..43e1c77f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutDetailServiceImpl.java" new file mode 100644 index 00000000..b12c0ccc --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyOutProjectServiceImpl.java" new file mode 100644 index 00000000..031caa22 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyPictureManageServiceImpl.java" new file mode 100644 index 00000000..2c1f2ad5 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverDetailServiceImpl.java" new file mode 100644 index 00000000..3d8c6bab --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyPropertyTakeoverSchemaServiceImpl.java" new file mode 100644 index 00000000..0c10e602 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyRenewMsgRemindLogServiceImpl.java" new file mode 100644 index 00000000..80d9ca7c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WySecurityArrangeServiceImpl.java" new file mode 100644 index 00000000..56d9d151 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyServiceCashierGroupServiceImpl.java" new file mode 100644 index 00000000..95851072 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyTakeoverDataDetailServiceImpl.java" new file mode 100644 index 00000000..6aba3269 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyVegetationInformationServiceImpl.java" new file mode 100644 index 00000000..88a0f21e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/WyVisitManageServiceImpl.java" new file mode 100644 index 00000000..4ef7629b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConstomerDecorateServiceImpl.java" new file mode 100644 index 00000000..30380d8e --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhConsumerComplainServiceImpl.java" new file mode 100644 index 00000000..da5757ce --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleResultServiceImpl.java" new file mode 100644 index 00000000..1ed4116f --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCsHandleSpeedServiceImpl.java" new file mode 100644 index 00000000..867cba4a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerAskFixServiceImpl.java" new file mode 100644 index 00000000..df714ba0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerCheckServiceImpl.java" new file mode 100644 index 00000000..75386e6a --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerEstateServiceImpl.java" new file mode 100644 index 00000000..f3f2abca --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerMembersServiceImpl.java" new file mode 100644 index 00000000..c414b8a8 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceImpl.java" new file mode 100644 index 00000000..f79257b4 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceServiceImpl.java" new file mode 100644 index 00000000..16395bcd --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhCustomerServiceTypeServiceImpl.java" new file mode 100644 index 00000000..109c871b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractCellServiceImpl.java" new file mode 100644 index 00000000..def513b7 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractChangeServiceImpl.java" new file mode 100644 index 00000000..45c0da98 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractRefundServiceImpl.java" new file mode 100644 index 00000000..2fdfbd4d --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractReturnServiceImpl.java" new file mode 100644 index 00000000..a93da188 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentContractServiceImpl.java" new file mode 100644 index 00000000..267f891b --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentInformationServiceImpl.java" new file mode 100644 index 00000000..39bdc8ef --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentReceiveServiceImpl.java" new file mode 100644 index 00000000..d370c7df --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentShareServiceImpl.java" new file mode 100644 index 00000000..2cd6279c --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/java/com/mashibing/service/impl/ZhRentTransferServiceImpl.java" new file mode 100644 index 00000000..cdd56946 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/resources/application.yaml" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/main/resources/application.yaml" new file mode 100644 index 00000000..fbf86b78 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/test/java/com/mashibing/FamilyServicePlatformApplicationTests.java" new file mode 100644 index 00000000..22c5e9e9 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/family_service_platform/src/test/java/com/mashibing/TestGenerator.java" new file mode 100644 index 00000000..f8a635a0 --- /dev/null +++ "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/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/04\346\245\274\347\233\230\347\256\241\347\220\206/webproject.zip" "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/webproject.zip" new file mode 100644 index 00000000..5e70ceac Binary files /dev/null and "b/project/04\346\245\274\347\233\230\347\256\241\347\220\206/webproject.zip" differ 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 diff --git "a/\351\235\242\350\257\225\351\242\230/2019\347\210\261\345\245\207\350\211\272\351\235\242\347\273\217.md" "b/\351\235\242\350\257\225\351\242\230/2019\347\210\261\345\245\207\350\211\272\351\235\242\347\273\217.md" deleted file mode 100644 index f4979f4d..00000000 --- "a/\351\235\242\350\257\225\351\242\230/2019\347\210\261\345\245\207\350\211\272\351\235\242\347\273\217.md" +++ /dev/null @@ -1,24 +0,0 @@ -# 2019爱奇艺面经 - -1、如何验证json格式?要求不使用正则 - -2、讲一下TCP/IP协议 - -3、Http 301 302 304的区别 - -4、四层负载均衡 - -5、负载均衡的方式 - -6、一个数组,两个数相加等于N,找到两个数相乘最小的两个数 - -7、JVM调优 - -8、docker相关 - -9、设计模式 - -10、高并发应用场景架构设计 - -11、linux命令 -