forked from rongchao/epmet-cloud-rizhao
7 changed files with 167 additions and 11 deletions
@ -0,0 +1,70 @@ |
|||
package com.epmet.resi.partymember.dto.partyOrg.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
|
|||
/** |
|||
* 日程表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2022-08-18 |
|||
*/ |
|||
@Data |
|||
public class IcScheduleListDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* ID |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 当前登录用户userId |
|||
*/ |
|||
private String staffId; |
|||
|
|||
/** |
|||
* 日程标题(35字) |
|||
*/ |
|||
private String title; |
|||
|
|||
/** |
|||
* 提醒时间;其实就是日程所属日期 |
|||
*/ |
|||
private Date remindTime; |
|||
|
|||
/** |
|||
* 提醒时间;其实就是日程所属日期 |
|||
*/ |
|||
private String remindTimeName; |
|||
|
|||
/** |
|||
* 是否公开,0:仅自己可见;1:组织内其他人可见 |
|||
*/ |
|||
private String isPublic; |
|||
|
|||
/** |
|||
* 是否公开,0:是 1:否 |
|||
*/ |
|||
private String isPublicName; |
|||
|
|||
/** |
|||
* 备注(500字) |
|||
*/ |
|||
private String remark; |
|||
|
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
private Date createdTime; |
|||
|
|||
} |
@ -0,0 +1,26 @@ |
|||
package com.epmet.modules.partyOrg.excel; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class IcScheduleListExcel { |
|||
|
|||
@ExcelProperty(value = "日程标题") |
|||
@ColumnWidth(20) |
|||
private String title; |
|||
|
|||
@ExcelProperty(value = "提醒时间") |
|||
@ColumnWidth(20) |
|||
private String remindTimeName; |
|||
|
|||
@ExcelProperty(value = "是否公开") |
|||
@ColumnWidth(20) |
|||
private String isPublicName; |
|||
|
|||
@ExcelProperty(value = "备注") |
|||
@ColumnWidth(25) |
|||
private String remark; |
|||
|
|||
} |
Loading…
Reference in new issue