Blame view

GroupMemberMappingDO.java 676 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11
package com.subsidy.model;

import com.subsidy.util.BaseModel;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;

/**
 * <p>
涂亚平 committed
12
 * 群组人员映射表
涂亚平 committed
13 14 15
 * </p>
 *
 * @author Tuyp
涂亚平 committed
16
 * @since 2024-07-23
涂亚平 committed
17 18 19
 */
@Data
@EqualsAndHashCode(callSuper = true)
涂亚平 committed
20 21
@TableName("group_member_mapping")
public class GroupMemberMappingDO extends BaseModel {
涂亚平 committed
22 23 24 25 26 27

    private static final long serialVersionUID = 1L;

    @TableId(value = "id", type = IdType.AUTO)
    private Long id;

涂亚平 committed
28
    private Long groupId;
涂亚平 committed
29

涂亚平 committed
30
    private Long memberId;
涂亚平 committed
31 32 33


}