yun-zuoyi
zcg 6 years ago
commit f2d73a0687

@ -6,5 +6,6 @@ import lombok.Data;
public class GanttDragModel { public class GanttDragModel {
private Long workId; private Long workId;
private Long resId; private Long resId;
private Long targetResId;
private Long targetWorkId; private Long targetWorkId;
} }

@ -19,9 +19,9 @@ public class GanttPlanModel {
@JsonDeserialize(using = CustomDateDeserializer.class) @JsonDeserialize(using = CustomDateDeserializer.class)
private Date endDate; private Date endDate;
private String cls; private String cls;
//private String timeRangeColor;
private String eventColor; private String eventColor;
private String name; private String name;
private Long workId; private Long workId;
private List<Long> resIds; private List<Long> resIds;
private Boolean draggable;
} }

@ -118,8 +118,4 @@ public class WmsDocMovementSn extends BaseBean {
@Transient @Transient
@AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class,refForeignKey = "value",value = "description") @AnnoOutputColumn(refClass = WmsEnumUtil.STOCK_SN_STATUS.class,refForeignKey = "value",value = "description")
public Integer itemStatus; public Integer itemStatus;
@Transient
@ApiParam("打印模板名称")
private String templateName;
} }

@ -282,6 +282,10 @@ public class WmsStockSn extends BaseBean {
@ApiParam(value = "是否最早批次") @ApiParam(value = "是否最早批次")
public String isFifo; public String isFifo;
@Transient
@ApiParam("打印模板名称")
private String templateName;
public WmsStockSn() { public WmsStockSn() {
} }

Loading…
Cancel
Save