yangys
2024-03-05 b542d4ff172d61e14a0c9428a82cf77bd4119498
mdc-parent/mdc-show/src/main/java/com/qianwen/mdc/dto/account/MachineAccountQueryDTO.java
@@ -1,5 +1,7 @@
package com.qianwen.mdc.dto.account;
import java.util.Date;
import com.qianwen.mdc.dto.BasePageDTO;
public class MachineAccountQueryDTO extends BasePageDTO{
@@ -53,6 +55,9 @@
     * 设备类型
     */
    private Long deviceTypeId;
    private Date productionDateBegin;
    private Date productionDateEnd;
    
   public String getUuid() {
      return uuid;
@@ -142,7 +147,21 @@
   public void setDeviceTypeId(Long deviceTypeId) {
      this.deviceTypeId = deviceTypeId;
   }
   public Date getProductionDateBegin() {
      return productionDateBegin;
   }
   public void setProductionDateBegin(Date productionDateBegin) {
      this.productionDateBegin = productionDateBegin;
   }
   public Date getProductionDateEnd() {
      return productionDateEnd;
   }
   public void setProductionDateEnd(Date productionDateEnd) {
      this.productionDateEnd = productionDateEnd;
   }
}