You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
869 B
37 lines
869 B
package com.ruoyi.tcZz.domain;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
/**
|
|
* 媒体类型对象 tc_mtlx
|
|
*
|
|
* @author ruoyi
|
|
* @date 2023-10-12
|
|
*/
|
|
@Data
|
|
@ApiModel("媒体类型对象")
|
|
public class TcMtlx extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** $column.columnComment */
|
|
@ApiModelProperty(value = "id")
|
|
private Long id;
|
|
|
|
/** 名称 */
|
|
@Excel(name = "名称")
|
|
@ApiModelProperty(value = "名称")
|
|
private String name;
|
|
|
|
/** 占比 */
|
|
@Excel(name = "占比")
|
|
@ApiModelProperty(value = "占比")
|
|
private String zb;
|
|
}
|