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.
29 lines
766 B
Java
29 lines
766 B
Java
package com.glxp.api.entity.auth;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
@Data
|
|
@TableName(value = "auth_user_bustype")
|
|
public class InvBusUserEntity {
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Long id;
|
|
@TableField(value = "userId")
|
|
private String userId;
|
|
@TableField(value = "subInvCode")
|
|
private String subInvCode;
|
|
@TableField(value = "scAction")
|
|
private String scAction;
|
|
@TableField(value = "remark")
|
|
private String remark;
|
|
@TableField(value = "updateTime")
|
|
private Date updateTime;
|
|
|
|
}
|