MetaFieldDTO.java 12.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
package cn.ibizlab.api.dto;

import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.List;
import java.math.BigInteger;
import java.util.Map;
import java.util.HashMap;
import java.io.Serializable;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import com.alibaba.fastjson.annotation.JSONField;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import cn.ibizlab.util.domain.DTOBase;
import cn.ibizlab.util.domain.DTOClient;
import lombok.Data;

/**
 * 服务DTO对象[MetaFieldDTO]
 */
@Data
public class MetaFieldDTO extends DTOBase implements Serializable {

	private static final long serialVersionUID = 1L;

    /**
     * 属性 [FIELDID]
     *
     */
    @JSONField(name = "field_id")
    @JsonProperty("field_id")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String fieldId;

    /**
     * 属性 [FIELDNAME]
     *
     */
    @JSONField(name = "field_name")
    @JsonProperty("field_name")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String fieldName;

    /**
     * 属性 [CODENAME]
     *
     */
    @JSONField(name = "code_name")
    @JsonProperty("code_name")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String codeName;

    /**
     * 属性 [ENTITYID]
     *
     */
    @JSONField(name = "entity_id")
    @JsonProperty("entity_id")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String entityId;

    /**
     * 属性 [ENTITYNAME]
     *
     */
    @JSONField(name = "entity_name")
    @JsonProperty("entity_name")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String entityName;

    /**
     * 属性 [ENTITYCODENAME]
     *
     */
    @JSONField(name = "entity_code_name")
    @JsonProperty("entity_code_name")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String entityCodeName;

    /**
     * 属性 [SYSTEMID]
     *
     */
    @JSONField(name = "system_id")
    @JsonProperty("system_id")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String systemId;

    /**
     * 属性 [FIELDLOGICNAME]
     *
     */
    @JSONField(name = "field_logic_name")
    @JsonProperty("field_logic_name")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String fieldLogicName;

    /**
     * 属性 [FIELDUNINAME]
     *
     */
    @JSONField(name = "field_uni_name")
    @JsonProperty("field_uni_name")
    @Size(min = 0, max = 200, message = "内容长度必须小于等于[200]")
    private String fieldUniName;

    /**
     * 属性 [FIELDSHOWNAME]
     *
     */
    @JSONField(name = "field_show_name")
    @JsonProperty("field_show_name")
    @Size(min = 0, max = 200, message = "内容长度必须小于等于[200]")
    private String fieldShowName;

    /**
     * 属性 [REFFIELDID]
     *
     */
    @JSONField(name = "ref_field_id")
    @JsonProperty("ref_field_id")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String refFieldId;

    /**
     * 属性 [REFFIELDNAME]
     *
     */
    @JSONField(name = "ref_field_name")
    @JsonProperty("ref_field_name")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String refFieldName;

    /**
     * 属性 [RELATIONID]
     *
     */
    @JSONField(name = "relation_id")
    @JsonProperty("relation_id")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String relationId;

    /**
     * 属性 [RELATIONNAME]
     *
     */
    @JSONField(name = "relation_name")
    @JsonProperty("relation_name")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String relationName;

    /**
     * 属性 [RELATIONCODENAME]
     *
     */
    @JSONField(name = "relation_code_name")
    @JsonProperty("relation_code_name")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String relationCodeName;

    /**
     * 属性 [REFENTITYNAME]
     *
     */
    @JSONField(name = "ref_entity_name")
    @JsonProperty("ref_entity_name")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String refEntityName;

    /**
     * 属性 [KEYFIELD]
     *
     */
    @JSONField(name = "key_field")
    @JsonProperty("key_field")
    private Integer keyField;

    /**
     * 属性 [MAJORFIELD]
     *
     */
    @JSONField(name = "major_field")
    @JsonProperty("major_field")
    private Integer majorField;

    /**
     * 属性 [UNIONKEY]
     *
     */
    @JSONField(name = "union_key")
    @JsonProperty("union_key")
    @Size(min = 0, max = 70, message = "内容长度必须小于等于[70]")
    private String unionKey;

    /**
     * 属性 [FIELDTYPE]
     *
     */
    @JSONField(name = "field_type")
    @JsonProperty("field_type")
    @Size(min = 0, max = 70, message = "内容长度必须小于等于[70]")
    private String fieldType;

    /**
     * 属性 [PREDEFINED]
     *
     */
    @JSONField(name = "predefined")
    @JsonProperty("predefined")
    @Size(min = 0, max = 70, message = "内容长度必须小于等于[70]")
    private String predefined;

    /**
     * 属性 [DICT]
     *
     */
    @JSONField(name = "dict")
    @JsonProperty("dict")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String dict;

    /**
     * 属性 [NULLABLE]
     *
     */
    @JSONField(name = "nullable")
    @JsonProperty("nullable")
    private Integer nullable;

    /**
     * 属性 [PHYSICALFIELD]
     *
     */
    @JSONField(name = "physical_field")
    @JsonProperty("physical_field")
    private Integer physicalField;

    /**
     * 属性 [DATATYPE]
     *
     */
    @JSONField(name = "data_type")
    @JsonProperty("data_type")
    @Size(min = 0, max = 100, message = "内容长度必须小于等于[100]")
    private String dataType;

    /**
     * 属性 [DATALENGTH]
     *
     */
    @JSONField(name = "data_length")
    @JsonProperty("data_length")
    private Integer dataLength;

    /**
     * 属性 [DATAPRECI]
     *
     */
    @JSONField(name = "data_preci")
    @JsonProperty("data_preci")
    private Integer dataPreci;

    /**
     * 属性 [EXPRESSION]
     *
     */
    @JSONField(name = "expression")
    @JsonProperty("expression")
    @Size(min = 0, max = 2000, message = "内容长度必须小于等于[2000]")
    private String expression;

