forked from luyan/epmet-cloud-lingshan
6 changed files with 109 additions and 27 deletions
@ -0,0 +1,38 @@ |
|||||
|
package com.epmet.resi.partymember.dto.partyOrg.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.AddGroup; |
||||
|
import com.epmet.commons.tools.validator.group.UpdateGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
@Data |
||||
|
public class IcScheduleFormDTO implements Serializable { |
||||
|
/** |
||||
|
* 日程标题 |
||||
|
*/ |
||||
|
private String title; |
||||
|
/** |
||||
|
* 是否公开,0:仅自己可见;1:组织内其他人可见 |
||||
|
*/ |
||||
|
private String isPublic; |
||||
|
/** |
||||
|
* 提醒开始时间 |
||||
|
*/ |
||||
|
private String startTime; |
||||
|
/** |
||||
|
* 提醒结束时间 |
||||
|
*/ |
||||
|
private String endTime; |
||||
|
|
||||
|
private Integer pageNo = 1; |
||||
|
private Integer pageSize = 20; |
||||
|
private Boolean isPage = true; |
||||
|
private String agencyId; |
||||
|
|
||||
|
//token中信息
|
||||
|
private String customerId; |
||||
|
private String staffId; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue