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;//姓名
|
}
|