forked from luyan/epmet-cloud-lingshan
				
			
				 10 changed files with 635 additions and 0 deletions
			
			
		| @ -0,0 +1,119 @@ | |||
| package com.epmet.dto.result; | |||
| 
 | |||
| import java.io.Serializable; | |||
| import java.util.Date; | |||
| import lombok.Data; | |||
| 
 | |||
| 
 | |||
| /** | |||
|  * 工作日志(服务)-记录 | |||
|  * | |||
|  * @author generator generator@elink-cn.com | |||
|  * @since v1.0.0 2022-08-23 | |||
|  */ | |||
| @Data | |||
| public class WorkdiaryServiceRecordDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = 1L; | |||
| 
 | |||
|     /** | |||
|      * 主键 | |||
|      */ | |||
| 	private String id; | |||
| 
 | |||
|     /** | |||
|      * 客户id | |||
|      */ | |||
| 	private String customerId; | |||
| 
 | |||
|     /** | |||
|      * 服务类型 | |||
|      */ | |||
| 	private String serviceType; | |||
| 
 | |||
|     /** | |||
|      * 单位ID | |||
|      */ | |||
| 	private String agencyId; | |||
| 
 | |||
|     /** | |||
|      * 网格ID | |||
|      */ | |||
| 	private String gridId; | |||
| 
 | |||
|     /** | |||
|      * 组织ID path | |||
|      */ | |||
| 	private String orgIdPath; | |||
| 
 | |||
|     /** | |||
|      * 申请人ID | |||
|      */ | |||
| 	private String applicantId; | |||
| 
 | |||
|     /** | |||
|      * 申请人姓名 | |||
|      */ | |||
| 	private String applicantName; | |||
| 
 | |||
|     /** | |||
|      * 申请人住址 | |||
|      */ | |||
| 	private String applicantAddress; | |||
| 
 | |||
|     /** | |||
|      * 申请人联系电话 | |||
|      */ | |||
| 	private String applicantMobile; | |||
| 
 | |||
|     /** | |||
|      * 服务内容 | |||
|      */ | |||
| 	private String serviceContent; | |||
| 
 | |||
|     /** | |||
|      * 服务时间 | |||
|      */ | |||
| 	private Date serviceTime; | |||
| 
 | |||
|     /** | |||
|      * 负责人姓名 | |||
|      */ | |||
| 	private String principalName; | |||
| 
 | |||
|     /** | |||
|      * 备注 | |||
|      */ | |||
| 	private String remark; | |||
| 
 | |||
|     /** | |||
|      * 删除标识 0.未删除 1.已删除 | |||
|      */ | |||
| 	private Integer delFlag; | |||
| 
 | |||
|     /** | |||
|      * 乐观锁 | |||
|      */ | |||
| 	private Integer revision; | |||
| 
 | |||
|     /** | |||
|      * 创建人 | |||
|      */ | |||
| 	private String createdBy; | |||
| 
 | |||
|     /** | |||
|      * 创建时间 | |||
|      */ | |||
| 	private Date createdTime; | |||
| 
 | |||
|     /** | |||
|      * 更新人 | |||
|      */ | |||
| 	private String updatedBy; | |||
| 
 | |||
|     /** | |||
|      * 更新时间 | |||
|      */ | |||
| 	private Date updatedTime; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,82 @@ | |||
| package com.epmet.controller; | |||
| 
 | |||
| import com.epmet.commons.tools.aop.NoRepeatSubmit; | |||
| import com.epmet.commons.tools.page.PageData; | |||
| import com.epmet.commons.tools.utils.ExcelUtils; | |||
| import com.epmet.commons.tools.utils.Result; | |||
| import com.epmet.commons.tools.validator.AssertUtils; | |||
| import com.epmet.commons.tools.validator.ValidatorUtils; | |||
| import com.epmet.commons.tools.validator.group.AddGroup; | |||
| import com.epmet.commons.tools.validator.group.UpdateGroup; | |||
| import com.epmet.commons.tools.validator.group.DefaultGroup; | |||
| import com.epmet.dto.result.WorkdiaryServiceRecordDTO; | |||
| import com.epmet.excel.WorkdiaryServiceRecordExcel; | |||
| import com.epmet.service.WorkdiaryServiceRecordService; | |||
| import org.springframework.beans.factory.annotation.Autowired; | |||
| import org.springframework.web.bind.annotation.*; | |||
| 
 | |||
| import javax.servlet.http.HttpServletResponse; | |||
| import java.util.List; | |||
| import java.util.Map; | |||
| 
 | |||
| 
 | |||
| /** | |||
|  * 工作日志(服务)-记录 | |||
|  * | |||
|  * @author generator generator@elink-cn.com | |||
|  * @since v1.0.0 2022-08-23 | |||
|  */ | |||
| @RestController | |||
| @RequestMapping("workdiaryServiceRecord") | |||
| public class WorkdiaryServiceRecordController { | |||
| 
 | |||
|     @Autowired | |||
|     private WorkdiaryServiceRecordService workdiaryServiceRecordService; | |||
| 
 | |||
|     @RequestMapping("page") | |||
|     public Result<PageData<WorkdiaryServiceRecordDTO>> page(@RequestParam Map<String, Object> params){ | |||
|         PageData<WorkdiaryServiceRecordDTO> page = workdiaryServiceRecordService.page(params); | |||
|         return new Result<PageData<WorkdiaryServiceRecordDTO>>().ok(page); | |||
|     } | |||
| 
 | |||
|     @RequestMapping(value = "{id}",method = {RequestMethod.POST,RequestMethod.GET}) | |||
|     public Result<WorkdiaryServiceRecordDTO> get(@PathVariable("id") String id){ | |||
|         WorkdiaryServiceRecordDTO data = workdiaryServiceRecordService.get(id); | |||
|         return new Result<WorkdiaryServiceRecordDTO>().ok(data); | |||
|     } | |||
| 
 | |||
|     @NoRepeatSubmit | |||
|     @PostMapping("save") | |||
|     public Result save(@RequestBody WorkdiaryServiceRecordDTO dto){ | |||
|         //效验数据
 | |||
|         ValidatorUtils.validateEntity(dto, AddGroup.class, DefaultGroup.class); | |||
|         workdiaryServiceRecordService.save(dto); | |||
|         return new Result(); | |||
|     } | |||
| 
 | |||
|     @NoRepeatSubmit | |||
|     @PostMapping("update") | |||
|     public Result update(@RequestBody WorkdiaryServiceRecordDTO dto){ | |||
|         //效验数据
 | |||
|         ValidatorUtils.validateEntity(dto, UpdateGroup.class, DefaultGroup.class); | |||
|         workdiaryServiceRecordService.update(dto); | |||
|         return new Result(); | |||
|     } | |||
| 
 | |||
|     @PostMapping("delete") | |||
|     public Result delete(@RequestBody String[] ids){ | |||
|         //效验数据
 | |||
|         AssertUtils.isArrayEmpty(ids, "id"); | |||
|         workdiaryServiceRecordService.delete(ids); | |||
|         return new Result(); | |||
|     } | |||
| 
 | |||
|     @GetMapping("export") | |||
|     public void export(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception { | |||
|         List<WorkdiaryServiceRecordDTO> list = workdiaryServiceRecordService.list(params); | |||
|         ExcelUtils.exportExcelToTarget(response, null, list, WorkdiaryServiceRecordExcel.class); | |||
|     } | |||
| 
 | |||
| 
 | |||
| 
 | |||
| } | |||
| @ -0,0 +1,16 @@ | |||
| package com.epmet.dao; | |||
| 
 | |||
| import com.epmet.commons.mybatis.dao.BaseDao; | |||
| import com.epmet.entity.WorkdiaryServiceRecordEntity; | |||
| import org.apache.ibatis.annotations.Mapper; | |||
| 
 | |||
| /** | |||
|  * 工作日志(服务)-记录 | |||
|  * | |||
|  * @author generator generator@elink-cn.com | |||
|  * @since v1.0.0 2022-08-23 | |||
|  */ | |||
| @Mapper | |||
| public interface WorkdiaryServiceRecordDao extends BaseDao<WorkdiaryServiceRecordEntity> { | |||
| 	 | |||
| } | |||
| @ -0,0 +1,89 @@ | |||
| package com.epmet.entity; | |||
| 
 | |||
| import com.baomidou.mybatisplus.annotation.TableName; | |||
| 
 | |||
| import com.epmet.commons.mybatis.entity.BaseEpmetEntity; | |||
| import lombok.Data; | |||
| import lombok.EqualsAndHashCode; | |||
| 
 | |||
| import java.util.Date; | |||
| 
 | |||
| /** | |||
|  * 工作日志(服务)-记录 | |||
|  * | |||
|  * @author generator generator@elink-cn.com | |||
|  * @since v1.0.0 2022-08-23 | |||
|  */ | |||
| @Data | |||
| @EqualsAndHashCode(callSuper=false) | |||
| @TableName("workdiary_service_record") | |||
| public class WorkdiaryServiceRecordEntity extends BaseEpmetEntity { | |||
| 
 | |||
| 	private static final long serialVersionUID = 1L; | |||
| 
 | |||
|     /** | |||
|      * 客户id | |||
|      */ | |||
| 	private String customerId; | |||
| 
 | |||
|     /** | |||
|      * 服务类型 | |||
|      */ | |||
| 	private String serviceType; | |||
| 
 | |||
|     /** | |||
|      * 单位ID | |||
|      */ | |||
| 	private String agencyId; | |||
| 
 | |||
|     /** | |||
|      * 网格ID | |||
|      */ | |||
| 	private String gridId; | |||
| 
 | |||
|     /** | |||
|      * 组织ID path | |||
|      */ | |||
| 	private String orgIdPath; | |||
| 
 | |||
|     /** | |||
|      * 申请人ID | |||
|      */ | |||
| 	private String applicantId; | |||
| 
 | |||
|     /** | |||
|      * 申请人姓名 | |||
|      */ | |||
| 	private String applicantName; | |||
| 
 | |||
|     /** | |||
|      * 申请人住址 | |||
|      */ | |||
| 	private String applicantAddress; | |||
| 
 | |||
|     /** | |||
|      * 申请人联系电话 | |||
|      */ | |||
| 	private String applicantMobile; | |||
| 
 | |||
|     /** | |||
|      * 服务内容 | |||
|      */ | |||
| 	private String serviceContent; | |||
| 
 | |||
|     /** | |||
|      * 服务时间 | |||
|      */ | |||
| 	private Date serviceTime; | |||
| 
 | |||
|     /** | |||
|      * 负责人姓名 | |||
|      */ | |||
| 	private String principalName; | |||
| 
 | |||
|     /** | |||
|      * 备注 | |||
|      */ | |||
| 	private String remark; | |||
| 
 | |||
| } | |||
| @ -0,0 +1,78 @@ | |||
| package com.epmet.excel; | |||
| 
 | |||
| import cn.afterturn.easypoi.excel.annotation.Excel; | |||
| import lombok.Data; | |||
| 
 | |||
| import java.util.Date; | |||
| 
 | |||
| /** | |||
|  * 工作日志(服务)-记录 | |||
|  * | |||
|  * @author generator generator@elink-cn.com | |||
|  * @since v1.0.0 2022-08-23 | |||
|  */ | |||
| @Data | |||
| public class WorkdiaryServiceRecordExcel { | |||
| 
 | |||
|     @Excel(name = "主键") | |||
|     private String id; | |||
| 
 | |||
|     @Excel(name = "客户id") | |||
|     private String customerId; | |||
| 
 | |||
|     @Excel(name = "服务类型") | |||
|     private String serviceType; | |||
| 
 | |||
|     @Excel(name = "单位ID") | |||
|     private String agencyId; | |||
| 
 | |||
|     @Excel(name = "网格ID") | |||
|     private String gridId; | |||
| 
 | |||
|     @Excel(name = "组织ID path") | |||
|     private String orgIdPath; | |||
| 
 | |||
|     @Excel(name = "申请人ID") | |||
|     private String applicantId; | |||
| 
 | |||
|     @Excel(name = "申请人姓名") | |||
|     private String applicantName; | |||
| 
 | |||
|     @Excel(name = "申请人住址") | |||
|     private String applicantAddress; | |||
| 
 | |||
|     @Excel(name = "申请人联系电话") | |||
|     private String applicantMobile; | |||
| 
 | |||
|     @Excel(name = "服务内容") | |||
|     private String serviceContent; | |||
| 
 | |||
|     @Excel(name = "服务时间") | |||
|     private Date serviceTime; | |||
| 
 | |||
|     @Excel(name = "负责人姓名") | |||
|     private String principalName; | |||
| 
 | |||
|     @Excel(name = "备注") | |||
|     private String remark; | |||
| 
 | |||
|     @Excel(name = "删除标识 0.未删除 1.已删除") | |||
|     private Integer delFlag; | |||
| 
 | |||
|     @Excel(name = "乐观锁") | |||
|     private Integer revision; | |||
| 
 | |||
|     @Excel(name = "创建人") | |||
|     private String createdBy; | |||
| 
 | |||
|     @Excel(name = "创建时间") | |||
|     private Date createdTime; | |||
| 
 | |||
|     @Excel(name = "更新人") | |||
|     private String updatedBy; | |||
| 
 | |||
|     @Excel(name = "更新时间") | |||
|     private Date updatedTime; | |||
| 
 | |||
| 
 | |||
| } | |||
| @ -0,0 +1,30 @@ | |||
| package com.epmet.redis; | |||
| 
 | |||
| import com.epmet.commons.tools.redis.RedisUtils; | |||
| import org.springframework.beans.factory.annotation.Autowired; | |||
| import org.springframework.stereotype.Component; | |||
| 
 | |||
| /** | |||
|  * 工作日志(服务)-记录 | |||
|  * | |||
|  * @author generator generator@elink-cn.com | |||
|  * @since v1.0.0 2022-08-23 | |||
|  */ | |||
| @Component | |||
| public class WorkdiaryServiceRecordRedis { | |||
|     @Autowired | |||
|     private RedisUtils redisUtils; | |||
| 
 | |||
|     public void delete(Object[] ids) { | |||
| 
 | |||
|     } | |||
| 
 | |||
|     public void set(){ | |||
| 
 | |||
|     } | |||
| 
 | |||
|     public String get(String id){ | |||
|         return null; | |||
|     } | |||
| 
 | |||
| } | |||
| @ -0,0 +1,78 @@ | |||
| package com.epmet.service; | |||
| 
 | |||
| import com.epmet.commons.mybatis.service.BaseService; | |||
| import com.epmet.commons.tools.page.PageData; | |||
| import com.epmet.dto.result.WorkdiaryServiceRecordDTO; | |||
| import com.epmet.entity.WorkdiaryServiceRecordEntity; | |||
| 
 | |||
| import java.util.List; | |||
| import java.util.Map; | |||
| 
 | |||
| /** | |||
|  * 工作日志(服务)-记录 | |||
|  * | |||
|  * @author generator generator@elink-cn.com | |||
|  * @since v1.0.0 2022-08-23 | |||
|  */ | |||
| public interface WorkdiaryServiceRecordService extends BaseService<WorkdiaryServiceRecordEntity> { | |||
| 
 | |||
|     /** | |||
|      * 默认分页 | |||
|      * | |||
|      * @param params | |||
|      * @return PageData<WorkdiaryServiceRecordDTO> | |||
|      * @author generator | |||
|      * @date 2022-08-23 | |||
|      */ | |||
|     PageData<WorkdiaryServiceRecordDTO> page(Map<String, Object> params); | |||
| 
 | |||
|     /** | |||
|      * 默认查询 | |||
|      * | |||
|      * @param params | |||
|      * @return java.util.List<WorkdiaryServiceRecordDTO> | |||
|      * @author generator | |||
|      * @date 2022-08-23 | |||
|      */ | |||
|     List<WorkdiaryServiceRecordDTO> list(Map<String, Object> params); | |||
| 
 | |||
|     /** | |||
|      * 单条查询 | |||
|      * | |||
|      * @param id | |||
|      * @return WorkdiaryServiceRecordDTO | |||
|      * @author generator | |||
|      * @date 2022-08-23 | |||
|      */ | |||
|     WorkdiaryServiceRecordDTO get(String id); | |||
| 
 | |||
|     /** | |||
|      * 默认保存 | |||
|      * | |||
|      * @param dto | |||
|      * @return void | |||
|      * @author generator | |||
|      * @date 2022-08-23 | |||
|      */ | |||
|     void save(WorkdiaryServiceRecordDTO dto); | |||
| 
 | |||
|     /** | |||
|      * 默认更新 | |||
|      * | |||
|      * @param dto | |||
|      * @return void | |||
|      * @author generator | |||
|      * @date 2022-08-23 | |||
|      */ | |||
|     void update(WorkdiaryServiceRecordDTO dto); | |||
| 
 | |||
|     /** | |||
|      * 批量删除 | |||
|      * | |||
|      * @param ids | |||
|      * @return void | |||
|      * @author generator | |||
|      * @date 2022-08-23 | |||
|      */ | |||
|     void delete(String[] ids); | |||
| } | |||
| @ -0,0 +1,87 @@ | |||
| package com.epmet.service.impl; | |||
| 
 | |||
| import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; | |||
| import com.baomidou.mybatisplus.core.metadata.IPage; | |||
| import com.epmet.commons.mybatis.service.impl.BaseServiceImpl; | |||
| import com.epmet.commons.tools.page.PageData; | |||
| import com.epmet.commons.tools.utils.ConvertUtils; | |||
| import com.epmet.commons.tools.constant.FieldConstant; | |||
| import com.epmet.dao.WorkdiaryServiceRecordDao; | |||
| import com.epmet.dto.result.WorkdiaryServiceRecordDTO; | |||
| import com.epmet.entity.WorkdiaryServiceRecordEntity; | |||
| import com.epmet.redis.WorkdiaryServiceRecordRedis; | |||
| import com.epmet.service.WorkdiaryServiceRecordService; | |||
| import org.apache.commons.lang3.StringUtils; | |||
| import org.springframework.beans.factory.annotation.Autowired; | |||
| import org.springframework.stereotype.Service; | |||
| import org.springframework.transaction.annotation.Transactional; | |||
| 
 | |||
| import java.util.Arrays; | |||
| import java.util.List; | |||
| import java.util.Map; | |||
| 
 | |||
| /** | |||
|  * 工作日志(服务)-记录 | |||
|  * | |||
|  * @author generator generator@elink-cn.com | |||
|  * @since v1.0.0 2022-08-23 | |||
|  */ | |||
| @Service | |||
| public class WorkdiaryServiceRecordServiceImpl extends BaseServiceImpl<WorkdiaryServiceRecordDao, WorkdiaryServiceRecordEntity> implements WorkdiaryServiceRecordService { | |||
| 
 | |||
|     @Autowired | |||
|     private WorkdiaryServiceRecordRedis workdiaryServiceRecordRedis; | |||
| 
 | |||
|     @Override | |||
|     public PageData<WorkdiaryServiceRecordDTO> page(Map<String, Object> params) { | |||
|         IPage<WorkdiaryServiceRecordEntity> page = baseDao.selectPage( | |||
|                 getPage(params, FieldConstant.CREATED_TIME, false), | |||
|                 getWrapper(params) | |||
|         ); | |||
|         return getPageData(page, WorkdiaryServiceRecordDTO.class); | |||
|     } | |||
| 
 | |||
|     @Override | |||
|     public List<WorkdiaryServiceRecordDTO> list(Map<String, Object> params) { | |||
|         List<WorkdiaryServiceRecordEntity> entityList = baseDao.selectList(getWrapper(params)); | |||
| 
 | |||
|         return ConvertUtils.sourceToTarget(entityList, WorkdiaryServiceRecordDTO.class); | |||
|     } | |||
| 
 | |||
|     private QueryWrapper<WorkdiaryServiceRecordEntity> getWrapper(Map<String, Object> params){ | |||
|         String id = (String)params.get(FieldConstant.ID_HUMP); | |||
| 
 | |||
|         QueryWrapper<WorkdiaryServiceRecordEntity> wrapper = new QueryWrapper<>(); | |||
|         wrapper.eq(StringUtils.isNotBlank(id), FieldConstant.ID, id); | |||
| 
 | |||
|         return wrapper; | |||
|     } | |||
| 
 | |||
|     @Override | |||
|     public WorkdiaryServiceRecordDTO get(String id) { | |||
|         WorkdiaryServiceRecordEntity entity = baseDao.selectById(id); | |||
|         return ConvertUtils.sourceToTarget(entity, WorkdiaryServiceRecordDTO.class); | |||
|     } | |||
| 
 | |||
|     @Override | |||
|     @Transactional(rollbackFor = Exception.class) | |||
|     public void save(WorkdiaryServiceRecordDTO dto) { | |||
|         WorkdiaryServiceRecordEntity entity = ConvertUtils.sourceToTarget(dto, WorkdiaryServiceRecordEntity.class); | |||
|         insert(entity); | |||
|     } | |||
| 
 | |||
|     @Override | |||
|     @Transactional(rollbackFor = Exception.class) | |||
|     public void update(WorkdiaryServiceRecordDTO dto) { | |||
|         WorkdiaryServiceRecordEntity entity = ConvertUtils.sourceToTarget(dto, WorkdiaryServiceRecordEntity.class); | |||
|         updateById(entity); | |||
|     } | |||
| 
 | |||
|     @Override | |||
|     @Transactional(rollbackFor = Exception.class) | |||
|     public void delete(String[] ids) { | |||
|         // 逻辑删除(@TableLogic 注解)
 | |||
|         baseDao.deleteBatchIds(Arrays.asList(ids)); | |||
|     } | |||
| 
 | |||
| } | |||
| @ -0,0 +1,26 @@ | |||
| # 服务记录表 | |||
| CREATE TABLE `workdiary_service_record` | |||
| ( | |||
|     `ID`           varchar(64) NOT NULL COMMENT '主键', | |||
|     `CUSTOMER_ID`  varchar(64) NOT NULL COMMENT '客户id', | |||
|     `SERVICE_TYPE` varchar(32) NOT NULL COMMENT '服务类型', | |||
|     `AGENCY_ID` varchar(32) NOT NULL COMMENT '单位ID', | |||
|     `GRID_ID` varchar(32) NOT NULL COMMENT '网格ID', | |||
|     `ORG_ID_PATH` varchar(255) NOT NULL COMMENT '组织ID path', | |||
|     `APPLICANT_ID` varchar(32) NOT NULL COMMENT '申请人ID', | |||
|     `APPLICANT_NAME` varchar(32) NOT NULL COMMENT '申请人姓名', | |||
|     `APPLICANT_ADDRESS` varchar(32) NOT NULL COMMENT '申请人住址', | |||
|     `APPLICANT_MOBILE` varchar(20) NOT NULL COMMENT '申请人联系电话', | |||
|     `SERVICE_CONTENT` varchar(255) NOT NULL COMMENT '服务内容', | |||
|     `SERVICE_TIME` datetime NOT NULL COMMENT '服务时间', | |||
|     `PRINCIPAL_NAME` varchar(10) NOT NULL COMMENT '负责人姓名', | |||
|     `REMARK` varchar(255) NOT NULL COMMENT '备注', | |||
|     `DEL_FLAG`     int(11)     NOT NULL DEFAULT '0' COMMENT '删除标识 0.未删除 1.已删除', | |||
|     `REVISION`     int(11)     NOT NULL COMMENT '乐观锁', | |||
|     `CREATED_BY`   varchar(64) NOT NULL COMMENT '创建人', | |||
|     `CREATED_TIME` datetime    NOT NULL COMMENT '创建时间', | |||
|     `UPDATED_BY`   varchar(64) NOT NULL COMMENT '更新人', | |||
|     `UPDATED_TIME` datetime    NOT NULL COMMENT '更新时间', | |||
|     PRIMARY KEY (`ID`) | |||
| ) ENGINE = InnoDB | |||
|   DEFAULT CHARSET = utf8mb4 COMMENT ='工作日志(服务)-记录' | |||
| @ -0,0 +1,30 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | |||
| 
 | |||
| <mapper namespace="com.epmet.dao.WorkdiaryServiceRecordDao"> | |||
| 
 | |||
|     <resultMap type="com.epmet.entity.WorkdiaryServiceRecordEntity" id="workdiaryServiceRecordMap"> | |||
|         <result property="id" column="ID"/> | |||
|         <result property="customerId" column="CUSTOMER_ID"/> | |||
|         <result property="serviceType" column="SERVICE_TYPE"/> | |||
|         <result property="agencyId" column="AGENCY_ID"/> | |||
|         <result property="gridId" column="GRID_ID"/> | |||
|         <result property="orgIdPath" column="ORG_ID_PATH"/> | |||
|         <result property="applicantId" column="APPLICANT_ID"/> | |||
|         <result property="applicantName" column="APPLICANT_NAME"/> | |||
|         <result property="applicantAddress" column="APPLICANT_ADDRESS"/> | |||
|         <result property="applicantMobile" column="APPLICANT_MOBILE"/> | |||
|         <result property="serviceContent" column="SERVICE_CONTENT"/> | |||
|         <result property="serviceTime" column="SERVICE_TIME"/> | |||
|         <result property="principalName" column="PRINCIPAL_NAME"/> | |||
|         <result property="remark" column="REMARK"/> | |||
|         <result property="delFlag" column="DEL_FLAG"/> | |||
|         <result property="revision" column="REVISION"/> | |||
|         <result property="createdBy" column="CREATED_BY"/> | |||
|         <result property="createdTime" column="CREATED_TIME"/> | |||
|         <result property="updatedBy" column="UPDATED_BY"/> | |||
|         <result property="updatedTime" column="UPDATED_TIME"/> | |||
|     </resultMap> | |||
| 
 | |||
| 
 | |||
| </mapper> | |||
					Loading…
					
					
				
		Reference in new issue