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 lombok.Data; import java.math.BigDecimal; import java.util.Date; /** * 供应商关联耗材字典表 */ @Data @TableName("company_product_relevance") public class UdiRlSupEntity { @TableId(value = "id", type = IdType.INPUT) private Long id; /** * 客户ID */ @TableField(value = "customerId") private String customerId; @TableField(value = "productId") private String productId; @TableField(value = "enterpriseId") private String enterpriseId; @TableField(value = "registrationId") private String registrationId; /** * 审核状态 1:通过,2:不通过,3:反审 */ @TableField(value = "auditStatus") private String auditStatus; /** * 产品UUID */ @TableField(value = "productUuid") private String productUuid; /** * 基础信息维护表关联主键 */ @TableField(value = "udiRlIdFk") private Long udiRlIdFk; /** * 往来单位ID外键 */ @TableField(value = "unitFk") private String unitFk; /** * 价格 */ @TableField(value = "price") private BigDecimal price; /** * 创建人 */ @TableField(value = "`createUser`") private String createUser; /** * 创建时间 */ @TableField(value = "createTime") private Date createTime; /** * 更新人 */ @TableField(value = "updateUser") private String updateUser; /** * 更新时间 */ @TableField(value = "updateTime") private Date updateTime; }