parent
8fc19cfeb0
commit
f8437f1c1a
@ -1,13 +1,24 @@
|
|||||||
package com.glxp.api.entity.auth;
|
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 lombok.Data;
|
||||||
|
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
|
@TableName(value = "auth_user_bustype")
|
||||||
public class InvBusUserEntity {
|
public class InvBusUserEntity {
|
||||||
|
@TableId(value = "id", type = IdType.AUTO)
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
@TableField(value = "userId")
|
||||||
private String userId;
|
private String userId;
|
||||||
|
@TableField(value = "subInvCode")
|
||||||
private String subInvCode;
|
private String subInvCode;
|
||||||
|
@TableField(value = "scAction")
|
||||||
private String scAction;
|
private String scAction;
|
||||||
|
@TableField(value = "remark")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,31 +1,41 @@
|
|||||||
package com.glxp.api.entity.auth;
|
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 lombok.Data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 仓库字典-单据类型关联表
|
* 仓库字典-单据类型关联表
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
|
@TableName(value = "auth_warehouse_bustype")
|
||||||
public class WarehouseBussinessTypeEntity {
|
public class WarehouseBussinessTypeEntity {
|
||||||
/**
|
/**
|
||||||
* id
|
* id
|
||||||
*/
|
*/
|
||||||
|
@TableId(value = "id", type = IdType.AUTO)
|
||||||
private Integer id;
|
private Integer id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 仓位码
|
* 仓位码
|
||||||
*/
|
*/
|
||||||
|
@TableField(value = "code")
|
||||||
private String code;
|
private String code;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 业务类型
|
* 业务类型
|
||||||
*/
|
*/
|
||||||
|
@TableField(value = "action")
|
||||||
private String action;
|
private String action;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 业务名称
|
* 业务名称
|
||||||
*/
|
*/
|
||||||
|
@TableField(value = "name")
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
|
@TableField(exist = false)
|
||||||
private boolean select;
|
private boolean select;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue