#
luxiaotao1123
2024-09-13 e077ea7f967767782ae1c60b22d87e28f65e4e5c
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/CodeGap.java
@@ -51,11 +51,11 @@
     * 租户
     */
    @ApiModelProperty(value= "租户")
    private Integer tenantId;
    private Long tenantId;
    public CodeGap() {}
    public CodeGap(Long code0,Long code1,Double distance,Integer deleted,Integer tenantId) {
    public CodeGap(Long code0,Long code1,Double distance,Integer deleted,Long tenantId) {
        this.code0 = code0;
        this.code1 = code1;
        this.distance = distance;
@@ -71,17 +71,7 @@
//            null    // 租户
//    );
    public String getDeleted$(){
        if (null == this.deleted){ return null; }
        switch (this.deleted){
            case 1:
                return "是";
            case 0:
                return "否";
            default:
                return String.valueOf(this.deleted);
        }
    }
    public String getCode0$() {
        CodeService service = SpringUtils.getBean(CodeService.class);
@@ -101,4 +91,6 @@
        return null;
    }
}