You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
781 B
Java
48 lines
781 B
Java
package com.glxp.api.entity.auth;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 仓库字典-用户关联表
|
|
*/
|
|
@Data
|
|
@TableName("auth_warehouse_user")
|
|
public class WarehouseUserEntity {
|
|
/**
|
|
* id
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 仓位码
|
|
*/
|
|
private String code;
|
|
|
|
/**
|
|
* 用户id
|
|
*/
|
|
private Long userid;
|
|
|
|
/**
|
|
* 用户名/登录账号
|
|
*/
|
|
private String username;
|
|
|
|
/**
|
|
* 是否是仓库主管
|
|
*/
|
|
@TableField("isDirector")
|
|
private boolean isDirector;
|
|
|
|
@TableField("employeeName")
|
|
private String employeeName;
|
|
|
|
@TableField("updateTime")
|
|
private Date updateTime;
|
|
|
|
}
|