gongchunyi
18 小时以前 bfc816fe3757d7c0b1f95a18e8ec9fbc3e717ae1
src/main/java/com/ruoyi/device/dto/DeviceLedgerDto.java
@@ -7,6 +7,7 @@
import com.ruoyi.dto.DateQueryDto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springframework.format.annotation.DateTimeFormat;
import java.math.BigDecimal;
@@ -18,6 +19,7 @@
 */
@Data
@TableName("device_ledger")
@EqualsAndHashCode(callSuper = true)
public class DeviceLedgerDto extends DateQueryDto {
    /**
@@ -145,4 +147,10 @@
    @ApiModelProperty("设备类型")
    private String type;
    @ApiModelProperty("工序ID")
    private Long productProcessId;
    @ApiModelProperty("工序名称")
    private String productProcessName;
}