|
|
@@ -17,6 +17,8 @@
|
|
|
package org.springblade.system.user.entity;
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import com.baomidou.mybatisplus.annotation.FieldStrategy;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
@@ -158,11 +160,13 @@ public class User extends TenantEntity {
|
|
|
* 仓库名称id
|
|
|
*/
|
|
|
@ApiModelProperty(value = "仓库名称id")
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
|
private Long storageId;
|
|
|
|
|
|
/**
|
|
|
* 仓库名称
|
|
|
*/
|
|
|
@ApiModelProperty(value = "仓库名称")
|
|
|
+ @TableField(updateStrategy = FieldStrategy.IGNORED)
|
|
|
private String storageName;
|
|
|
}
|