From b9086588c215b7493682d65d49ed1070d88c3058 Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Tue, 26 Sep 2023 15:49:06 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/wb' into wb --- screen-api/src/main/java/com/moral/api/pojo/ext/allocationextension/AllocationExtensionExt.java | 69 ++++++++++++++++++++++++++++++++++ 1 files changed, 69 insertions(+), 0 deletions(-) diff --git a/screen-api/src/main/java/com/moral/api/pojo/ext/allocationextension/AllocationExtensionExt.java b/screen-api/src/main/java/com/moral/api/pojo/ext/allocationextension/AllocationExtensionExt.java new file mode 100644 index 0000000..c1c6561 --- /dev/null +++ b/screen-api/src/main/java/com/moral/api/pojo/ext/allocationextension/AllocationExtensionExt.java @@ -0,0 +1,69 @@ +package com.moral.api.pojo.ext.allocationextension; + +import com.fasterxml.jackson.annotation.JsonFormat; +import com.moral.api.entity.AllocationExtension; +import com.moral.api.pojo.vo.file.FileVo; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +import java.util.Date; +import java.util.List; + +/** + * <p> + * ��������������� + * </p> + * deyt template generate + * @author JI + * @since 2023-09-25 + */ +@Data +@EqualsAndHashCode(callSuper = false) +@Accessors(chain = true) +public class AllocationExtensionExt extends AllocationExtension { + + @ApiModelProperty(value = "������������") + private String allocationNum; + + + @ApiModelProperty(value = "������������") + private Date escalationTime; + + + @ApiModelProperty(value = "������������") + private String pollutePosition; + + @ApiModelProperty(value = "������������id") + private Integer unitId; + + @ApiModelProperty(value = "������������id") + private Integer polluteType; + + @ApiModelProperty(value = "������������id") + private Integer changeType; + + @ApiModelProperty(value = "������������") + private Integer changeDay; + + @ApiModelProperty(value = "������������id") + private Integer escalationUnitId; + + @ApiModelProperty(value = "���������") + private String escalationName; + + @ApiModelProperty(value = "������������id") + private Integer investigationType; + + @ApiModelProperty(value = "������������") + private String problemDescribe; + + + + @ApiModelProperty(value = "������������") + private List<FileVo> fileBaseList; + + @ApiModelProperty(value = "������������") + private List<FileVo> fileList; +} -- Gitblit v1.8.0