概览实体
This commit is contained in:
parent
dece99858d
commit
c402049875
|
|
@ -0,0 +1,35 @@
|
||||||
|
package com.dkl.large.domain;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
import com.dkl.common.annotation.Excel;
|
||||||
|
import com.dkl.common.core.domain.BaseEntity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 视频对象 dkl_clip
|
||||||
|
*
|
||||||
|
* @author Dkl
|
||||||
|
* @date 2025-11-03
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class DklClip extends BaseEntity
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** id */
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/** 类型 */
|
||||||
|
@Excel(name = "类型")
|
||||||
|
private String types;
|
||||||
|
|
||||||
|
/** 删除标志(0代表存在 2代表删除) */
|
||||||
|
private String delFlag;
|
||||||
|
|
||||||
|
/** 次数 */
|
||||||
|
@Excel(name = "次数")
|
||||||
|
private Long contents;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue