邱宇豪
2023-09-26 6f29c4f4f54f1ae0fc44773cfb867046f2747a51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.thhy.secure.modules.biz.regionWarranty.entity;
 
import com.thhy.general.annotations.Idkey;
import lombok.Data;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-09-26 14:39:29
 * 中间表
 */
@Data
public class TRegionWarrantyUserEntity {
    @Idkey("id")
    private String id;
    private String regionWarrantyId;//区域包保表id
    private Integer userType;
    private String userId;//1是领导  2是小组成员
    private String realName;//姓名
}