Blame view

LaborGroupDictDO.java 698 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("labor_group_dict")
public class LaborGroupDictDO 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 parentId;
涂亚平 committed
29

涂亚平 committed
30
    private Long laborId;
涂亚平 committed
31

涂亚平 committed
32
    private String groupName;
涂亚平 committed
33 34

}