com.diboot.core.dto.BatchUpdateEntitiesDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of diboot-core Show documentation
Show all versions of diboot-core Show documentation
diboot core extend by begcode
package com.diboot.core.dto;
import com.diboot.core.entity.AbstractEntity;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
import java.io.Serializable;
import java.util.List;
/**
* 批量更新实体DTO
*
* @author Yangzhao
* @version 2.0.0
* @date 2020/12/8 10:07 上午
* Copyright © diboot.com
*/
@Getter
@Setter
@Accessors(chain = true)
public class BatchUpdateEntitiesDTO, ID_TYPE extends Serializable> implements Serializable {
private static final long serialVersionUID = -3141680773920758263L;
private List idList;
private T data;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy