4 changed files with 75 additions and 1 deletions
@ -0,0 +1,8 @@ |
|||||||
|
package com.biutag.supervision.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.biutag.supervision.pojo.entity.ModelGeneration; |
||||||
|
|
||||||
|
public interface ModelGenerationMapper extends BaseMapper<ModelGeneration> { |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,55 @@ |
|||||||
|
package com.biutag.supervision.pojo.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
|
||||||
|
import java.time.LocalDateTime; |
||||||
|
|
||||||
|
@Setter |
||||||
|
@Getter |
||||||
|
public class ModelGeneration { |
||||||
|
|
||||||
|
//
|
||||||
|
@TableId(value = "id") |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
//
|
||||||
|
@TableField("model_id") |
||||||
|
private Integer modelId; |
||||||
|
|
||||||
|
// 涉及单位
|
||||||
|
@TableField("involve_depart_name") |
||||||
|
private String involveDepartName; |
||||||
|
|
||||||
|
// 涉及单位ID
|
||||||
|
@TableField("involve_depart_id") |
||||||
|
private String involveDepartId; |
||||||
|
|
||||||
|
// 涉及人员
|
||||||
|
@TableField("involve_police_name") |
||||||
|
private String involvePoliceName; |
||||||
|
|
||||||
|
// 涉及人员警号
|
||||||
|
@TableField("involve_police_emp_no") |
||||||
|
private String involvePoliceEmpNo; |
||||||
|
|
||||||
|
// 发生时间
|
||||||
|
@TableField("happen_time") |
||||||
|
private String happenTime; |
||||||
|
|
||||||
|
// 预警内容生成器
|
||||||
|
@TableField("thing_desc_generation") |
||||||
|
private String thingDescGeneration; |
||||||
|
|
||||||
|
// 创建时间
|
||||||
|
@TableField("create_time") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
// 更新时间
|
||||||
|
@TableField("update_time") |
||||||
|
private LocalDateTime updateTime; |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,11 @@ |
|||||||
|
package com.biutag.supervision.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||||
|
import com.biutag.supervision.pojo.entity.ModelGeneration; |
||||||
|
import com.biutag.supervision.mapper.ModelGenerationMapper; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
@Service |
||||||
|
public class ModelGenerationService extends ServiceImpl<ModelGenerationMapper, ModelGeneration> { |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue