| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ycl.system.domain.base.AbsEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | |
| | | @TableField("remark") |
| | | /** 审核信息 */ |
| | | private String remark; |
| | | @TableField("industry_competent_department") |
| | | private Long industryCompetentDepartment; |
| | | @TableField("industry_competent_department_person") |
| | | private Long industryCompetentDepartmentPerson; |
| | | @TableField("department_person_phone") |
| | | private String departmentPersonPhone; |
| | | } |
| | |
| | | @ApiModelProperty("赋码") |
| | | private String coding; |
| | | |
| | | @ApiModelProperty("行业主管部门") |
| | | private Long industryCompetentDepartment; |
| | | @ApiModelProperty("行业主管部门联系人") |
| | | private Long industryCompetentDepartmentPerson; |
| | | @ApiModelProperty("行业主管部门联系方式") |
| | | private String departmentPersonPhone; |
| | | |
| | | private String remark; |
| | | public static ProjectInfo getEntityByForm(@NonNull ProjectInfoForm form, ProjectInfo entity) { |
| | | if(entity == null) { |
| | |
| | | |
| | | @ApiModelProperty("文件") |
| | | private List<File> fileList; |
| | | |
| | | @ApiModelProperty("行业主管部门") |
| | | private Long industryCompetentDepartment; |
| | | @ApiModelProperty("行业主管部门联系人") |
| | | private Long industryCompetentDepartmentPerson; |
| | | @ApiModelProperty("行业主管部门联系方式") |
| | | private String departmentPersonPhone; |
| | | |
| | | private Integer usedStatus; |
| | | private String remark; |
| | | private Long processId; |
| | |
| | | TPI.update_by, |
| | | TPI.create_by, |
| | | TPI.remark, |
| | | TPI.id |
| | | TPI.id, |
| | | TPI.industry_competent_department, |
| | | TPI.industry_competent_department_person, |
| | | TPI.department_person_phone |
| | | FROM |
| | | t_project_info TPI |
| | | WHERE |
| | |
| | | public AjaxResult flowDeptTree(SysDept dept) { |
| | | return success(deptService.flowDeptTree(dept)); |
| | | } |
| | | |
| | | @GetMapping("/getByDept/{deptId}") |
| | | public AjaxResult getByDept(@PathVariable Long deptId) { |
| | | return success(userService.getByDept(deptId)); |
| | | } |
| | | } |
| | |
| | | * @return 结果 |
| | | */ |
| | | public SysUser checkEmailUnique(String email); |
| | | |
| | | List<SysUser> getByDept(Long deptId); |
| | | |
| | | } |
| | |
| | | * @return 结果 |
| | | */ |
| | | public String importUser(List<SysUser> userList, Boolean isUpdateSupport, String operName); |
| | | |
| | | List<SysUser> getByDept(Long deptId); |
| | | } |
| | |
| | | }).collect(Collectors.toList()); |
| | | return list; |
| | | } |
| | | |
| | | |
| | | } |
| | |
| | | } |
| | | return successMsg.toString(); |
| | | } |
| | | |
| | | @Override |
| | | public List<SysUser> getByDept(Long deptId) { |
| | | return userMapper.getByDept(deptId); |
| | | } |
| | | } |
| | |
| | | </foreach> |
| | | </delete> |
| | | |
| | | <select id="getByDept" resultMap="SysUserResult"> |
| | | select * from sys_user where dept_id = #{deptId} |
| | | </select> |
| | | </mapper> |