package io.hmit.modules.serviceOrder.excel;
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
import java.util.Date;
/**
* 机构服务关系
*
* @author zsh 408538940@qq.com
* @since 1.0.0 2021-03-10
*/
@Data
public class PensionOrganizationServiceExcel {
@Excel(name = "id")
private Long id;
@Excel(name = "机构ID")
private Long organizationId;
@Excel(name = "服务ID")
private Long serviceId;
@Excel(name = "创建者")
private Long creator;
@Excel(name = "创建时间")
private Date createDate;
}
-
mlchun authorede5e1ab0e