50 lines
1.5 KiB
Java
50 lines
1.5 KiB
Java
|
|
package com.ruoyi.cms.domain;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import com.ruoyi.common.annotation.Excel;
|
||
|
|
import io.swagger.annotations.ApiModel;
|
||
|
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
|
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 com.ruoyi.common.core.domain.BaseEntity;
|
||
|
|
/**
|
||
|
|
* 公司卡片对象 company_card
|
||
|
|
* @author ${author}
|
||
|
|
* @date 2025-02-18
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@ApiModel("公司卡片")
|
||
|
|
@TableName(value = "company_card")
|
||
|
|
public class CompanyCard extends BaseEntity
|
||
|
|
{
|
||
|
|
@TableField(exist = false)
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
/** 公司id */
|
||
|
|
@TableId(value = "company_card_id",type = IdType.AUTO)
|
||
|
|
@ApiModelProperty("公司id")
|
||
|
|
private Long companyCardId;
|
||
|
|
|
||
|
|
/** 卡片名称 */
|
||
|
|
@Excel(name = "卡片名称")
|
||
|
|
@ApiModelProperty("卡片名称")
|
||
|
|
private String name;
|
||
|
|
|
||
|
|
/** 标签,逗号分开 */
|
||
|
|
@Excel(name = "标签,逗号分开")
|
||
|
|
@ApiModelProperty("标签,逗号分开")
|
||
|
|
private String targ;
|
||
|
|
@Excel(name = "企业性质")
|
||
|
|
@ApiModelProperty("企业性质,逗号分开")
|
||
|
|
private String companyNature;
|
||
|
|
/** 背景色 */
|
||
|
|
@Excel(name = "背景色")
|
||
|
|
@ApiModelProperty("背景色")
|
||
|
|
private String backgroudColor;
|
||
|
|
private Integer status;
|
||
|
|
private Integer cardOrder;
|
||
|
|
private String description;
|
||
|
|
private String icon;
|
||
|
|
}
|