/*
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the dreamlu.net developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: Chill 庄骞 (smallchill@163.com)
|
*/
|
package com.vci.ubcs.code.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 关键属性查重规则 实体类
|
*
|
* @author yuxc
|
* @since 2023-04-03
|
*/
|
@Data
|
@TableName("PL_CODE_KEYATTRREPEAT")
|
@ApiModel(value = "PlCodeKeyattrrepeat对象", description = "关键属性查重规则")
|
//@EqualsAndHashCode(callSuper = true)
|
public class CodeKeyAttrRepeat implements Serializable {
|
|
/**
|
*
|
*/
|
@JsonSerialize(
|
using = ToStringSerializer.class
|
)
|
@ApiModelProperty("主键id")
|
@TableId(
|
value = "oid",
|
type = IdType.ASSIGN_ID
|
)
|
private String oid;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String id;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String revisionoid;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String nameoid;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String btmname;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lastr;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String firstr;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lastv;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String firstv;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String creator;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Date createtime;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lastmodifier;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Date lastmodifytime;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String revisionrule;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String versionrule;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Short revisionseq;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String revisionvalue;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Short versionseq;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String versionvalue;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lctid;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String lcstatus;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private Date ts;
|
/**
|
* 规则名称
|
*/
|
@ApiModelProperty(value = "规则名称")
|
private String name;
|
/**
|
* 描述
|
*/
|
@ApiModelProperty(value = "描述")
|
private String description;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String owner;
|
/**
|
*
|
*/
|
@ApiModelProperty(value = "")
|
private String copyfromversion;
|
/**
|
* 忽略大小写
|
*/
|
@ApiModelProperty(value = "忽略大小写")
|
private String ignorecaseflag;
|
/**
|
* 忽略空格
|
*/
|
@ApiModelProperty(value = "忽略空格")
|
private String ignorespaceflag;
|
/**
|
* 忽略全部空格
|
*/
|
@ApiModelProperty(value = "忽略全部空格")
|
private String ignoreallspaceflag;
|
/**
|
* 忽略全半角
|
*/
|
@ApiModelProperty(value = "忽略全半角")
|
private String ignorewidthflag;
|
|
}
|