1
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
package com.budwk.app.zhgh.democratic.opinion.mode;
|
||||
|
||||
import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||
import com.budwk.app.base.model.ExcelImportError;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class OpinionImportExcelMode extends ExcelImportError {
|
||||
|
||||
@Excel(name = "所属讨论组")
|
||||
private String discussionGroupName;
|
||||
|
||||
@Excel(name = "建议人")
|
||||
private String suggestUserName;
|
||||
|
||||
@Excel(name = "建议人所属代表团")
|
||||
private String delegationName;
|
||||
|
||||
@Excel(name = "所属教代会")
|
||||
private String sessionName;
|
||||
|
||||
@Excel(name = "意见类别")
|
||||
private String typeName;
|
||||
|
||||
@Excel(name = "意见时间")
|
||||
private String createTime;
|
||||
|
||||
@Excel(name = "建议承办单位")
|
||||
private String suggestUnits;
|
||||
|
||||
@Excel(name = "意见和建议")
|
||||
private String name;
|
||||
}
|
||||
Reference in New Issue
Block a user