    /**
     * 属性 [EXTENSIONFIELD]
     *
     */
    @JSONField(name = "extension_field")
    @JsonProperty("extension_field")
    private Integer extensionField;

    /**
     * 属性 [ISENABLEAUDIT]
     *
     */
    @JSONField(name = "is_enable_audit")
    @JsonProperty("is_enable_audit")
    private Integer isEnableAudit;

    /**
     * 属性 [SHOWORDER]
     *
     */
    @JSONField(name = "show_order")
    @JsonProperty("show_order")
    private Integer showOrder;

302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
    /**
     * 属性 [CREATEDATE]
     *
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
    @JSONField(name = "createdate" , format="yyyy-MM-dd HH:mm:ss")
    @JsonProperty("createdate")
    private Timestamp createdate;

    /**
     * 属性 [UPDATEDATE]
     *
     */
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone="GMT+8")
    @JSONField(name = "updatedate" , format="yyyy-MM-dd HH:mm:ss")
    @JsonProperty("updatedate")
    private Timestamp updatedate;

320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516

    /**
     * 设置 [FIELDNAME]
     */
    public void setFieldName(String  fieldName){
        this.fieldName = fieldName ;
        this.modify("fieldname",fieldName);
    }

    /**
     * 设置 [CODENAME]
     */
    public void setCodeName(String  codeName){
        this.codeName = codeName ;
        this.modify("codename",codeName);
    }

    /**
     * 设置 [ENTITYID]
     */
    public void setEntityId(String  entityId){
        this.entityId = entityId ;
        this.modify("entityid",entityId);
    }

    /**
     * 设置 [ENTITYNAME]
     */
    public void setEntityName(String  entityName){
        this.entityName = entityName ;
        this.modify("entityname",entityName);
    }

    /**
     * 设置 [FIELDLOGICNAME]
     */
    public void setFieldLogicName(String  fieldLogicName){
        this.fieldLogicName = fieldLogicName ;
        this.modify("fieldlogicname",fieldLogicName);
    }

    /**
     * 设置 [REFFIELDID]
     */
    public void setRefFieldId(String  refFieldId){
        this.refFieldId = refFieldId ;
        this.modify("reffieldid",refFieldId);
    }

    /**
     * 设置 [REFFIELDNAME]
     */
    public void setRefFieldName(String  refFieldName){
        this.refFieldName = refFieldName ;
        this.modify("reffieldname",refFieldName);
    }

    /**
     * 设置 [RELATIONID]
     */
    public void setRelationId(String  relationId){
        this.relationId = relationId ;
        this.modify("relationid",relationId);
    }

    /**
     * 设置 [RELATIONNAME]
     */
    public void setRelationName(String  relationName){
        this.relationName = relationName ;
        this.modify("relationname",relationName);
    }

    /**
     * 设置 [KEYFIELD]
     */
    public void setKeyField(Integer  keyField){
        this.keyField = keyField ;
        this.modify("keyfield",keyField);
    }

    /**
     * 设置 [MAJORFIELD]
     */
    public void setMajorField(Integer  majorField){
        this.majorField = majorField ;
        this.modify("majorfield",majorField);
    }

    /**
     * 设置 [UNIONKEY]
     */
    public void setUnionKey(String  unionKey){
        this.unionKey = unionKey ;
        this.modify("unionkey",unionKey);
    }

    /**
     * 设置 [FIELDTYPE]
     */
    public void setFieldType(String  fieldType){
        this.fieldType = fieldType ;
        this.modify("fieldtype",fieldType);
    }

    /**
     * 设置 [PREDEFINED]
     */
    public void setPredefined(String  predefined){
        this.predefined = predefined ;
        this.modify("predefined",predefined);
    }

    /**
     * 设置 [DICT]
     */
    public void setDict(String  dict){
        this.dict = dict ;
        this.modify("dict",dict);
    }

    /**
     * 设置 [NULLABLE]
     */
    public void setNullable(Integer  nullable){
        this.nullable = nullable ;
        this.modify("nullable",nullable);
    }

    /**
     * 设置 [PHYSICALFIELD]
     */
    public void setPhysicalField(Integer  physicalField){
        this.physicalField = physicalField ;
        this.modify("physicalfield",physicalField);
    }

    /**
     * 设置 [DATATYPE]
     */
    public void setDataType(String  dataType){
        this.dataType = dataType ;
        this.modify("datatype",dataType);
    }

    /**
     * 设置 [DATALENGTH]
     */
    public void setDataLength(Integer  dataLength){
        this.dataLength = dataLength ;
        this.modify("datalength",dataLength);
    }

    /**
     * 设置 [DATAPRECI]
     */
    public void setDataPreci(Integer  dataPreci){
        this.dataPreci = dataPreci ;
        this.modify("datapreci",dataPreci);
    }

    /**
     * 设置 [EXPRESSION]
     */
    public void setExpression(String  expression){
        this.expression = expression ;
        this.modify("expression",expression);
    }

    /**
     * 设置 [EXTENSIONFIELD]
     */
    public void setExtensionField(Integer  extensionField){
        this.extensionField = extensionField ;
        this.modify("extensionfield",extensionField);
    }

    /**
     * 设置 [ISENABLEAUDIT]
     */
    public void setIsEnableAudit(Integer  isEnableAudit){
        this.isEnableAudit = isEnableAudit ;
        this.modify("isenableaudit",isEnableAudit);
    }

    /**
     * 设置 [SHOWORDER]
     */
    public void setShowOrder(Integer  showOrder){
        this.showOrder = showOrder ;
        this.modify("showorder",showOrder);
    }


}