package cn.lili.modules.lmk.domain.entity;
|
|
import cn.lili.mybatis.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import java.io.Serializable;
|
import lombok.Data;
|
|
/**
|
* 用户增加次数校验
|
*
|
* @author peng
|
* @since 2025-09-29
|
*/
|
@Data
|
@TableName("lmk_add_num_cheek")
|
public class AddNumCheek extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableField("user_id")
|
/** 用户id */
|
private String userId;
|
|
@TableField("type")
|
/** 类型 */
|
private String type;
|
|
@TableField("check_no")
|
/** 校验编号 */
|
private String checkNo;
|
|
|
}
|