kcw-wx-java/youchain-system/src/main/java/com/youchain/businessdata/domain/BaseCode.java

60 lines
1.7 KiB
Java

/*
* Copyright 2019-2020 Zheng Jie
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.youchain.businessdata.domain;
import com.youchain.base.BaseEntity;
import lombok.Data;
import cn.hutool.core.bean.BeanUtil;
import io.swagger.annotations.ApiModelProperty;
import cn.hutool.core.bean.copier.CopyOptions;
import javax.persistence.*;
import javax.validation.constraints.*;
import java.io.Serializable;
/**
* @website https://eladmin.vip
* @description /
* @author baobinglin
* @date 2023-08-22
**/
@Entity
@Data
@Table(name="base_code")
public class BaseCode implements Serializable {
@Column(name = "`code`",nullable = true)
@ApiModelProperty(value = "code")
private String code;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "`id`")
@ApiModelProperty(value = "id")
private Integer id;
@Column(name = "`key`",nullable = true)
@ApiModelProperty(value = "key")
private String key;
@Column(name = "`value`",nullable = true)
@ApiModelProperty(value = "value")
private String value;
public void copy(BaseCode source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}
}