You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.0 KiB
Java
48 lines
1.0 KiB
Java
2 years ago
|
package com.glxp.api.entity.basic;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
@TableName(value = "basic_udi_rel")
|
||
|
public class BasicUdiRelEntity implements Serializable {
|
||
|
@TableId(value = "id", type = IdType.INPUT)
|
||
|
private Long id;
|
||
|
|
||
|
/**
|
||
|
* 国家库uuid
|
||
|
*/
|
||
|
@TableField(value = "uuid")
|
||
|
private String uuid;
|
||
|
|
||
|
/**
|
||
|
* 企业信息ID外键
|
||
|
*/
|
||
|
@TableField(value = "companyIdFk")
|
||
|
private Long companyIdFk;
|
||
|
|
||
|
/**
|
||
|
* 更新时间
|
||
|
*/
|
||
|
@TableField(value = "updateTime")
|
||
|
private Date updateTime;
|
||
|
|
||
|
/**
|
||
|
* 备注
|
||
|
*/
|
||
|
@TableField(value = "remark")
|
||
|
private String remark;
|
||
|
|
||
|
/**
|
||
|
* 更新人
|
||
|
*/
|
||
|
@TableField(value = "updateUser")
|
||
|
private String updateUser;
|
||
|
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
}
|