@@ -56,7 +56,7 @@ public class GeneratorCodeKingbaseConfig { | |||||
} | } | ||||
public static void main(String[] args) { | public static void main(String[] args) { | ||||
generate("WendyYang", "projectlib", PATH_YYD, "nd_project_renewal_fund_declaration"); | |||||
generate("Liuxinxin", "expert", PATH_LXX, "nd_expert_user_full_info"); | |||||
} | } | ||||
} | } |
@@ -0,0 +1,20 @@ | |||||
package com.ningdatech.pmapi.expert.controller; | |||||
import org.springframework.web.bind.annotation.RequestMapping; | |||||
import org.springframework.stereotype.Controller; | |||||
/** | |||||
* <p> | |||||
* 前端控制器 | |||||
* </p> | |||||
* | |||||
* @author Liuxinxin | |||||
* @since 2023-02-22 | |||||
*/ | |||||
@Controller | |||||
@RequestMapping("/pmapi.expert/nd-expert-user-full-info") | |||||
public class ExpertUserFullInfoController { | |||||
} |
@@ -0,0 +1,105 @@ | |||||
package com.ningdatech.pmapi.expert.entity; | |||||
import com.baomidou.mybatisplus.annotation.TableName; | |||||
import java.io.Serializable; | |||||
import java.time.LocalDateTime; | |||||
import io.swagger.annotations.ApiModel; | |||||
import io.swagger.annotations.ApiModelProperty; | |||||
import lombok.Data; | |||||
/** | |||||
* <p> | |||||
* | |||||
* </p> | |||||
* | |||||
* @author Liuxinxin | |||||
* @since 2023-02-22 | |||||
*/ | |||||
@TableName("nd_expert_user_full_info") | |||||
@Data | |||||
@ApiModel(value = "NdExpertUserFullInfo对象", description = "") | |||||
public class ExpertUserFullInfo implements Serializable { | |||||
private static final long serialVersionUID = 1L; | |||||
private Long id; | |||||
private LocalDateTime createOn; | |||||
private LocalDateTime updateOn; | |||||
private Long userId; | |||||
private String expertAccountStatus; | |||||
private String isDingUser; | |||||
private String userInfoStep; | |||||
private String phoneNo; | |||||
private String gender; | |||||
private String expertName; | |||||
private String avatarFileId; | |||||
private String idCard; | |||||
private String officePhone; | |||||
private String bankNo; | |||||
private String bank; | |||||
private String email; | |||||
private String school; | |||||
private LocalDateTime graduatedAt; | |||||
private String academicTitle; | |||||
private String graduationCertificateFileIdList; | |||||
private String degreeCertificateFileIdList; | |||||
private LocalDateTime retiredAt; | |||||
private String company; | |||||
private String legalEntityCode; | |||||
private String administrativeDuties; | |||||
private String startWorkAt; | |||||
private String address; | |||||
private String experience; | |||||
private String technicalTitles; | |||||
private String titleCertificateFileIdList; | |||||
private String awards; | |||||
private String recognitionReward; | |||||
private String recommendationProofFileIdList; | |||||
private String regionCode; | |||||
private String regionLevel; | |||||
private String recommendedWay; | |||||
private String remark; | |||||
private String hometown; | |||||
private String nationality; | |||||
private LocalDateTime birth; | |||||
} |
@@ -0,0 +1,16 @@ | |||||
package com.ningdatech.pmapi.expert.mapper; | |||||
import com.ningdatech.pmapi.expert.entity.ExpertUserFullInfo; | |||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; | |||||
/** | |||||
* <p> | |||||
* Mapper 接口 | |||||
* </p> | |||||
* | |||||
* @author Liuxinxin | |||||
* @since 2023-02-22 | |||||
*/ | |||||
public interface NdExpertUserFullInfoMapper extends BaseMapper<ExpertUserFullInfo> { | |||||
} |
@@ -0,0 +1,5 @@ | |||||
<?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.ningdatech.pmapi.expert.mapper.NdExpertUserFullInfoMapper"> | |||||
</mapper> |
@@ -0,0 +1,16 @@ | |||||
package com.ningdatech.pmapi.expert.service; | |||||
import com.ningdatech.pmapi.expert.entity.ExpertUserFullInfo; | |||||
import com.baomidou.mybatisplus.extension.service.IService; | |||||
/** | |||||
* <p> | |||||
* 服务类 | |||||
* </p> | |||||
* | |||||
* @author Liuxinxin | |||||
* @since 2023-02-22 | |||||
*/ | |||||
public interface IExpertUserFullInfoService extends IService<ExpertUserFullInfo> { | |||||
} |
@@ -0,0 +1,20 @@ | |||||
package com.ningdatech.pmapi.expert.service.impl; | |||||
import com.ningdatech.pmapi.expert.entity.ExpertUserFullInfo; | |||||
import com.ningdatech.pmapi.expert.mapper.NdExpertUserFullInfoMapper; | |||||
import com.ningdatech.pmapi.expert.service.IExpertUserFullInfoService; | |||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | |||||
import org.springframework.stereotype.Service; | |||||
/** | |||||
* <p> | |||||
* 服务实现类 | |||||
* </p> | |||||
* | |||||
* @author Liuxinxin | |||||
* @since 2023-02-22 | |||||
*/ | |||||
@Service | |||||
public class ExpertUserFullInfoServiceImpl extends ServiceImpl<NdExpertUserFullInfoMapper, ExpertUserFullInfo> implements IExpertUserFullInfoService { | |||||
} |