
org.swiftboot.web.command.IdListCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swiftboot-web Show documentation
Show all versions of swiftboot-web Show documentation
Basic module for enterprise web applications
package org.swiftboot.web.command;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotEmpty;
import java.util.List;
/**
* 业务对象 ID 列表
*
* @author swiftech
*/
@ApiModel
public class IdListCommand extends HttpCommand {
/**
* 业务对象ID列表
*/
@ApiModelProperty("List of business object ID")
@JsonProperty("ids")
@NotEmpty
private List<@NotBlank @Length(min = 32, max = 32) String> ids;
public List getIds() {
return ids;
}
public void setIds(List ids) {
this.ids = ids;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy