| | |
| | | */ |
| | | package org.sxkj.gd.orderdata.dto; |
| | | |
| | | import java.io.Serializable; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.sxkj.gd.orderdata.entity.GdDataObjectionAttachmentEntity; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | |
| | | * @since 2026-01-16 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class GdDataObjectionAttachmentDTO extends GdDataObjectionAttachmentEntity { |
| | | public class GdDataObjectionAttachmentDTO implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | | * 关联数据异议表ID |
| | | */ |
| | | @ApiModelProperty(value = "关联数据异议表ID") |
| | | private Integer objectionId; |
| | | /** |
| | | * 附件表id |
| | | */ |
| | | @ApiModelProperty(value = "附件表id") |
| | | private Long attachId; |
| | | |
| | | @ApiModelProperty(value = "附件名称") |
| | | private String attachName; |
| | | } |