35 changed files with 741 additions and 16 deletions
@ -0,0 +1,84 @@
|
||||
package com.air.land.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import com.air.land.entity.LandListedConductEnterprise; |
||||
import com.air.land.service.LandListedConductEnterpriseService; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
|
||||
/** |
||||
* 已挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:35 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/landlistedconductenterprise") |
||||
@Api(value = "landlistedconductenterprise", tags = "已挂牌地块关联经营企业管理") |
||||
public class LandListedConductEnterpriseController { |
||||
|
||||
private final LandListedConductEnterpriseService landListedConductEnterpriseService; |
||||
|
||||
/** |
||||
* 分页查询 |
||||
* @param page 分页对象 |
||||
* @param landListedConductEnterprise 已挂牌地块关联经营企业 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "分页查询", notes = "分页查询") |
||||
@GetMapping("/page") |
||||
public R getLandListedConductEnterprisePage(Page page, LandListedConductEnterprise landListedConductEnterprise) { |
||||
return R.ok(landListedConductEnterpriseService.page(page, Wrappers.query(landListedConductEnterprise))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 通过id查询已挂牌地块关联经营企业 |
||||
* @param conductEnterpriseId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id查询", notes = "通过id查询") |
||||
@GetMapping("/{conductEnterpriseId}") |
||||
public R getById(@PathVariable("conductEnterpriseId") Long conductEnterpriseId) { |
||||
return R.ok(landListedConductEnterpriseService.getById(conductEnterpriseId)); |
||||
} |
||||
|
||||
/** |
||||
* 新增已挂牌地块关联经营企业 |
||||
* @param landListedConductEnterprise 已挂牌地块关联经营企业 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "新增已挂牌地块关联经营企业", notes = "新增已挂牌地块关联经营企业") |
||||
@PostMapping |
||||
public R save(@RequestBody LandListedConductEnterprise landListedConductEnterprise) { |
||||
return R.ok(landListedConductEnterpriseService.save(landListedConductEnterprise)); |
||||
} |
||||
|
||||
/** |
||||
* 修改已挂牌地块关联经营企业 |
||||
* @param landListedConductEnterprise 已挂牌地块关联经营企业 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "修改已挂牌地块关联经营企业", notes = "修改已挂牌地块关联经营企业") |
||||
@PutMapping |
||||
public R updateById(@RequestBody LandListedConductEnterprise landListedConductEnterprise) { |
||||
return R.ok(landListedConductEnterpriseService.updateById(landListedConductEnterprise)); |
||||
} |
||||
|
||||
/** |
||||
* 通过id删除已挂牌地块关联经营企业 |
||||
* @param conductEnterpriseId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id删除已挂牌地块关联经营企业", notes = "通过id删除已挂牌地块关联经营企业") |
||||
@DeleteMapping("/{conductEnterpriseId}") |
||||
public R removeById(@PathVariable Long conductEnterpriseId) { |
||||
return R.ok(landListedConductEnterpriseService.removeById(conductEnterpriseId)); |
||||
} |
||||
} |
@ -0,0 +1,84 @@
|
||||
package com.air.land.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import com.air.land.entity.LandListedConstructionPlan; |
||||
import com.air.land.service.LandListedConstructionPlanService; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
|
||||
/** |
||||
* 已挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:27 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/landlistedconstructionplan") |
||||
@Api(value = "landlistedconstructionplan", tags = "已挂牌地块关联建设规划管理") |
||||
public class LandListedConstructionPlanController { |
||||
|
||||
private final LandListedConstructionPlanService landListedConstructionPlanService; |
||||
|
||||
/** |
||||
* 分页查询 |
||||
* @param page 分页对象 |
||||
* @param landListedConstructionPlan 已挂牌地块关联建设规划 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "分页查询", notes = "分页查询") |
||||
@GetMapping("/page") |
||||
public R getLandListedConstructionPlanPage(Page page, LandListedConstructionPlan landListedConstructionPlan) { |
||||
return R.ok(landListedConstructionPlanService.page(page, Wrappers.query(landListedConstructionPlan))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 通过id查询已挂牌地块关联建设规划 |
||||
* @param constructionPlanId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id查询", notes = "通过id查询") |
||||
@GetMapping("/{constructionPlanId}") |
||||
public R getById(@PathVariable("constructionPlanId") Long constructionPlanId) { |
||||
return R.ok(landListedConstructionPlanService.getById(constructionPlanId)); |
||||
} |
||||
|
||||
/** |
||||
* 新增已挂牌地块关联建设规划 |
||||
* @param landListedConstructionPlan 已挂牌地块关联建设规划 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "新增已挂牌地块关联建设规划", notes = "新增已挂牌地块关联建设规划") |
||||
@PostMapping |
||||
public R save(@RequestBody LandListedConstructionPlan landListedConstructionPlan) { |
||||
return R.ok(landListedConstructionPlanService.save(landListedConstructionPlan)); |
||||
} |
||||
|
||||
/** |
||||
* 修改已挂牌地块关联建设规划 |
||||
* @param landListedConstructionPlan 已挂牌地块关联建设规划 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "修改已挂牌地块关联建设规划", notes = "修改已挂牌地块关联建设规划") |
||||
@PutMapping |
||||
public R updateById(@RequestBody LandListedConstructionPlan landListedConstructionPlan) { |
||||
return R.ok(landListedConstructionPlanService.updateById(landListedConstructionPlan)); |
||||
} |
||||
|
||||
/** |
||||
* 通过id删除已挂牌地块关联建设规划 |
||||
* @param constructionPlanId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id删除已挂牌地块关联建设规划", notes = "通过id删除已挂牌地块关联建设规划") |
||||
@DeleteMapping("/{constructionPlanId}") |
||||
public R removeById(@PathVariable Long constructionPlanId) { |
||||
return R.ok(landListedConstructionPlanService.removeById(constructionPlanId)); |
||||
} |
||||
} |
@ -0,0 +1,84 @@
|
||||
package com.air.land.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import com.air.land.entity.LandToListConductEnterprise; |
||||
import com.air.land.service.LandToListConductEnterpriseService; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
|
||||
/** |
||||
* 拟挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:43 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/landtolistconductenterprise") |
||||
@Api(value = "landtolistconductenterprise", tags = "拟挂牌地块关联经营企业管理") |
||||
public class LandToListConductEnterpriseController { |
||||
|
||||
private final LandToListConductEnterpriseService landToListConductEnterpriseService; |
||||
|
||||
/** |
||||
* 分页查询 |
||||
* @param page 分页对象 |
||||
* @param landToListConductEnterprise 拟挂牌地块关联经营企业 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "分页查询", notes = "分页查询") |
||||
@GetMapping("/page") |
||||
public R getLandToListConductEnterprisePage(Page page, LandToListConductEnterprise landToListConductEnterprise) { |
||||
return R.ok(landToListConductEnterpriseService.page(page, Wrappers.query(landToListConductEnterprise))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 通过id查询拟挂牌地块关联经营企业 |
||||
* @param conductEnterpriseId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id查询", notes = "通过id查询") |
||||
@GetMapping("/{conductEnterpriseId}") |
||||
public R getById(@PathVariable("conductEnterpriseId") Long conductEnterpriseId) { |
||||
return R.ok(landToListConductEnterpriseService.getById(conductEnterpriseId)); |
||||
} |
||||
|
||||
/** |
||||
* 新增拟挂牌地块关联经营企业 |
||||
* @param landToListConductEnterprise 拟挂牌地块关联经营企业 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "新增拟挂牌地块关联经营企业", notes = "新增拟挂牌地块关联经营企业") |
||||
@PostMapping |
||||
public R save(@RequestBody LandToListConductEnterprise landToListConductEnterprise) { |
||||
return R.ok(landToListConductEnterpriseService.save(landToListConductEnterprise)); |
||||
} |
||||
|
||||
/** |
||||
* 修改拟挂牌地块关联经营企业 |
||||
* @param landToListConductEnterprise 拟挂牌地块关联经营企业 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "修改拟挂牌地块关联经营企业", notes = "修改拟挂牌地块关联经营企业") |
||||
@PutMapping |
||||
public R updateById(@RequestBody LandToListConductEnterprise landToListConductEnterprise) { |
||||
return R.ok(landToListConductEnterpriseService.updateById(landToListConductEnterprise)); |
||||
} |
||||
|
||||
/** |
||||
* 通过id删除拟挂牌地块关联经营企业 |
||||
* @param conductEnterpriseId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id删除拟挂牌地块关联经营企业", notes = "通过id删除拟挂牌地块关联经营企业") |
||||
@DeleteMapping("/{conductEnterpriseId}") |
||||
public R removeById(@PathVariable Long conductEnterpriseId) { |
||||
return R.ok(landToListConductEnterpriseService.removeById(conductEnterpriseId)); |
||||
} |
||||
} |
@ -0,0 +1,84 @@
|
||||
package com.air.land.controller; |
||||
|
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.cinderella.framework.common.core.util.R; |
||||
import com.air.land.entity.LandToListConstructionPlan; |
||||
import com.air.land.service.LandToListConstructionPlanService; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
|
||||
/** |
||||
* 拟挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:50 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/landtolistconstructionplan") |
||||
@Api(value = "landtolistconstructionplan", tags = "拟挂牌地块关联建设规划管理") |
||||
public class LandToListConstructionPlanController { |
||||
|
||||
private final LandToListConstructionPlanService landToListConstructionPlanService; |
||||
|
||||
/** |
||||
* 分页查询 |
||||
* @param page 分页对象 |
||||
* @param landToListConstructionPlan 拟挂牌地块关联建设规划 |
||||
* @return |
||||
*/ |
||||
@ApiOperation(value = "分页查询", notes = "分页查询") |
||||
@GetMapping("/page") |
||||
public R getLandToListConstructionPlanPage(Page page, LandToListConstructionPlan landToListConstructionPlan) { |
||||
return R.ok(landToListConstructionPlanService.page(page, Wrappers.query(landToListConstructionPlan))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 通过id查询拟挂牌地块关联建设规划 |
||||
* @param constructionPlanId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id查询", notes = "通过id查询") |
||||
@GetMapping("/{constructionPlanId}") |
||||
public R getById(@PathVariable("constructionPlanId") Long constructionPlanId) { |
||||
return R.ok(landToListConstructionPlanService.getById(constructionPlanId)); |
||||
} |
||||
|
||||
/** |
||||
* 新增拟挂牌地块关联建设规划 |
||||
* @param landToListConstructionPlan 拟挂牌地块关联建设规划 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "新增拟挂牌地块关联建设规划", notes = "新增拟挂牌地块关联建设规划") |
||||
@PostMapping |
||||
public R save(@RequestBody LandToListConstructionPlan landToListConstructionPlan) { |
||||
return R.ok(landToListConstructionPlanService.save(landToListConstructionPlan)); |
||||
} |
||||
|
||||
/** |
||||
* 修改拟挂牌地块关联建设规划 |
||||
* @param landToListConstructionPlan 拟挂牌地块关联建设规划 |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "修改拟挂牌地块关联建设规划", notes = "修改拟挂牌地块关联建设规划") |
||||
@PutMapping |
||||
public R updateById(@RequestBody LandToListConstructionPlan landToListConstructionPlan) { |
||||
return R.ok(landToListConstructionPlanService.updateById(landToListConstructionPlan)); |
||||
} |
||||
|
||||
/** |
||||
* 通过id删除拟挂牌地块关联建设规划 |
||||
* @param constructionPlanId id |
||||
* @return R |
||||
*/ |
||||
@ApiOperation(value = "通过id删除拟挂牌地块关联建设规划", notes = "通过id删除拟挂牌地块关联建设规划") |
||||
@DeleteMapping("/{constructionPlanId}") |
||||
public R removeById(@PathVariable Long constructionPlanId) { |
||||
return R.ok(landToListConstructionPlanService.removeById(constructionPlanId)); |
||||
} |
||||
} |
@ -0,0 +1,39 @@
|
||||
package com.air.land.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.extension.activerecord.Model; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 已挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:35 |
||||
*/ |
||||
@Data |
||||
@TableName("land_listed_conduct_enterprise") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ApiModel(value = "已挂牌地块关联经营企业") |
||||
public class LandListedConductEnterprise extends Model<LandListedConductEnterprise> { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId |
||||
@ApiModelProperty(value = "经营企业标识") |
||||
private Long conductEnterpriseId; |
||||
|
||||
@ApiModelProperty(value = "已挂牌地块标识") |
||||
private String landListedId; |
||||
|
||||
@ApiModelProperty(value = "企业名称") |
||||
private String enterpriseName; |
||||
|
||||
@ApiModelProperty(value = "股比") |
||||
private String shareRatio; |
||||
|
||||
@ApiModelProperty(value = "是否操盘") |
||||
private Integer operation; |
||||
} |
@ -0,0 +1,39 @@
|
||||
package com.air.land.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.extension.activerecord.Model; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 已挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:27 |
||||
*/ |
||||
@Data |
||||
@TableName("land_listed_construction_plan") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ApiModel(value = "已挂牌地块关联建设规划") |
||||
public class LandListedConstructionPlan extends Model<LandListedConstructionPlan> { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId |
||||
@ApiModelProperty(value = "建设规划标识") |
||||
private Long constructionPlanId; |
||||
|
||||
@ApiModelProperty(value = "已挂牌地块标识") |
||||
private String landListedId; |
||||
|
||||
@ApiModelProperty(value = "规划类型(配建计容、配建不计容、特殊规划)") |
||||
private String planType; |
||||
|
||||
@ApiModelProperty(value = "建设类型") |
||||
private String constructionType; |
||||
|
||||
@ApiModelProperty(value = "建设面积") |
||||
private Double constructionArea; |
||||
} |
@ -0,0 +1,39 @@
|
||||
package com.air.land.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.extension.activerecord.Model; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 拟挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:43 |
||||
*/ |
||||
@Data |
||||
@TableName("land_to_list_conduct_enterprise") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ApiModel(value = "拟挂牌地块关联经营企业") |
||||
public class LandToListConductEnterprise extends Model<LandToListConductEnterprise> { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId |
||||
@ApiModelProperty(value = "经营企业标识") |
||||
private Long conductEnterpriseId; |
||||
|
||||
@ApiModelProperty(value = "拟挂牌地块标识") |
||||
private String proposedseriaId; |
||||
|
||||
@ApiModelProperty(value = "企业名称") |
||||
private String enterpriseName; |
||||
|
||||
@ApiModelProperty(value = "股比") |
||||
private String shareRatio; |
||||
|
||||
@ApiModelProperty(value = "是否操盘") |
||||
private Integer operation; |
||||
} |
@ -0,0 +1,39 @@
|
||||
package com.air.land.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.baomidou.mybatisplus.extension.activerecord.Model; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 拟挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:50 |
||||
*/ |
||||
@Data |
||||
@TableName("land_to_list_construction_plan") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ApiModel(value = "拟挂牌地块关联建设规划") |
||||
public class LandToListConstructionPlan extends Model<LandToListConstructionPlan> { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@TableId |
||||
@ApiModelProperty(value = "建设规划标识") |
||||
private Long constructionPlanId; |
||||
|
||||
@ApiModelProperty(value = "拟挂牌地块标识") |
||||
private String proposedseriaId; |
||||
|
||||
@ApiModelProperty(value = "规划类型(配建计容、配建不计容、特殊规划)") |
||||
private String planType; |
||||
|
||||
@ApiModelProperty(value = "建设类型") |
||||
private String constructionType; |
||||
|
||||
@ApiModelProperty(value = "建设面积") |
||||
private Double constructionArea; |
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.air.land.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.air.land.entity.LandListedConductEnterprise; |
||||
|
||||
/** |
||||
* 已挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:35 |
||||
*/ |
||||
public interface LandListedConductEnterpriseMapper extends BaseMapper<LandListedConductEnterprise> { |
||||
|
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.air.land.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.air.land.entity.LandListedConstructionPlan; |
||||
|
||||
/** |
||||
* 已挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:27 |
||||
*/ |
||||
public interface LandListedConstructionPlanMapper extends BaseMapper<LandListedConstructionPlan> { |
||||
|
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.air.land.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.air.land.entity.LandToListConductEnterprise; |
||||
|
||||
/** |
||||
* 拟挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:43 |
||||
*/ |
||||
public interface LandToListConductEnterpriseMapper extends BaseMapper<LandToListConductEnterprise> { |
||||
|
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.air.land.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.air.land.entity.LandToListConstructionPlan; |
||||
|
||||
/** |
||||
* 拟挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:50 |
||||
*/ |
||||
public interface LandToListConstructionPlanMapper extends BaseMapper<LandToListConstructionPlan> { |
||||
|
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.air.land.service; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
import com.air.land.entity.LandListedConductEnterprise; |
||||
|
||||
/** |
||||
* 已挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:35 |
||||
*/ |
||||
public interface LandListedConductEnterpriseService extends IService<LandListedConductEnterprise> { |
||||
|
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.air.land.service; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
import com.air.land.entity.LandListedConstructionPlan; |
||||
|
||||
/** |
||||
* 已挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:27 |
||||
*/ |
||||
public interface LandListedConstructionPlanService extends IService<LandListedConstructionPlan> { |
||||
|
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.air.land.service; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
import com.air.land.entity.LandToListConductEnterprise; |
||||
|
||||
/** |
||||
* 拟挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:43 |
||||
*/ |
||||
public interface LandToListConductEnterpriseService extends IService<LandToListConductEnterprise> { |
||||
|
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.air.land.service; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
import com.air.land.entity.LandToListConstructionPlan; |
||||
|
||||
/** |
||||
* 拟挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:50 |
||||
*/ |
||||
public interface LandToListConstructionPlanService extends IService<LandToListConstructionPlan> { |
||||
|
||||
} |
@ -0,0 +1,18 @@
|
||||
package com.air.land.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import com.air.land.entity.LandListedConductEnterprise; |
||||
import com.air.land.mapper.LandListedConductEnterpriseMapper; |
||||
import com.air.land.service.LandListedConductEnterpriseService; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* 已挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:35 |
||||
*/ |
||||
@Service |
||||
public class LandListedConductEnterpriseServiceImpl extends ServiceImpl<LandListedConductEnterpriseMapper, LandListedConductEnterprise> implements LandListedConductEnterpriseService { |
||||
|
||||
} |
@ -0,0 +1,18 @@
|
||||
package com.air.land.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import com.air.land.entity.LandListedConstructionPlan; |
||||
import com.air.land.mapper.LandListedConstructionPlanMapper; |
||||
import com.air.land.service.LandListedConstructionPlanService; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* 已挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:27 |
||||
*/ |
||||
@Service |
||||
public class LandListedConstructionPlanServiceImpl extends ServiceImpl<LandListedConstructionPlanMapper, LandListedConstructionPlan> implements LandListedConstructionPlanService { |
||||
|
||||
} |
@ -0,0 +1,18 @@
|
||||
package com.air.land.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import com.air.land.entity.LandToListConductEnterprise; |
||||
import com.air.land.mapper.LandToListConductEnterpriseMapper; |
||||
import com.air.land.service.LandToListConductEnterpriseService; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* 拟挂牌地块关联经营企业 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:43 |
||||
*/ |
||||
@Service |
||||
public class LandToListConductEnterpriseServiceImpl extends ServiceImpl<LandToListConductEnterpriseMapper, LandToListConductEnterprise> implements LandToListConductEnterpriseService { |
||||
|
||||
} |
@ -0,0 +1,18 @@
|
||||
package com.air.land.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
||||
import com.air.land.entity.LandToListConstructionPlan; |
||||
import com.air.land.mapper.LandToListConstructionPlanMapper; |
||||
import com.air.land.service.LandToListConstructionPlanService; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
/** |
||||
* 拟挂牌地块关联建设规划 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-06-17 20:07:50 |
||||
*/ |
||||
@Service |
||||
public class LandToListConstructionPlanServiceImpl extends ServiceImpl<LandToListConstructionPlanMapper, LandToListConstructionPlan> implements LandToListConstructionPlanService { |
||||
|
||||
} |
Loading…
Reference in new issue