forked from rongchao/epmet-cloud-rizhao
4 changed files with 128 additions and 2 deletions
@ -0,0 +1,51 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.dto.IcServiceProjectAttachmentDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.Valid; |
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/5/27 15:53 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ServiceProjectFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -4573264697450644498L; |
||||
|
|
||||
|
public interface ServiceProjectAddForm{} |
||||
|
|
||||
|
@NotBlank(message = "服务类别不能为空",groups = {ServiceProjectAddForm.class}) |
||||
|
private String serviceCategoryKey; |
||||
|
|
||||
|
@NotBlank(message = "服务名称不能为空",groups = {ServiceProjectAddForm.class}) |
||||
|
private String serviceName; |
||||
|
|
||||
|
@NotBlank(message = "服务内容不能为空",groups = {ServiceProjectAddForm.class}) |
||||
|
private String serviceContent; |
||||
|
|
||||
|
/** |
||||
|
* 政策依据 |
||||
|
*/ |
||||
|
private String policyGround; |
||||
|
|
||||
|
/** |
||||
|
* 政策级别,0市级;1区级;2街道级 |
||||
|
*/ |
||||
|
private String policyLevel; |
||||
|
|
||||
|
private String customerId; |
||||
|
|
||||
|
private String userId; |
||||
|
|
||||
|
/** |
||||
|
* 附件集合 |
||||
|
*/ |
||||
|
@Valid |
||||
|
private List<IcServiceProjectAttachmentDTO> attachmentList; |
||||
|
} |
Loading…
Reference in new issue