7 changed files with 101 additions and 0 deletions
@ -0,0 +1,31 @@ |
|||||
|
package com.epmet.evaluationindex.screen.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/10/22 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CompartmentByBizTypeFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -3354778434424878413L; |
||||
|
|
||||
|
public interface CompartmentByBizType extends CustomerClientShowGroup {} |
||||
|
|
||||
|
/** |
||||
|
* 机关ID |
||||
|
*/ |
||||
|
@NotBlank(message = "机关ID不能为空",groups = {CompartmentByBizType.class}) |
||||
|
private String agencyId; |
||||
|
|
||||
|
/** |
||||
|
* 业务类型 |
||||
|
*/ |
||||
|
@NotBlank(message = "bizType不能为空", groups = {CompartmentByBizType.class}) |
||||
|
private String bizType; |
||||
|
} |
Loading…
Reference in new issue