From d82bb87e2cbeaff41c120f6450ad2e2dbea58acc Mon Sep 17 00:00:00 2001 From: vincentlu <t1341870251@gmail.com> Date: 星期一, 17 二月 2025 10:38:34 +0800 Subject: [PATCH] # --- zy-acs-fake/src/main/java/com/zy/acs/fake/entity/Code.java | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/zy-acs-fake/src/main/java/com/zy/acs/fake/entity/Code.java b/zy-acs-fake/src/main/java/com/zy/acs/fake/entity/Code.java index 2d1272a..7302756 100644 --- a/zy-acs-fake/src/main/java/com/zy/acs/fake/entity/Code.java +++ b/zy-acs-fake/src/main/java/com/zy/acs/fake/entity/Code.java @@ -50,7 +50,7 @@ * 杞 1: 鏄� 0: 鍚� */ @ApiModelProperty(value= "杞 1: 鏄� 0: 鍚� ") - private Integer concer; + private Integer corner; /** * 缂╂斁 @@ -108,12 +108,12 @@ public Code() {} - public Code(String uuid, String data, Double x, Double y, Integer concer, Integer status, Integer deleted, Long tenantId, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo) { + public Code(String uuid, String data, Double x, Double y, Integer corner, Integer status, Integer deleted, Long tenantId, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo) { this.uuid = uuid; this.data = data; this.x = x; this.y = y; - this.concer = concer; + this.corner = corner; this.status = status; this.deleted = deleted; this.tenantId = tenantId; @@ -141,8 +141,8 @@ // ); public Boolean getCornerBool(){ - if (null == this.concer){ return null; } - switch (this.concer){ + if (null == this.corner){ return null; } + switch (this.corner){ case 1: return true; case 0: -- Gitblit v1.9.1