|
|
@ -6,6 +6,8 @@ import com.alibaba.excel.annotation.write.style.HeadStyle; |
|
|
|
import com.alibaba.excel.enums.poi.FillPatternTypeEnum; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
|
|
|
|
/** |
|
|
|
* 出生管理 |
|
|
|
* |
|
|
@ -14,8 +16,9 @@ import lombok.Data; |
|
|
|
*/ |
|
|
|
@HeadStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 44) |
|
|
|
@Data |
|
|
|
public class IcBirthRecordExcel { |
|
|
|
public class IcBirthRecordExcel implements Serializable { |
|
|
|
|
|
|
|
private static final long serialVersionUID = 4539449621014654213L; |
|
|
|
@ColumnWidth(10) |
|
|
|
@ExcelProperty(value = "序号",order = 1) |
|
|
|
private Integer index; |
|
|
@ -72,4 +75,4 @@ public class IcBirthRecordExcel { |
|
|
|
@ExcelProperty(value = "与户主关系",order = 1) |
|
|
|
private String householderRelation; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|