parent
1cb6dc754d
commit
02af0dbd4a
4 changed files with 190 additions and 15 deletions
@ -0,0 +1,70 @@ |
|||||||
|
package org.jeecg.modules.demo.project.dto; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import org.jeecgframework.poi.excel.annotation.Excel; |
||||||
|
|
||||||
|
/** |
||||||
|
* @Description: TODO |
||||||
|
* @Author: Z.H.C |
||||||
|
* @CreateTime: 2024-10-24 11:09 |
||||||
|
* @Version: 1.0 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DepartExtDto2 extends DepartExtDto { |
||||||
|
|
||||||
|
|
||||||
|
@Excel(name = "编制数", width = 15) |
||||||
|
@ApiModelProperty(value = "编制数") |
||||||
|
private String bzs; |
||||||
|
/** |
||||||
|
* 在职职工人数: |
||||||
|
*/ |
||||||
|
@Excel(name = "在职职工人数:", width = 15) |
||||||
|
@ApiModelProperty(value = "在职职工人数:") |
||||||
|
private String zzzgrs; |
||||||
|
/** |
||||||
|
* 中级职称以上研究人员数 |
||||||
|
*/ |
||||||
|
@Excel(name = "中级职称以上研究人员数", width = 15) |
||||||
|
@ApiModelProperty(value = "中级职称以上研究人员数") |
||||||
|
private String zjzcysyjrys; |
||||||
|
/** |
||||||
|
* 单位联系人姓名 |
||||||
|
*/ |
||||||
|
@Excel(name = "单位联系人姓名", width = 15) |
||||||
|
@ApiModelProperty(value = "单位联系人姓名") |
||||||
|
private String dwlxrxm; |
||||||
|
/** |
||||||
|
* 单位联系人职称 |
||||||
|
*/ |
||||||
|
@Excel(name = "单位联系人职称", width = 15) |
||||||
|
@ApiModelProperty(value = "单位联系人职称") |
||||||
|
private String dwlxrzc; |
||||||
|
/** |
||||||
|
* 单位联系人职务 |
||||||
|
*/ |
||||||
|
@Excel(name = "单位联系人职务", width = 15) |
||||||
|
@ApiModelProperty(value = "单位联系人职务") |
||||||
|
private String dwlxrzw; |
||||||
|
/** |
||||||
|
* 单位联系人电话 |
||||||
|
*/ |
||||||
|
@Excel(name = "单位联系人电话", width = 15) |
||||||
|
@ApiModelProperty(value = "单位联系人电话") |
||||||
|
private String dwlxrdh; |
||||||
|
/** |
||||||
|
* 单位联系人手机 |
||||||
|
*/ |
||||||
|
@Excel(name = "单位联系人手机", width = 15) |
||||||
|
@ApiModelProperty(value = "单位联系人手机") |
||||||
|
private String dwlxrsj; |
||||||
|
/** |
||||||
|
* 单位联系人邮箱 |
||||||
|
*/ |
||||||
|
@Excel(name = "单位联系人邮箱", width = 15) |
||||||
|
@ApiModelProperty(value = "单位联系人邮箱") |
||||||
|
private String dwlxryx; |
||||||
|
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue