Initial commit
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
package com.gxwebsoft.tower.param;
|
||||
|
||||
import com.gxwebsoft.common.core.annotation.QueryField;
|
||||
import com.gxwebsoft.common.core.annotation.QueryType;
|
||||
import com.gxwebsoft.common.core.web.BaseParam;
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 配件管理查询参数
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-05-22 11:53:48
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerAccessoryParam对象", description = "配件管理查询参数")
|
||||
public class TowerAccessoryParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "自增ID")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer accessoryId;
|
||||
|
||||
@ApiModelProperty(value = "配件名称")
|
||||
private String accessoryName;
|
||||
|
||||
@ApiModelProperty(value = "配件分类")
|
||||
private String accessoryCategory;
|
||||
|
||||
@ApiModelProperty(value = "适用设备型号")
|
||||
private String accessoryModel;
|
||||
|
||||
@ApiModelProperty(value = "配件规格")
|
||||
private String accessorySpecs;
|
||||
|
||||
@ApiModelProperty(value = "单价")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private BigDecimal accessoryPrice;
|
||||
|
||||
@ApiModelProperty(value = "配件单位")
|
||||
private String accessoryUnit;
|
||||
|
||||
@ApiModelProperty(value = "库存总量")
|
||||
private String accessoryStock;
|
||||
|
||||
@ApiModelProperty(value = "产权单位名称")
|
||||
private String companyName;
|
||||
|
||||
@ApiModelProperty(value = "制造厂商")
|
||||
private String manufactor;
|
||||
|
||||
@ApiModelProperty(value = "制造厂商编号")
|
||||
private String manufactorNo;
|
||||
|
||||
@ApiModelProperty(value = "使用年限")
|
||||
private String lifeYear;
|
||||
|
||||
@ApiModelProperty(value = "出厂日期")
|
||||
private String factoryDate;
|
||||
|
||||
@ApiModelProperty(value = "报废日期")
|
||||
private String scrapDate;
|
||||
|
||||
@ApiModelProperty(value = "状态, 0待发布, 1已发布")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer status;
|
||||
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String comments;
|
||||
|
||||
@ApiModelProperty(value = "排序号")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer sortNumber;
|
||||
|
||||
@ApiModelProperty(value = "所有人")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer userId;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer deleted;
|
||||
|
||||
}
|
||||
110
src/main/java/com/gxwebsoft/tower/param/TowerEquipmentParam.java
Normal file
110
src/main/java/com/gxwebsoft/tower/param/TowerEquipmentParam.java
Normal file
@@ -0,0 +1,110 @@
|
||||
package com.gxwebsoft.tower.param;
|
||||
|
||||
import com.gxwebsoft.common.core.annotation.QueryField;
|
||||
import com.gxwebsoft.common.core.annotation.QueryType;
|
||||
import com.gxwebsoft.common.core.web.BaseParam;
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 塔吊设备管理查询参数
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-05-20 15:06:43
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerEquipmentParam对象", description = "塔吊设备管理查询参数")
|
||||
public class TowerEquipmentParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "自增ID")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer equipmentId;
|
||||
|
||||
@ApiModelProperty(value = "设备名称")
|
||||
private String name;
|
||||
|
||||
@ApiModelProperty(value = "设备型号")
|
||||
private String model;
|
||||
|
||||
@ApiModelProperty(value = "设备编号")
|
||||
private String equipmentNo;
|
||||
|
||||
@ApiModelProperty(value = "出厂编号")
|
||||
private String factoryNo;
|
||||
|
||||
@ApiModelProperty(value = "出厂日期")
|
||||
private String factoryDate;
|
||||
|
||||
@ApiModelProperty(value = "制造厂商")
|
||||
private String manufactor;
|
||||
|
||||
@ApiModelProperty(value = "使用年限")
|
||||
private String lifeYear;
|
||||
|
||||
@ApiModelProperty(value = "报废日期")
|
||||
private String scrapDate;
|
||||
|
||||
@ApiModelProperty(value = "备案许可证号")
|
||||
private String licenceNo;
|
||||
|
||||
@ApiModelProperty(value = "产权单位")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private String company;
|
||||
|
||||
@ApiModelProperty(value = "产权单位名称")
|
||||
private String propertyCompany;
|
||||
|
||||
@ApiModelProperty(value = "所属部门")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private String organization;
|
||||
|
||||
@ApiModelProperty(value = "所属仓库")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private String warehouse;
|
||||
|
||||
@ApiModelProperty(value = "设备来源")
|
||||
private String source;
|
||||
|
||||
@ApiModelProperty(value = "采购日期")
|
||||
private String buyDate;
|
||||
|
||||
@ApiModelProperty(value = "当前位置")
|
||||
private String currentLocation;
|
||||
|
||||
@ApiModelProperty(value = "设计高度")
|
||||
private String designHeight;
|
||||
|
||||
@ApiModelProperty(value = "独立高度")
|
||||
private String height;
|
||||
|
||||
@ApiModelProperty(value = "额定载重")
|
||||
private String ratedLoad;
|
||||
|
||||
@ApiModelProperty(value = "最大幅度处额定载重")
|
||||
private String maxRatedLoad;
|
||||
|
||||
@ApiModelProperty(value = "附件信息")
|
||||
private String files;
|
||||
|
||||
@ApiModelProperty(value = "状态, 0待发布, 1已发布")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer status;
|
||||
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String comments;
|
||||
|
||||
@ApiModelProperty(value = "所有人")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer userId;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer deleted;
|
||||
|
||||
}
|
||||
61
src/main/java/com/gxwebsoft/tower/param/TowerModelParam.java
Normal file
61
src/main/java/com/gxwebsoft/tower/param/TowerModelParam.java
Normal file
@@ -0,0 +1,61 @@
|
||||
package com.gxwebsoft.tower.param;
|
||||
|
||||
import com.gxwebsoft.common.core.annotation.QueryField;
|
||||
import com.gxwebsoft.common.core.annotation.QueryType;
|
||||
import com.gxwebsoft.common.core.web.BaseParam;
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 设备型号管理表查询参数
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-05-29 14:07:46
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerModelParam对象", description = "设备型号管理表查询参数")
|
||||
public class TowerModelParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "型号ID")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer categoryId;
|
||||
|
||||
@ApiModelProperty(value = "设备型号名称")
|
||||
private String title;
|
||||
|
||||
@ApiModelProperty(value = "上级分类ID")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer parentId;
|
||||
|
||||
@ApiModelProperty(value = "分类图片")
|
||||
private String image;
|
||||
|
||||
@ApiModelProperty(value = "用户ID")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer userId;
|
||||
|
||||
@ApiModelProperty(value = "使用年限")
|
||||
private Integer yearLife;
|
||||
|
||||
@ApiModelProperty(value = "排序(数字越小越靠前)")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer sortNumber;
|
||||
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String comments;
|
||||
|
||||
@ApiModelProperty(value = "状态, 0正常, 1冻结")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer status;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer deleted;
|
||||
|
||||
}
|
||||
103
src/main/java/com/gxwebsoft/tower/param/TowerProjectParam.java
Normal file
103
src/main/java/com/gxwebsoft/tower/param/TowerProjectParam.java
Normal file
@@ -0,0 +1,103 @@
|
||||
package com.gxwebsoft.tower.param;
|
||||
|
||||
import com.gxwebsoft.common.core.annotation.QueryField;
|
||||
import com.gxwebsoft.common.core.annotation.QueryType;
|
||||
import com.gxwebsoft.common.core.web.BaseParam;
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 项目管理查询参数
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-05-22 13:30:39
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerProjectParam对象", description = "项目管理查询参数")
|
||||
public class TowerProjectParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "自增ID")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer projectId;
|
||||
|
||||
@ApiModelProperty(value = "配件名称")
|
||||
private String projectName;
|
||||
|
||||
@ApiModelProperty(value = "租赁单位")
|
||||
private String companyName;
|
||||
|
||||
@ApiModelProperty(value = "承租单位")
|
||||
private String customerName;
|
||||
|
||||
@ApiModelProperty(value = "项目地址")
|
||||
private String projectRegion;
|
||||
|
||||
@ApiModelProperty(value = "详细地址")
|
||||
private String projectAddress;
|
||||
|
||||
@ApiModelProperty(value = "经度")
|
||||
private String longitude;
|
||||
|
||||
@ApiModelProperty(value = "纬度")
|
||||
private String latitude;
|
||||
|
||||
@ApiModelProperty(value = "报监编号")
|
||||
private String superviseNo;
|
||||
|
||||
@ApiModelProperty(value = "施工许可证")
|
||||
private String licenceNo;
|
||||
|
||||
@ApiModelProperty(value = "安全状态")
|
||||
private String securityStatus;
|
||||
|
||||
@ApiModelProperty(value = "主管部门")
|
||||
private String competentDepartment;
|
||||
|
||||
@ApiModelProperty(value = "安拆单位")
|
||||
private String dismantlingCompany;
|
||||
|
||||
@ApiModelProperty(value = "汽吊规格")
|
||||
private String truckCraneSpecs;
|
||||
|
||||
@ApiModelProperty(value = "合同其他说明")
|
||||
private String contract;
|
||||
|
||||
@ApiModelProperty(value = "项目负责人")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer director;
|
||||
|
||||
@ApiModelProperty(value = "项目经理")
|
||||
private String projectDirector;
|
||||
|
||||
@ApiModelProperty(value = "项目状态")
|
||||
private String projectStatus;
|
||||
|
||||
@ApiModelProperty(value = "业务员")
|
||||
private String salesman;
|
||||
|
||||
@ApiModelProperty(value = "状态, 0待发布, 1已发布")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer status;
|
||||
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String comments;
|
||||
|
||||
@ApiModelProperty(value = "排序号")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer sortNumber;
|
||||
|
||||
@ApiModelProperty(value = "所有人")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer userId;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer deleted;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
package com.gxwebsoft.tower.param;
|
||||
|
||||
import com.gxwebsoft.common.core.annotation.QueryField;
|
||||
import com.gxwebsoft.common.core.annotation.QueryType;
|
||||
import com.gxwebsoft.common.core.web.BaseParam;
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 仓库管理查询参数
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-05-20 15:06:43
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||
@ApiModel(value = "TowerWarehouseParam对象", description = "仓库管理查询参数")
|
||||
public class TowerWarehouseParam extends BaseParam {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "自增ID")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer warehouseId;
|
||||
|
||||
@ApiModelProperty(value = "仓库名称")
|
||||
private String warehouseName;
|
||||
|
||||
@ApiModelProperty(value = "负责人")
|
||||
private String warehouseKeeper;
|
||||
|
||||
@ApiModelProperty(value = "联系电话")
|
||||
private String warehousePhone;
|
||||
|
||||
@ApiModelProperty(value = "经度")
|
||||
private String longitude;
|
||||
|
||||
@ApiModelProperty(value = "纬度")
|
||||
private String latitude;
|
||||
|
||||
@ApiModelProperty(value = "所在国家")
|
||||
private String country;
|
||||
|
||||
@ApiModelProperty(value = "所在省份")
|
||||
private String province;
|
||||
|
||||
@ApiModelProperty(value = "所在城市")
|
||||
private String city;
|
||||
|
||||
@ApiModelProperty(value = "所在辖区")
|
||||
private String region;
|
||||
|
||||
@ApiModelProperty(value = "街道地址")
|
||||
private String address;
|
||||
|
||||
@ApiModelProperty(value = "区域名称")
|
||||
private String regionName;
|
||||
|
||||
@ApiModelProperty(value = "状态, 0待发布, 1已发布")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer status;
|
||||
|
||||
@ApiModelProperty(value = "备注")
|
||||
private String comments;
|
||||
|
||||
@ApiModelProperty(value = "所有人")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer userId;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@QueryField(type = QueryType.EQ)
|
||||
private Integer deleted;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user