提交 9e25f8ad 作者: 925993793@qq.com

人物批量导入/导出 籍贯字段逻辑修改

上级 b52f5a0d
package com.zzsn.leaderbase.feign.api;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
//feign调用
@FeignClient(value = "jeecg-system")
public interface RemoteSystemService {
/**
* 根据字典编码查询字典项列表
*
* @param dictCode 字典编码
* @author lkg
* @date 2025/2/11
*/
@GetMapping("/sys/api/listItemByDictCode")
String sysDictItemList(@RequestParam String dictCode);
}
package com.zzsn.leaderbase.feign.entity;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.jeecgframework.poi.excel.annotation.Excel;
import java.io.Serializable;
import java.util.Date;
/**
* <p>
*
* </p>
*
* @Author zhangweijian
* @since 2018-12-28
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class SysDictItem implements Serializable {
private static final long serialVersionUID = 1L;
/**
* id
*/
private String id;
/**
* 字典id
*/
private String dictId;
/**
* 字典项文本
*/
@Excel(name = "字典项文本", width = 20)
private String itemText;
/**
* 字典项值
*/
@Excel(name = "字典项值", width = 30)
private String itemValue;
/**
* 描述
*/
@Excel(name = "描述", width = 40)
private String description;
/**
* 排序
*/
@Excel(name = "排序", width = 15,type=4)
private Integer sortOrder;
/**
* 状态(1启用 0不启用)
*/
private Integer status;
private String createBy;
private Date createTime;
private String updateBy;
private Date updateTime;
/**
* 上级id
*/
private String pid;
/**
* 是否有下级
*/
private String hasChild;
/**
* 节点全路径(字典id)
*/
private String pathIds;
/**
* 层级
*/
private Integer level;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论