+ * 楼宇信息表 + *
+ * + * @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+ * 楼宇信息表 前端控制器 + *
+ * + * @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+ * 房间加建信息 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellAddbuildMapper extends BaseMapper+ * 房间信息表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcCellMapper extends BaseMapper+ * 楼盘信息 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcEstateMapper extends BaseMapper+ * 单元信息表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface FcUnitMapper extends BaseMapper+ * 房产信息临时表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyEstateTemporaryMapper extends BaseMapper+ * 历史费用临时表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyHistoryMoneyTempMapper extends BaseMapper+ * 作废单主单 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidMainMapper extends BaseMapper+ * 作废单子单 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidSubMapper extends BaseMapper+ * 费项设置 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneySettingMapper extends BaseMapper+ * 费用临时表1 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary01Mapper extends BaseMapper+ * 费用临时表2 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary02Mapper extends BaseMapper+ * 费用临时表3 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary03Mapper extends BaseMapper+ * 费用临时表4 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary04Mapper extends BaseMapper+ * 预收款管理 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPreReceiveMapper extends BaseMapper+ * 物业费分布 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPropertyMoneyDistMapper extends BaseMapper+ * 公表信息 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxMapper extends BaseMapper+ * 公表关联用户 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxUserMapper extends BaseMapper+ * 收款单主单 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptMainMapper extends BaseMapper+ * 收款单子单 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptSubMapper extends BaseMapper+ * 退款单主单 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundMainMapper extends BaseMapper+ * 退款单子单 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundSubMapper extends BaseMapper+ * 销售合同 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FySaleContractMapper extends BaseMapper+ * 公摊费用台账公表明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookDetailMapper extends BaseMapper+ * 公摊费用台账概要 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookMapper extends BaseMapper+ * 公摊费用台账用户明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareUserDetailMapper extends BaseMapper+ * 费用台账明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookDetailMapper extends BaseMapper+ * 费用台账概要 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookMapper extends BaseMapper+ * 临客费项设置 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyTemporaryMoneySettingMapper extends BaseMapper+ * 意见箱 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAdviceBoxMapper extends BaseMapper+ * 题目可选答案信息表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAnswerDataMapper extends BaseMapper+ * 参数档案 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblArgRecordMapper extends BaseMapper+ * 附件 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblAttuploadMapper extends BaseMapper+ * 颜色管理 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblColorMapper extends BaseMapper+ * 常用语 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonLanguageMapper extends BaseMapper+ * 常用短信 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCommonMessageMapper extends BaseMapper+ * 企业档案 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface TblCompanyMapper extends BaseMapper+ * 单位名录 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCompanyRecordMapper extends BaseMapper+ * 企业公告 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblComparyNoticeMapper extends BaseMapper+ * 自定义类型 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblCustomTypeMapper extends BaseMapper+ * 仪表盘 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDashboardMapper extends BaseMapper+ * 工作日期 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDateMapper extends BaseMapper+ * 数据库设置 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbSettingMapper extends BaseMapper+ * 数据库备份 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbbackupMapper extends BaseMapper+ * 数据库还原 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbrecoveryMapper extends BaseMapper+ * 数据库 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDbsourceMapper extends BaseMapper+ * 部门信息表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptMapper extends BaseMapper+ * 部门key Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDeptkeyMapper extends BaseMapper+ * 桌面 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblDesktopMapper extends BaseMapper+ * 邮件接受 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailReceiveMapper extends BaseMapper+ * 邮件发送 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmailSendMapper extends BaseMapper+ * 员工通讯录类别 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactCategoryMapper extends BaseMapper+ * 员工通讯录 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEmployeeContactMapper extends BaseMapper+ * 环境配置 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblEnvirSettingMapper extends BaseMapper+ * 功能模块 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblFunctionModelMapper extends BaseMapper+ * 群组档案 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupRecordMapper extends BaseMapper+ * 分组待办事项 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsTodoMapper extends BaseMapper+ * 分组用户 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblGroupsUserMapper extends BaseMapper+ * 登录日志 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblLoginLogMapper extends BaseMapper+ * 主菜单 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMainMenuMapper extends BaseMapper+ * 短信充值单 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageChargeMapper extends BaseMapper+ * 短信接受表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageReceiveMapper extends BaseMapper+ * 信息发送 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMessageSendMapper extends BaseMapper+ * 信息接受 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMsgReceiveMapper extends BaseMapper+ * 我的记事本 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyNoteMapper extends BaseMapper+ * 我的意见 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyadviceMapper extends BaseMapper+ * 我的驾驶舱 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydashMapper extends BaseMapper+ * 我的桌面 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMydeskMapper extends BaseMapper+ * 我的日程 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMyplanMapper extends BaseMapper+ * 个人设置 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblMysetMapper extends BaseMapper+ * 网络硬盘_文件夹 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskDirMapper extends BaseMapper+ * 网络硬盘路径 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblNetdiskUrlMapper extends BaseMapper+ * 职位档案 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPositionRecordMapper extends BaseMapper+ * 打印纸张宽度设置 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintPaperMapper extends BaseMapper+ * 打印参数 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblPrintParamMapper extends BaseMapper+ * 快捷方式 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblQuickMapper extends BaseMapper+ * 角色档案 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleMapper extends BaseMapper+ * 角色菜单权限 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRoleMenuPriviMapper extends BaseMapper+ * 规章制度 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblRuleMapper extends BaseMapper+ * 发送日志表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSendLogMapper extends BaseMapper+ * 快捷方式图标 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblShortcutIconMapper extends BaseMapper+ * 到期日期 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblStopDateMapper extends BaseMapper+ * 系统图标 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSysDiagramsMapper extends BaseMapper+ * 系统日志 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblSystemLogMapper extends BaseMapper+ * 待办事项 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTodoMapper extends BaseMapper+ * 类型库 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblTypeMapper extends BaseMapper+ * 用户部门表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserDeptMapper extends BaseMapper+ * 用户分组 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserGroupMapper extends BaseMapper+ * 用户档案 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +@Component +public interface TblUserRecordMapper extends BaseMapper+ * 用户角色表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserRoleMapper extends BaseMapper+ * 用户子公司表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblUserSubCompanyMapper extends BaseMapper+ * 视频点播 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVodMapper extends BaseMapper+ * 投票数据表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDataMapper extends BaseMapper+ * 投票数据明细表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteDetailMapper extends BaseMapper+ * 投票项目表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteProject1Mapper extends BaseMapper+ * 投票题目表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblVoteSubjectMapper extends BaseMapper+ * 工作日期 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface TblWorkDateMapper extends BaseMapper+ * 催缴短信提醒日志 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyAskMsgRemindLogMapper extends BaseMapper+ * 车辆管理 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarManageMapper extends BaseMapper+ * 车位管理 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceManageMapper extends BaseMapper+ * 车位租赁缴费明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentDetailMapper extends BaseMapper+ * 车位租赁 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCarSpaceRentMapper extends BaseMapper+ * 清洁检查 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanCheckMapper extends BaseMapper+ * 清洁安排 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanPlanMapper extends BaseMapper+ * 清洁记录 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCleanRecordMapper extends BaseMapper+ * 业委会成员 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMembersMapper extends BaseMapper+ * 业委会会议 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommitteeMettingMapper extends BaseMapper+ * 社区活动 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyCommunityEventMapper extends BaseMapper+ * 执勤管理 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyDutyManageMapper extends BaseMapper+ * 信件收取 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEmailReceiveMapper extends BaseMapper+ * 楼盘经费收入明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeDetailMapper extends BaseMapper+ * 楼盘经费收入项目 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateIncomeProjectMapper extends BaseMapper+ * 楼盘费用 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateMoneyMapper extends BaseMapper+ * 楼盘经费支出明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailMapper extends BaseMapper+ * 楼盘经费支出明细_审批子表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutDetailSubMapper extends BaseMapper+ * 楼盘经费支出项目 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyEstateOutProjectMapper extends BaseMapper+ * 消防事故 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireAccidentMapper extends BaseMapper+ * 消防巡查 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireCheckMapper extends BaseMapper+ * 消防演练 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireExerciseMapper extends BaseMapper+ * 消防设施 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyFireFacilityMapper extends BaseMapper+ * 物品出入 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGoodsInoutMapper extends BaseMapper+ * 绿化检查 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenCheckMapper extends BaseMapper+ * 绿化设置 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyGreenSettingMapper extends BaseMapper+ * 收入明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeDetailMapper extends BaseMapper+ * 收入项目 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyIncomeProjectMapper extends BaseMapper+ * 票据管理 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyNoteManageMapper extends BaseMapper+ * 支出明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutDetailMapper extends BaseMapper+ * 支出项目 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyOutProjectMapper extends BaseMapper+ * 图纸管理 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPictureManageMapper extends BaseMapper+ * 物业接管工程明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverDetailMapper extends BaseMapper+ * 物业接管概要 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyPropertyTakeoverSchemaMapper extends BaseMapper+ * 续费短信提醒日志 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyRenewMsgRemindLogMapper extends BaseMapper+ * 保安安排 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WySecurityArrangeMapper extends BaseMapper+ * 客服收银组 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyServiceCashierGroupMapper extends BaseMapper+ * 物业接管资料明细 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyTakeoverDataDetailMapper extends BaseMapper+ * 植被信息 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVegetationInformationMapper extends BaseMapper+ * 来访管理 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface WyVisitManageMapper extends BaseMapper+ * 业主装修 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConstomerDecorateMapper extends BaseMapper+ * 业主投诉 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhConsumerComplainMapper extends BaseMapper+ * 业主服务_办理结果 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleResultMapper extends BaseMapper+ * 业主服务_办理进度 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCsHandleSpeedMapper extends BaseMapper+ * 业主请修 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerAskFixMapper extends BaseMapper+ * 业主验房 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerCheckMapper extends BaseMapper+ * 业主房产对照表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerEstateMapper extends BaseMapper+ * 业主信息表 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerMapper extends BaseMapper+ * 业主成员 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerMembersMapper extends BaseMapper+ * 业主服务 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceMapper extends BaseMapper+ * 业主服务类型 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhCustomerServiceTypeMapper extends BaseMapper+ * 租赁合同房间 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractCellMapper extends BaseMapper+ * 租赁合同变更 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractChangeMapper extends BaseMapper+ * 租赁合同 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractMapper extends BaseMapper+ * 租赁合同退款 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractRefundMapper extends BaseMapper+ * 租赁合同返利 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentContractReturnMapper extends BaseMapper+ * 租户信息 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentInformationMapper extends BaseMapper+ * 租金收取 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentReceiveMapper extends BaseMapper+ * 租赁分租信息 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentShareMapper extends BaseMapper+ * 租户转兑 Mapper 接口 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface ZhRentTransferMapper extends BaseMapper+ * 楼宇信息表 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcBuildingService extends IService+ * 房间加建信息 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellAddbuildService extends IService+ * 房间信息表 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcCellService extends IService+ * 楼盘信息 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcEstateService extends IService+ * 单元信息表 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FcUnitService extends IService+ * 房产信息临时表 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyEstateTemporaryService extends IService+ * 历史费用临时表 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyHistoryMoneyTempService extends IService+ * 作废单主单 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidMainService extends IService+ * 作废单子单 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyInvalidSubService extends IService+ * 费项设置 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneySettingService extends IService+ * 费用临时表1 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary01Service extends IService+ * 费用临时表2 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary02Service extends IService+ * 费用临时表3 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary03Service extends IService+ * 费用临时表4 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyMoneyTemporary04Service extends IService+ * 预收款管理 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPreReceiveService extends IService+ * 物业费分布 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPropertyMoneyDistService extends IService+ * 公表信息 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxService extends IService+ * 公表关联用户 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyPublicBoxUserService extends IService+ * 收款单主单 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptMainService extends IService+ * 收款单子单 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyReceiptSubService extends IService+ * 退款单主单 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundMainService extends IService+ * 退款单子单 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyRefundSubService extends IService+ * 销售合同 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FySaleContractService extends IService+ * 公摊费用台账公表明细 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookDetailService extends IService+ * 公摊费用台账概要 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareStandingBookService extends IService+ * 公摊费用台账用户明细 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyShareUserDetailService extends IService+ * 费用台账明细 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookDetailService extends IService+ * 费用台账概要 服务类 + *
+ * + * @author lian + * @since 2020-04-18 + */ +public interface FyStandingBookService extends IService