自动化立体仓库 - WCS系统
*
lsh
2025-04-10 9743ac76a94b26c142e4a56c450fc88f55cae377
src/main/java/com/zy/system/entity/UserLogin.java
@@ -12,7 +12,7 @@
import java.text.SimpleDateFormat;
import java.util.Date;
@TableName("sys_user_login")
@TableName("\"SOURCE\".\"sys_user_login\"")
public class UserLogin implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -20,24 +20,25 @@
    /**
     * 编号
     */
    @TableId(value = "id", type = IdType.AUTO)
    @TableId(value = "ID", type = IdType.AUTO)
    private Long id;
    /**
     * 员工
     */
    @TableField("user_id")
    @TableField("USER_ID")
    private Long userId;
    /**
     * 凭证值
     */
    @TableField("TOKEN")
    private String token;
    /**
     * 添加时间
     */
    @TableField("create_time")
    @TableField("CREATE_TIME")
    private Date createTime;
    public Long getId() {