parent
eea448ad56
commit
cb437fab32
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 施工报告 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-construction-report") |
||||
public class IConstructionReportController { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 工程日志 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-engineer-log") |
||||
public class IEngineerLogController { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 人力信息表 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-manpower") |
||||
public class IManpowerController { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 材料信息表 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-materials") |
||||
public class IMaterialsController { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 生产计划表 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-production-plan") |
||||
public class IProductionPlanController { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 进度跟踪表 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-progress") |
||||
public class IProgressController { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 资源调度表 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-resource-schedule") |
||||
public class IResourceScheduleController { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 安全教育 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-safe") |
||||
public class ISafeController { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 实名制与信息管理 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-user") |
||||
public class IUserController { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.controller; |
||||
|
||||
|
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* <p> |
||||
* 预警表 前端控制器 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@RestController |
||||
@RequestMapping("/i-warn") |
||||
public class IWarnController { |
||||
|
||||
} |
@ -0,0 +1,71 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.time.LocalDateTime; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 施工报告 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_construction_report") |
||||
@ApiModel(value="IConstructionReport对象", description="施工报告") |
||||
public class IConstructionReport implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "报告日期") |
||||
private LocalDateTime date; |
||||
|
||||
@ApiModelProperty(value = "报告周期") |
||||
private String cycle; |
||||
|
||||
@ApiModelProperty(value = "计划id") |
||||
private Long planId; |
||||
|
||||
@ApiModelProperty(value = "计划名称") |
||||
private String planName; |
||||
|
||||
@ApiModelProperty(value = "总体进度") |
||||
private String totalProgress; |
||||
|
||||
@ApiModelProperty(value = "人力投入") |
||||
private String manpower; |
||||
|
||||
@ApiModelProperty(value = "材料使用") |
||||
private String materialsUse; |
||||
|
||||
@ApiModelProperty(value = "机械设备运行") |
||||
private String equipmentOperation; |
||||
|
||||
@ApiModelProperty(value = "质量安全") |
||||
private String qs; |
||||
|
||||
@ApiModelProperty(value = "建议") |
||||
private String advise; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
|
||||
} |
@ -0,0 +1,68 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.time.LocalDateTime; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 工程日志 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_engineer_log") |
||||
@ApiModel(value="IEngineerLog对象", description="工程日志") |
||||
public class IEngineerLog implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "日期") |
||||
private LocalDateTime date; |
||||
|
||||
@ApiModelProperty(value = "天气") |
||||
private String |
||||
weather; |
||||
|
||||
@ApiModelProperty(value = "温度") |
||||
private String temperature; |
||||
|
||||
@ApiModelProperty(value = "风力") |
||||
private String wind; |
||||
|
||||
@ApiModelProperty(value = "现场负责人姓名") |
||||
private String |
||||
principalName; |
||||
|
||||
@ApiModelProperty(value = "现场负责人联系方式") |
||||
private String |
||||
principalTel; |
||||
|
||||
@ApiModelProperty(value = "施工情况") |
||||
private String constructionSituation; |
||||
|
||||
@ApiModelProperty(value = "其他事项") |
||||
private String otherBusiness; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
|
||||
} |
@ -0,0 +1,60 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.time.LocalDateTime; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 人力信息表 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_manpower") |
||||
@ApiModel(value="IManpower对象", description="人力信息表") |
||||
public class IManpower implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "姓名") |
||||
private String name; |
||||
|
||||
@ApiModelProperty(value = "工种") |
||||
private String workType; |
||||
|
||||
@ApiModelProperty(value = "数量") |
||||
private Integer |
||||
quantity; |
||||
|
||||
@ApiModelProperty(value = "计划投入时间") |
||||
private Integer planDevoteTime; |
||||
|
||||
@ApiModelProperty(value = "实际投入时间") |
||||
private Integer actualDevoteTime; |
||||
|
||||
@ApiModelProperty(value = "预计离场时间") |
||||
private LocalDateTime leaveTime; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
|
||||
} |
@ -0,0 +1,68 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.time.LocalDateTime; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 材料信息表 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_materials") |
||||
@ApiModel(value="IMaterials对象", description="材料信息表") |
||||
public class IMaterials implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "材料名称") |
||||
private String name; |
||||
|
||||
@ApiModelProperty(value = "规格型号") |
||||
private String specification; |
||||
|
||||
@ApiModelProperty(value = "单位") |
||||
private String unit; |
||||
|
||||
@ApiModelProperty(value = "计划需求量") |
||||
private Integer planNeed; |
||||
|
||||
@ApiModelProperty(value = "实际进厂量") |
||||
private Integer actualIn; |
||||
|
||||
@ApiModelProperty(value = "剩余量") |
||||
private Integer surplus; |
||||
|
||||
@ApiModelProperty(value = "供应商名称") |
||||
private String supplierName; |
||||
|
||||
@ApiModelProperty(value = "采购时间") |
||||
private LocalDateTime purchaseTime; |
||||
|
||||
@ApiModelProperty(value = "预计使用时间") |
||||
private LocalDateTime planUseTime; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
|
||||
} |
@ -0,0 +1,65 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.time.LocalDateTime; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 生产计划表 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_production_plan") |
||||
@ApiModel(value="IProductionPlan对象", description="生产计划表") |
||||
public class IProductionPlan implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "计划名称") |
||||
private String planName; |
||||
|
||||
@ApiModelProperty(value = "所属项目阶段") |
||||
private String projectStage; |
||||
|
||||
@ApiModelProperty(value = "计划描述") |
||||
private String description; |
||||
|
||||
@ApiModelProperty(value = "计划开始时间") |
||||
private LocalDateTime startTime; |
||||
|
||||
@ApiModelProperty(value = "计划结束时间") |
||||
private LocalDateTime endTime; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
@ApiModelProperty(value = "总工期天数") |
||||
private Integer duration; |
||||
|
||||
@ApiModelProperty(value = "关键节点时间") |
||||
private LocalDateTime keystageTime; |
||||
|
||||
@ApiModelProperty(value = "计划负责人") |
||||
private String principal; |
||||
|
||||
|
||||
} |
@ -0,0 +1,53 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.time.LocalDateTime; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 进度跟踪表 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_progress") |
||||
@ApiModel(value="IProgress对象", description="进度跟踪表") |
||||
public class IProgress implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "计划id") |
||||
private Long planId; |
||||
|
||||
@ApiModelProperty(value = "计划名称") |
||||
private String planName; |
||||
|
||||
@ApiModelProperty(value = "当日完成进度") |
||||
private Integer dayProgress; |
||||
|
||||
@ApiModelProperty(value = "累计完成进度") |
||||
private Integer accumulativeProgress; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
|
||||
} |
@ -0,0 +1,59 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.time.LocalDateTime; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 资源调度表 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_resource_schedule") |
||||
@ApiModel(value="IResourceSchedule对象", description="资源调度表") |
||||
public class IResourceSchedule implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "计划id") |
||||
private Long planId; |
||||
|
||||
@ApiModelProperty(value = "计划名称") |
||||
private String planName; |
||||
|
||||
@ApiModelProperty(value = "计划开始时间") |
||||
private LocalDateTime startTime; |
||||
|
||||
@ApiModelProperty(value = "计划结束时间") |
||||
private LocalDateTime endTime; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
@ApiModelProperty(value = "当前进度") |
||||
private Integer currentProgress; |
||||
|
||||
@ApiModelProperty(value = "建议") |
||||
private String advise; |
||||
|
||||
|
||||
} |
@ -0,0 +1,47 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import java.time.LocalDateTime; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 安全教育 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_safe") |
||||
@ApiModel(value="ISafe对象", description="安全教育") |
||||
public class ISafe implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "姓名") |
||||
private String name; |
||||
|
||||
@ApiModelProperty(value = "进项安全教育啥时间") |
||||
private LocalDateTime date; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
|
||||
} |
@ -0,0 +1,53 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.time.LocalDateTime; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 实名制与信息管理 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_user") |
||||
@ApiModel(value="IUser对象", description="实名制与信息管理") |
||||
public class IUser implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "姓名") |
||||
private String name; |
||||
|
||||
@ApiModelProperty(value = "联系方式") |
||||
private String tel; |
||||
|
||||
@ApiModelProperty(value = "身份证") |
||||
private String idCard; |
||||
|
||||
@ApiModelProperty(value = "工种") |
||||
private String workType; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
|
||||
} |
@ -0,0 +1,56 @@ |
||||
package com.zilber.boot.intelligencesite.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.annotation.IdType; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import java.time.LocalDateTime; |
||||
import java.io.Serializable; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import lombok.experimental.Accessors; |
||||
|
||||
/** |
||||
* <p> |
||||
* 预警表 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
@Accessors(chain = true) |
||||
@TableName("i_warn") |
||||
@ApiModel(value="IWarn对象", description="预警表") |
||||
public class IWarn implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId(value = "id", type = IdType.AUTO) |
||||
private Long id; |
||||
|
||||
@ApiModelProperty(value = "计划id") |
||||
private Long planId; |
||||
|
||||
@ApiModelProperty(value = "计划名称") |
||||
private String planName; |
||||
|
||||
@ApiModelProperty(value = "偏差类型1提前2滞后") |
||||
private Integer deviationType; |
||||
|
||||
@ApiModelProperty(value = "偏差天数") |
||||
private Integer deviationDays; |
||||
|
||||
@ApiModelProperty(value = "预警信息") |
||||
private String warnInfo; |
||||
|
||||
@ApiModelProperty(value = "创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
@ApiModelProperty(value = "创建人") |
||||
private String creator; |
||||
|
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IConstructionReport; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 施工报告 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IConstructionReportMapper extends BaseMapper<IConstructionReport> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IEngineerLog; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 工程日志 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IEngineerLogMapper extends BaseMapper<IEngineerLog> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IManpower; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 人力信息表 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IManpowerMapper extends BaseMapper<IManpower> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IMaterials; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 材料信息表 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IMaterialsMapper extends BaseMapper<IMaterials> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IProductionPlan; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 生产计划表 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IProductionPlanMapper extends BaseMapper<IProductionPlan> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IProgress; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 进度跟踪表 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IProgressMapper extends BaseMapper<IProgress> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IResourceSchedule; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 资源调度表 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IResourceScheduleMapper extends BaseMapper<IResourceSchedule> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.ISafe; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 安全教育 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface ISafeMapper extends BaseMapper<ISafe> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IUser; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 实名制与信息管理 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IUserMapper extends BaseMapper<IUser> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.mapper; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IWarn; |
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
||||
/** |
||||
* <p> |
||||
* 预警表 Mapper 接口 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IWarnMapper extends BaseMapper<IWarn> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IConstructionReport; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 施工报告 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IIConstructionReportService extends IService<IConstructionReport> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IEngineerLog; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 工程日志 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IIEngineerLogService extends IService<IEngineerLog> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IManpower; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 人力信息表 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IIManpowerService extends IService<IManpower> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IMaterials; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 材料信息表 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IIMaterialsService extends IService<IMaterials> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IProductionPlan; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 生产计划表 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IIProductionPlanService extends IService<IProductionPlan> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IProgress; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 进度跟踪表 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IIProgressService extends IService<IProgress> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IResourceSchedule; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 资源调度表 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IIResourceScheduleService extends IService<IResourceSchedule> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.ISafe; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 安全教育 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IISafeService extends IService<ISafe> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IUser; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 实名制与信息管理 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IIUserService extends IService<IUser> { |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
package com.zilber.boot.intelligencesite.service; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IWarn; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
/** |
||||
* <p> |
||||
* 预警表 服务类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
public interface IIWarnService extends IService<IWarn> { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IConstructionReport; |
||||
import com.zilber.boot.intelligencesite.mapper.IConstructionReportMapper; |
||||
import com.zilber.boot.intelligencesite.service.IIConstructionReportService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 施工报告 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class IConstructionReportServiceImpl extends ServiceImpl<IConstructionReportMapper, IConstructionReport> implements IIConstructionReportService { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IEngineerLog; |
||||
import com.zilber.boot.intelligencesite.mapper.IEngineerLogMapper; |
||||
import com.zilber.boot.intelligencesite.service.IIEngineerLogService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 工程日志 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class IEngineerLogServiceImpl extends ServiceImpl<IEngineerLogMapper, IEngineerLog> implements IIEngineerLogService { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IManpower; |
||||
import com.zilber.boot.intelligencesite.mapper.IManpowerMapper; |
||||
import com.zilber.boot.intelligencesite.service.IIManpowerService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 人力信息表 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class IManpowerServiceImpl extends ServiceImpl<IManpowerMapper, IManpower> implements IIManpowerService { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IMaterials; |
||||
import com.zilber.boot.intelligencesite.mapper.IMaterialsMapper; |
||||
import com.zilber.boot.intelligencesite.service.IIMaterialsService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 材料信息表 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class IMaterialsServiceImpl extends ServiceImpl<IMaterialsMapper, IMaterials> implements IIMaterialsService { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IProductionPlan; |
||||
import com.zilber.boot.intelligencesite.mapper.IProductionPlanMapper; |
||||
import com.zilber.boot.intelligencesite.service.IIProductionPlanService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 生产计划表 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class IProductionPlanServiceImpl extends ServiceImpl<IProductionPlanMapper, IProductionPlan> implements IIProductionPlanService { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IProgress; |
||||
import com.zilber.boot.intelligencesite.mapper.IProgressMapper; |
||||
import com.zilber.boot.intelligencesite.service.IIProgressService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 进度跟踪表 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class IProgressServiceImpl extends ServiceImpl<IProgressMapper, IProgress> implements IIProgressService { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IResourceSchedule; |
||||
import com.zilber.boot.intelligencesite.mapper.IResourceScheduleMapper; |
||||
import com.zilber.boot.intelligencesite.service.IIResourceScheduleService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 资源调度表 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class IResourceScheduleServiceImpl extends ServiceImpl<IResourceScheduleMapper, IResourceSchedule> implements IIResourceScheduleService { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.ISafe; |
||||
import com.zilber.boot.intelligencesite.mapper.ISafeMapper; |
||||
import com.zilber.boot.intelligencesite.service.IISafeService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 安全教育 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class ISafeServiceImpl extends ServiceImpl<ISafeMapper, ISafe> implements IISafeService { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IUser; |
||||
import com.zilber.boot.intelligencesite.mapper.IUserMapper; |
||||
import com.zilber.boot.intelligencesite.service.IIUserService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 实名制与信息管理 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class IUserServiceImpl extends ServiceImpl<IUserMapper, IUser> implements IIUserService { |
||||
|
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.zilber.boot.intelligencesite.service.impl; |
||||
|
||||
import com.zilber.boot.intelligencesite.entity.IWarn; |
||||
import com.zilber.boot.intelligencesite.mapper.IWarnMapper; |
||||
import com.zilber.boot.intelligencesite.service.IIWarnService; |
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* <p> |
||||
* 预警表 服务实现类 |
||||
* </p> |
||||
* |
||||
* @author lsc |
||||
* @since 2025-05-06 |
||||
*/ |
||||
@Service |
||||
public class IWarnServiceImpl extends ServiceImpl<IWarnMapper, IWarn> implements IIWarnService { |
||||
|
||||
} |
@ -0,0 +1,27 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.IConstructionReportMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.IConstructionReport"> |
||||
<id column="id" property="id" /> |
||||
<result column="date" property="date" /> |
||||
<result column="cycle" property="cycle" /> |
||||
<result column="plan_id" property="planId" /> |
||||
<result column="plan_name" property="planName" /> |
||||
<result column="total_progress" property="totalProgress" /> |
||||
<result column="manpower" property="manpower" /> |
||||
<result column="materials_use" property="materialsUse" /> |
||||
<result column="equipment_operation" property="equipmentOperation" /> |
||||
<result column="qs" property="qs" /> |
||||
<result column="advise" property="advise" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, date, cycle, plan_id, plan_name, total_progress, manpower, materials_use, equipment_operation, qs, advise, create_time, creator |
||||
</sql> |
||||
|
||||
</mapper> |
@ -0,0 +1,34 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.IEngineerLogMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.IEngineerLog"> |
||||
<id column="id" property="id" /> |
||||
<result column="date" property="date" /> |
||||
<result column=" |
||||
weather" property=" |
||||
weather" /> |
||||
<result column="temperature" property="temperature" /> |
||||
<result column="wind" property="wind" /> |
||||
<result column=" |
||||
principal_name" property=" |
||||
principalName" /> |
||||
<result column=" |
||||
principal_tel" property=" |
||||
principalTel" /> |
||||
<result column="construction_situation" property="constructionSituation" /> |
||||
<result column="other_business" property="otherBusiness" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, date, |
||||
weather, temperature, wind, |
||||
principal_name, |
||||
principal_tel, construction_situation, other_business, create_time, creator |
||||
</sql> |
||||
|
||||
</mapper> |
@ -0,0 +1,26 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.IManpowerMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.IManpower"> |
||||
<id column="id" property="id" /> |
||||
<result column="name" property="name" /> |
||||
<result column="work_type" property="workType" /> |
||||
<result column=" |
||||
quantity" property=" |
||||
quantity" /> |
||||
<result column="plan_devote_time" property="planDevoteTime" /> |
||||
<result column="actual_devote_time" property="actualDevoteTime" /> |
||||
<result column="leave_time" property="leaveTime" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, name, work_type, |
||||
quantity, plan_devote_time, actual_devote_time, leave_time, create_time, creator |
||||
</sql> |
||||
|
||||
</mapper> |
@ -0,0 +1,26 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.IMaterialsMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.IMaterials"> |
||||
<id column="id" property="id" /> |
||||
<result column="name" property="name" /> |
||||
<result column="specification" property="specification" /> |
||||
<result column="unit" property="unit" /> |
||||
<result column="plan_need" property="planNeed" /> |
||||
<result column="actual_in" property="actualIn" /> |
||||
<result column="surplus" property="surplus" /> |
||||
<result column="supplier_name" property="supplierName" /> |
||||
<result column="purchase_time" property="purchaseTime" /> |
||||
<result column="plan_use_time" property="planUseTime" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, name, specification, unit, plan_need, actual_in, surplus, supplier_name, purchase_time, plan_use_time, create_time, creator |
||||
</sql> |
||||
|
||||
</mapper> |
@ -0,0 +1,25 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.IProductionPlanMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.IProductionPlan"> |
||||
<id column="id" property="id" /> |
||||
<result column="plan_name" property="planName" /> |
||||
<result column="project_stage" property="projectStage" /> |
||||
<result column="description" property="description" /> |
||||
<result column="start_time" property="startTime" /> |
||||
<result column="end_time" property="endTime" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
<result column="duration" property="duration" /> |
||||
<result column="keystage_time" property="keystageTime" /> |
||||
<result column="principal" property="principal" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, plan_name, project_stage, description, start_time, end_time, create_time, creator, duration, keystage_time, principal |
||||
</sql> |
||||
|
||||
</mapper> |
@ -0,0 +1,21 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.IProgressMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.IProgress"> |
||||
<id column="id" property="id" /> |
||||
<result column="plan_id" property="planId" /> |
||||
<result column="plan_name" property="planName" /> |
||||
<result column="day_progress" property="dayProgress" /> |
||||
<result column="accumulative_progress" property="accumulativeProgress" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, plan_id, plan_name, day_progress, accumulative_progress, create_time, creator |
||||
</sql> |
||||
|
||||
</mapper> |
@ -0,0 +1,23 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.IResourceScheduleMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.IResourceSchedule"> |
||||
<id column="id" property="id" /> |
||||
<result column="plan_id" property="planId" /> |
||||
<result column="plan_name" property="planName" /> |
||||
<result column="start_time" property="startTime" /> |
||||
<result column="end_time" property="endTime" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
<result column="current_progress" property="currentProgress" /> |
||||
<result column="advise" property="advise" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, plan_id, plan_name, start_time, end_time, create_time, creator, current_progress, advise |
||||
</sql> |
||||
|
||||
</mapper> |
@ -0,0 +1,19 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.ISafeMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.ISafe"> |
||||
<id column="id" property="id" /> |
||||
<result column="name" property="name" /> |
||||
<result column="date" property="date" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, name, date, create_time, creator |
||||
</sql> |
||||
|
||||
</mapper> |
@ -0,0 +1,21 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.IUserMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.IUser"> |
||||
<id column="id" property="id" /> |
||||
<result column="name" property="name" /> |
||||
<result column="tel" property="tel" /> |
||||
<result column="id_card" property="idCard" /> |
||||
<result column="work_type" property="workType" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, name, tel, id_card, work_type, create_time, creator |
||||
</sql> |
||||
|
||||
</mapper> |
@ -0,0 +1,22 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.zilber.boot.intelligencesite.mapper.IWarnMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="BaseResultMap" type="com.zilber.boot.intelligencesite.entity.IWarn"> |
||||
<id column="id" property="id" /> |
||||
<result column="plan_id" property="planId" /> |
||||
<result column="plan_name" property="planName" /> |
||||
<result column="deviation_type" property="deviationType" /> |
||||
<result column="deviation_days" property="deviationDays" /> |
||||
<result column="warn_info" property="warnInfo" /> |
||||
<result column="create_time" property="createTime" /> |
||||
<result column="creator" property="creator" /> |
||||
</resultMap> |
||||
|
||||
<!-- 通用查询结果列 --> |
||||
<sql id="Base_Column_List"> |
||||
id, plan_id, plan_name, deviation_type, deviation_days, warn_info, create_time, creator |
||||
</sql> |
||||
|
||||
</mapper> |
Loading…
Reference in new issue