Commit a6034e9e by wenyang

新增【CFFP课件培训】模块,并通过权限精细化配置

parent 03cda351
...@@ -5868,6 +5868,7 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service. ...@@ -5868,6 +5868,7 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
AclPractitioner practitioner = aclPractitionerDALService.findPractitionerById(practitionerId); AclPractitioner practitioner = aclPractitionerDALService.findPractitionerById(practitionerId);
if (practitioner != null) { if (practitioner != null) {
resp.setCanSeeYdCollege(practitioner.getCanSeeYdCollege()); resp.setCanSeeYdCollege(practitioner.getCanSeeYdCollege());
resp.setCffpRoleCode(practitioner.getCffpRoleCode());
} }
return resp; return resp;
} }
......
...@@ -7,4 +7,5 @@ import lombok.Data; ...@@ -7,4 +7,5 @@ import lombok.Data;
public class QueryCanSeeResponseVO { public class QueryCanSeeResponseVO {
private CommonResult commonResult; private CommonResult commonResult;
private String canSeeYdCollege; private String canSeeYdCollege;
private String cffpRoleCode;
} }
...@@ -253,6 +253,11 @@ public class AclPractitioner { ...@@ -253,6 +253,11 @@ public class AclPractitioner {
private String canSeeYdCollege; private String canSeeYdCollege;
/** /**
* cffp角色代码,通过,分割
*/
private String cffpRoleCode;
/**
* 详细地址 * 详细地址
*/ */
private String detailAddress; private String detailAddress;
......
...@@ -52,6 +52,7 @@ ...@@ -52,6 +52,7 @@
<result column="can_login_dyd" jdbcType="BIGINT" property="canLoginDyd" /> <result column="can_login_dyd" jdbcType="BIGINT" property="canLoginDyd" />
<result column="can_see_salary_list" jdbcType="BIGINT" property="canSeeSalaryList" /> <result column="can_see_salary_list" jdbcType="BIGINT" property="canSeeSalaryList" />
<result column="can_see_yd_college" jdbcType="VARCHAR" property="canSeeYdCollege" /> <result column="can_see_yd_college" jdbcType="VARCHAR" property="canSeeYdCollege" />
<result column="cffp_role_code" jdbcType="VARCHAR" property="cffpRoleCode" />
<result column="raise_id" jdbcType="BIGINT" property="raiseId" /> <result column="raise_id" jdbcType="BIGINT" property="raiseId" />
<result column="s1_id" jdbcType="BIGINT" property="s1Id" /> <result column="s1_id" jdbcType="BIGINT" property="s1Id" />
...@@ -69,7 +70,7 @@ ...@@ -69,7 +70,7 @@
province_id, province_name, city_id, city_name, cert_list, bio_intro, bio_intro_two, wechat_id, province_id, province_name, city_id, city_name, cert_list, bio_intro, bio_intro_two, wechat_id,
qq_id, is_profile_show, is_name_show, is_mobile_show, education_level, graduated_university, qq_id, is_profile_show, is_name_show, is_mobile_show, education_level, graduated_university,
mentor_id,in_mentor_id, introducer_id, gender, contract_oss_path, hiring_basic_info_id, can_login_dyd, mentor_id,in_mentor_id, introducer_id, gender, contract_oss_path, hiring_basic_info_id, can_login_dyd,
can_see_salary_list,can_see_yd_college,raise_id,s1_id,s2_id,s3_id,email,email_is_active can_see_salary_list,can_see_yd_college,cffp_role_code,raise_id,s1_id,s2_id,s3_id,email,email_is_active
</sql> </sql>
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
<!--@mbg.generated--> <!--@mbg.generated-->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment