|
|
@@ -1,11 +1,15 @@
|
|
|
package com.ktg.iscs.domain.vo.hardware;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.ktg.common.annotation.Excel;
|
|
|
-import com.ktg.common.core.domain.model.BaseBean;
|
|
|
+import com.ktg.common.core.domain.TreeEntity;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* 硬件类型对象 is_hardware_type
|
|
|
*
|
|
|
@@ -14,7 +18,7 @@ import lombok.EqualsAndHashCode;
|
|
|
*/
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
@Data
|
|
|
-public class IsHardwareTypeVO extends BaseBean
|
|
|
+public class IsHardwareTypeVO extends TreeEntity
|
|
|
{
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
@@ -51,5 +55,25 @@ public class IsHardwareTypeVO extends BaseBean
|
|
|
@ApiModelProperty(value = "删除标志(0代表存在 2代表删除)")
|
|
|
private String delFlag;
|
|
|
|
|
|
+ @Schema(description = "创建人")
|
|
|
+ private String createBy;
|
|
|
+
|
|
|
+ @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Schema(description = "创建时间")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ /** 更新者 */
|
|
|
+ @Schema(description = "更新者")
|
|
|
+ private String updateBy;
|
|
|
+
|
|
|
+ /** 更新时间 */
|
|
|
+ @JsonFormat(timezone="GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Schema(description = "更新时间")
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
+ /** 备注 */
|
|
|
+ @Schema(description = "备注")
|
|
|
+ private String remark;
|
|
|
+
|
|
|
|
|
|
}
|