package org.jeecg.modules.mdc.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecg.common.aspect.annotation.Dict;
|
import org.jeecg.common.system.base.entity.JeecgEntity;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import java.io.Serializable;
|
|
/**
|
* @Description: 问题反馈
|
* @Author: Lius
|
* @Date: 2024-05-16
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("mdc_feedback")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value = "mdc_feedback对象", description = "问题反馈")
|
public class MdcFeedback extends JeecgEntity implements Serializable {
|
|
private static final long serialVersionUID = -3363504953566755540L;
|
|
/**
|
* 内容
|
*/
|
@Excel(name = "内容", width = 15)
|
@ApiModelProperty(value = "内容")
|
private String content;
|
/**
|
* 车间id
|
*/
|
@Excel(name = "车间id", width = 15)
|
@ApiModelProperty(value = "车间id")
|
@Dict(dictTable = "mdc_production", dicCode = "id", dicText = "production_name")
|
private String productionId;
|
|
}
|