提交 bf08725f authored 作者: zhoushaopan's avatar zhoushaopan

feat(装备模块): 添加装备试用字段

添加装备试用字段
上级 afafdc45
...@@ -192,6 +192,9 @@ public class DeviceLibrary { ...@@ -192,6 +192,9 @@ public class DeviceLibrary {
@ApiModelProperty(value = "删除标记(0:未删除,1:已删除)") @ApiModelProperty(value = "删除标记(0:未删除,1:已删除)")
private Integer deleteTag = 0; private Integer deleteTag = 0;
@ApiModelProperty(value = "是否是试用装备",notes = "0 是正式 1 是测试")
private Integer tryOutDevice = 0;
@ApiModelProperty(value = "入库操作人") @ApiModelProperty(value = "入库操作人")
@Transient @Transient
private String storageProcessingUser; private String storageProcessingUser;
......
...@@ -60,4 +60,9 @@ public class DeviceLibrarySaveVo { ...@@ -60,4 +60,9 @@ public class DeviceLibrarySaveVo {
@ApiModelProperty(value = "装备存放位置",notes = "默认是库房") @ApiModelProperty(value = "装备存放位置",notes = "默认是库房")
private String storageLocation; private String storageLocation;
@ApiModelProperty(value = "是否是试用装备",notes = "0 是正式 1 是测试")
private Integer tryOutDevice = 0;
@ApiModelProperty(value = "试用装备数量")
private Integer tryOutDeviceNum ;
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论