智慧厨房
This commit is contained in:
parent
aa66bfdb39
commit
b3a3c0de81
|
|
@ -75,8 +75,8 @@ public class KitchenSampleDishesRecord extends BaseEntity {
|
||||||
|
|
||||||
/** 留样时间 */
|
/** 留样时间 */
|
||||||
@ApiModelProperty(value = "留样时间")
|
@ApiModelProperty(value = "留样时间")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@Excel(name = "留样时间", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "留样时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date sampleSaveTime;
|
private Date sampleSaveTime;
|
||||||
|
|
||||||
/** 厨师id */
|
/** 厨师id */
|
||||||
|
|
@ -96,26 +96,26 @@ public class KitchenSampleDishesRecord extends BaseEntity {
|
||||||
|
|
||||||
/** 打印时间 */
|
/** 打印时间 */
|
||||||
@ApiModelProperty(value = "打印时间")
|
@ApiModelProperty(value = "打印时间")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@Excel(name = "打印时间", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "打印时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date printRecordTime;
|
private Date printRecordTime;
|
||||||
|
|
||||||
/** 进入留样柜时间 */
|
/** 进入留样柜时间 */
|
||||||
@ApiModelProperty(value = "进入留样柜时间")
|
@ApiModelProperty(value = "进入留样柜时间")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@Excel(name = "进入留样柜时间", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "进入留样柜时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date enterCabinetTime;
|
private Date enterCabinetTime;
|
||||||
|
|
||||||
/** 离开留样柜时间 */
|
/** 离开留样柜时间 */
|
||||||
@ApiModelProperty(value = "离开留样柜时间")
|
@ApiModelProperty(value = "离开留样柜时间")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@Excel(name = "离开留样柜时间", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "离开留样柜时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date leaveCabinetTime;
|
private Date leaveCabinetTime;
|
||||||
|
|
||||||
/** 过期时间 */
|
/** 过期时间 */
|
||||||
@ApiModelProperty(value = "过期时间")
|
@ApiModelProperty(value = "过期时间")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@Excel(name = "过期时间", width = 30, dateFormat = "yyyy-MM-dd")
|
@Excel(name = "过期时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date expirationTime;
|
private Date expirationTime;
|
||||||
|
|
||||||
/** 重量是否达到标准 1是2否 */
|
/** 重量是否达到标准 1是2否 */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue