From 1af222e201ad79526abca68c71207286ddf49188 Mon Sep 17 00:00:00 2001 From: skyouc Date: 星期一, 12 五月 2025 19:53:34 +0800 Subject: [PATCH] no message --- rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/QlyInspectResult.java | 70 +++++++++++++++++++++++++++++++++++ 1 files changed, 70 insertions(+), 0 deletions(-) diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/QlyInspectResult.java b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/QlyInspectResult.java new file mode 100644 index 0000000..43c8832 --- /dev/null +++ b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/QlyInspectResult.java @@ -0,0 +1,70 @@ +package com.vincent.rsf.server.manager.entity; + + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableLogic; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import com.vincent.rsf.framework.common.Cools; +import com.vincent.rsf.framework.common.SpringUtils; +import com.vincent.rsf.server.system.service.UserService; +import com.vincent.rsf.server.system.entity.User; +import lombok.experimental.Accessors; + +import java.io.Serializable; +import java.util.Date; + +@Data +@Accessors(chain = true) +@TableName("man_qly_inspect_result") +public class QlyInspectResult implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * ID + */ + @ApiModelProperty(value= "ID") + @TableId(value = "id", type = IdType.AUTO) + private Long id; + + /** + * 璐ㄦ鍗旾D + */ + @ApiModelProperty(value= "璐ㄦ鍗旾D") + private Long isptId; + + /** + * 璐ㄦ鏄庣粏鍗旾D + */ + @ApiModelProperty(value= "璐ㄦ鏄庣粏鍗旾D") + private Long isptItemId; + + @ApiModelProperty("鏀惰揣鍖哄簱瀛業D") + private Long rcptId; + + /** + * 鏁伴噺 + */ + @ApiModelProperty(value= "鏁伴噺") + private Double anfme; + + /** + * 璐ㄦ缁撹 + */ + @ApiModelProperty(value= "璐ㄦ缁撹") + private Short isptResult; + + public QlyInspectResult() {} + + public QlyInspectResult(Long isptId,Long isptItemId,Double anfme,Short isptResult) { + this.isptId = isptId; + this.isptItemId = isptItemId; + this.anfme = anfme; + this.isptResult = isptResult; + } + +} -- Gitblit v1.9.1