yangys
2024-02-07 a9816afaf13115c2119fd607ce505b72452f64a9
mdc-parent/mdc-show/src/main/java/com/qianwen/mdc/dto/machine/MachineQueryDTO.java
@@ -29,7 +29,7 @@
   /**
    * 车间id
    */
   private Integer workshopId;
   private Long workshopId;
   
   /**
    * 关注标志
@@ -38,7 +38,7 @@
   /**
    * 工段id
    */
   private Integer sectionId;
   private Long sectionId;
   /**
    * 状态, RUN/STOP/IDLE/ALARM,对应车间地图等界面上面的4个状态筛选 
    */
@@ -57,10 +57,10 @@
      this.machineName = machineName;
   }
   
   public Integer getWorkshopId() {
   public Long getWorkshopId() {
      return workshopId;
   }
   public void setWorkshopId(Integer workshopId) {
   public void setWorkshopId(Long workshopId) {
      this.workshopId = workshopId;
   }
   public String getStatus() {
@@ -81,10 +81,10 @@
   public void setIp(String ip) {
      this.ip = ip;
   }
   public Integer getSectionId() {
   public Long getSectionId() {
      return sectionId;
   }
   public void setSectionId(Integer sectionId) {
   public void setSectionId(Long sectionId) {
      this.sectionId = sectionId;
   }
   public Integer getTransMode() {