package cc.mrbird.febs.ai.entity;
|
|
import cc.mrbird.febs.common.entity.AiBaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
@Data
|
@TableName("ai_member_point")
|
public class AiMemberPoint extends AiBaseEntity {
|
/**
|
*
|
`company_id` varchar(36) DEFAULT NULL COMMENT '公司ID',
|
`product_point_id` varchar(36) DEFAULT NULL COMMENT 'ai产品ID',
|
`member_id` varchar(36) DEFAULT NULL,
|
`total_time` int(11) DEFAULT NULL
|
*/
|
/**
|
* 公司ID
|
*/
|
private String companyId;
|
/**
|
* ai产品ID
|
*/
|
private String productPointId;
|
/**
|
* 会员ID
|
*/
|
private String memberId;
|
/**
|
* 总时长
|
*/
|
private Integer totalTime;
|
}
|