package cn.stylefeng.guns.sys.modular.system.model.result; import lombok.Data; import java.io.Serializable; /** *

* 用户职位关联表 *

* * @author stylefeng * @since 2019-06-28 */ @Data public class UserPosResult implements Serializable { private static final long serialVersionUID = 1L; /** * 主键id */ private Long userPosId; /** * 用户id */ private Long userId; /** * 职位id */ private Long posId; }