You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
435 B
Java
20 lines
435 B
Java
package com.glxp.api.req.basic;
|
|
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotNull;
|
|
import javax.validation.constraints.Null;
|
|
import javax.validation.constraints.Size;
|
|
|
|
@Data
|
|
public class CopyCustomerIdRequest {
|
|
|
|
@Size(min = 1, message = "最少选择一个id")
|
|
private Long[] ids;
|
|
|
|
@NotEmpty(message = "请选择供应商!")
|
|
private String customerId;
|
|
|
|
}
|