Initial commit

This commit is contained in:
南宁网宿科技
2023-06-03 23:56:49 +08:00
commit 912944faea
821 changed files with 74279 additions and 0 deletions

View File

@@ -0,0 +1,109 @@
package com.gxwebsoft.tower.entity;
import java.math.BigDecimal;
import com.baomidou.mybatisplus.annotation.IdType;
import java.time.LocalDate;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.TableLogic;
import java.io.Serializable;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 配件管理
*
* @author 科技小王子
* @since 2023-05-22 11:53:48
*/
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "TowerAccessory对象", description = "配件管理")
public class TowerAccessory implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "自增ID")
@TableId(value = "accessory_id", type = IdType.AUTO)
private Integer accessoryId;
@ApiModelProperty(value = "配件名称")
private String accessoryName;
@ApiModelProperty(value = "配件编号")
private String accessoryNo;
@ApiModelProperty(value = "配件分类")
private String accessoryCategory;
@ApiModelProperty(value = "适用设备型号")
private String accessoryModel;
@ApiModelProperty(value = "配件规格")
private String accessorySpecs;
@ApiModelProperty(value = "单价")
private BigDecimal accessoryPrice;
@ApiModelProperty(value = "配件单位")
private String accessoryUnit;
@ApiModelProperty(value = "重量")
private String accessoryWeight;
@ApiModelProperty(value = "库存总量")
private Integer accessoryStock;
@ApiModelProperty(value = "产权单位名称")
private String companyName;
@ApiModelProperty(value = "产权单位编号")
private String companyNo;
@ApiModelProperty(value = "制造厂商")
private String manufactor;
@ApiModelProperty(value = "制造厂商编号")
private String manufactorNo;
@ApiModelProperty(value = "使用年限")
private String lifeYear;
@ApiModelProperty(value = "出厂日期")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date factoryDate;
@ApiModelProperty(value = "报废日期")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date scrapDate;
@ApiModelProperty(value = "状态, 0待发布, 1已发布")
private Integer status;
@ApiModelProperty(value = "备注")
private String comments;
@ApiModelProperty(value = "排序号")
private Integer sortNumber;
@ApiModelProperty(value = "所有人")
private Integer userId;
@ApiModelProperty(value = "是否删除, 0否, 1是")
@TableLogic
private Integer deleted;
@ApiModelProperty(value = "租户id")
private Integer tenantId;
@ApiModelProperty(value = "创建时间")
private Date createTime;
@ApiModelProperty(value = "修改时间")
private Date updateTime;
}

View File

@@ -0,0 +1,160 @@
package com.gxwebsoft.tower.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.util.Date;
/**
* 塔吊设备管理
*
* @author 科技小王子
* @since 2023-05-20 15:06:43
*/
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "TowerEquipment对象", description = "塔吊设备管理")
public class TowerEquipment implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "自增ID")
@TableId(value = "equipment_id", type = IdType.AUTO)
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 = "出厂日期")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date factoryDate;
@ApiModelProperty(value = "制造厂商")
private String manufactor;
@ApiModelProperty(value = "使用年限")
private String lifeYear;
@ApiModelProperty(value = "报废日期")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date scrapDate;
@ApiModelProperty(value = "备案编号")
private String filingNo;
@ApiModelProperty(value = "机号")
private String machineNo;
@ApiModelProperty(value = "备案许可证号")
private String licenceNo;
@ApiModelProperty(value = "产权单位")
private String company;
@ApiModelProperty(value = "所属部门")
private String organization;
@ApiModelProperty(value = "所属仓库")
private String warehouse;
@ApiModelProperty(value = "设备来源")
private String source;
@ApiModelProperty(value = "采购日期")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date 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 maxLiftingHeight;
@ApiModelProperty(value = "臂长")
private String armLength;
@ApiModelProperty(value = "附件1")
private String file1;
@ApiModelProperty(value = "附件2")
private String file2;
@ApiModelProperty(value = "附件3")
private String file3;
@ApiModelProperty(value = "附件4")
private String file4;
@ApiModelProperty(value = "附件5")
private String file5;
@ApiModelProperty(value = "附件6")
private String file6;
@ApiModelProperty(value = "附件7")
private String file7;
@ApiModelProperty(value = "当前位置")
private String address;
@ApiModelProperty(value = "是否外协标识")
@TableField(exist = false)
private Boolean isOutOrg;
@ApiModelProperty(value = "所属人员")
private String users;
@ApiModelProperty(value = "状态, 0待发布, 1已发布")
private Integer status;
@ApiModelProperty(value = "备注")
private String comments;
@ApiModelProperty(value = "所有人")
private Integer userId;
@ApiModelProperty(value = "排序(数字越小越靠前)")
private Integer sortNumber;
@ApiModelProperty(value = "是否删除, 0否, 1是")
@TableLogic
private Integer deleted;
@ApiModelProperty(value = "租户id")
private Integer tenantId;
@ApiModelProperty(value = "创建时间")
private Date createTime;
@ApiModelProperty(value = "修改时间")
private Date updateTime;
}

