Commit 2c66ff06 by HlQ

[docs] 注释完善

1 parent 213ce67a
......@@ -52,7 +52,7 @@ public class DeviceDTO extends BaseDTO {
private Integer status;
/**
* 入库日期
* 入库日期,当状态为2时,该字段表示出库日期
*/
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate recDate;
......
......@@ -62,13 +62,13 @@ public class Device {
private String prodSector;
/**
* 状态:入库、出库、维修、借测、废弃
* 状态:入库1、出库2、维修3、借测4、废弃5
*/
@TableField(value = "\"status\"")
private Integer status;
/**
* 入库日期
* 入库日期,当状态为2时,该字段表示出库日期
*/
@TableField(value = "rec_date")
private LocalDate recDate;
......
......@@ -49,12 +49,12 @@ public class DeviceVO {
private String prodSector;
/**
* 状态:入库、出库、维修、借测、废弃
* 状态:入库1、出库2、维修3、借测4、废弃5
*/
private Integer status;
/**
* 入库日期
* 入库日期,当状态为2时,该字段表示出库日期
*/
private LocalDate recDate;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!