6 changed files with 97 additions and 5 deletions
@ -0,0 +1,40 @@ |
|||
package com.epmet.dto.form.work; |
|||
|
|||
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 已结束-保存活动实际开始结束时间 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/7/26 19:43 |
|||
*/ |
|||
@Data |
|||
public class SaveActualTimeFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -3668309257254318868L; |
|||
|
|||
public interface AddUserInternalGroup { |
|||
} |
|||
|
|||
public interface UserShowGroup extends CustomerClientShowGroup { |
|||
} |
|||
|
|||
/** |
|||
* 活动id |
|||
*/ |
|||
@NotBlank(message = "活动id不能为空", groups = {AddUserInternalGroup.class}) |
|||
private String actId; |
|||
/** |
|||
* 实际开始时间yyyy-MM-dd HH:mm |
|||
*/ |
|||
@NotBlank(message = "实际开始时间不能为空", groups = {UserShowGroup.class}) |
|||
private String actualStartTime; |
|||
/** |
|||
* 实际结束时间yyyy-MM-dd HH:mm |
|||
*/ |
|||
@NotBlank(message = "实际结束时间不能为空", groups = {UserShowGroup.class}) |
|||
private String actualEndTime; |
|||
} |
|||
Loading…
Reference in new issue