View File

@@ -0,0 +1,67 @@
package com.gxwebsoft.tower.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.util.Date;
/**
* 设备型号管理表
*
* @author 科技小王子
* @since 2023-05-29 14:07:46
*/
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "TowerModel对象", description = "设备型号管理表")
public class TowerModel implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "型号ID")
@TableId(value = "category_id", type = IdType.AUTO)
private Integer categoryId;
@ApiModelProperty(value = "设备型号名称")
private String title;
@ApiModelProperty(value = "上级分类ID")
private Integer parentId;
@ApiModelProperty(value = "分类图片")
private String image;
@ApiModelProperty(value = "用户ID")
private Integer userId;
@ApiModelProperty(value = "使用年限")
private Integer yearLife;
@ApiModelProperty(value = "排序(数字越小越靠前)")
private Integer sortNumber;
@ApiModelProperty(value = "备注")
private String comments;
@ApiModelProperty(value = "状态, 0正常, 1冻结")
private Integer status;
@ApiModelProperty(value = "是否删除, 0否, 1是")
@TableLogic
private Integer deleted;
@ApiModelProperty(value = "租户id")
private Integer tenantId;
@ApiModelProperty(value = "注册时间")
private Date createTime;
@ApiModelProperty(value = "修改时间")
private Date updateTime;
}

View File

@@ -0,0 +1,113 @@
package com.gxwebsoft.tower.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.TableLogic;
import java.io.Serializable;
import java.util.Date;
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)
@ApiModel(value = "TowerProject对象", description = "项目管理")
public class TowerProject implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "自增ID")
@TableId(value = "project_id", type = IdType.AUTO)
private Integer projectId;
@ApiModelProperty(value = "项目名称")
private String projectName;
@ApiModelProperty(value = "项目封面图")
private String projectLogo;
@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 = "项目负责人")
private String director;
@ApiModelProperty(value = "项目经理")
private String projectDirector;
@ApiModelProperty(value = "项目状态")
private String projectStatus;
@ApiModelProperty(value = "业务员")
private String salesman;
@ApiModelProperty(value = "状态, 0待发布, 1已发布")
private Integer status;
@ApiModelProperty(value = "备注")
private String comments;
@ApiModelProperty(value = "排序号")
private Integer sortNumber;
@ApiModelProperty(value = "所有人")
private Integer userId;
@ApiModelProperty(value = "是否删除, 0否, 1是")
@TableLogic
private Integer deleted;
@ApiModelProperty(value = "租户id")
private Integer tenantId;
@ApiModelProperty(value = "创建时间")
private Date createTime;
@ApiModelProperty(value = "修改时间")
private Date updateTime;
}

View File

@@ -0,0 +1,88 @@
package com.gxwebsoft.tower.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.util.Date;
/**
* 仓库管理
*
* @author 科技小王子
* @since 2023-05-20 15:06:43
*/
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "TowerWarehouse对象", description = "仓库管理")
public class TowerWarehouse implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelProperty(value = "自增ID")
@TableId(value = "warehouse_id", type = IdType.AUTO)
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已发布")
private Integer status;
@ApiModelProperty(value = "备注")
private String comments;
@ApiModelProperty(value = "排序(数字越小越靠前)")
private Integer sortNumber;
@ApiModelProperty(value = "所有人")
private Integer userId;
@ApiModelProperty(value = "是否删除, 0否, 1是")
@TableLogic
private Integer deleted;
@ApiModelProperty(value = "租户id")
private Integer tenantId;
@ApiModelProperty(value = "创建时间")
private Date createTime;
@ApiModelProperty(value = "修改时间")
private Date updateTime;
}