yangys
2024-02-07 a9816afaf13115c2119fd607ce505b72452f64a9
mdc-parent/mdc-show/src/main/java/com/qianwen/mdc/dto/machine/MachineDTO.java
@@ -36,13 +36,13 @@
     * 车间id
     */
    @NotNull(message = "车间不能为空")
    private Integer workshopId;
    private Long workshopId;
    /**
     * 工段id
     */
    @NotNull(message = "工段不能为空")
    private Integer sectionId;
    private Long sectionId;
    /**
     * 传输模式(0. com; 1. share; 2. net)
     */
@@ -92,19 +92,19 @@
      this.protocolId = protocolId;
   }
   public Integer getWorkshopId() {
   public Long getWorkshopId() {
      return workshopId;
   }
   public void setWorkshopId(Integer workshopId) {
   public void setWorkshopId(Long workshopId) {
      this.workshopId = workshopId;
   }
   public Integer getSectionId() {
   public Long getSectionId() {
      return sectionId;
   }
   public void setSectionId(Integer sectionId) {
   public void setSectionId(Long sectionId) {
      this.sectionId = sectionId;
   }