|
|
@ -24,12 +24,14 @@ import com.epmet.commons.tools.validator.ValidatorUtils; |
|
|
|
import com.epmet.commons.tools.validator.group.AddGroup; |
|
|
|
import com.epmet.commons.tools.validator.group.DefaultGroup; |
|
|
|
import com.epmet.commons.tools.validator.group.UpdateGroup; |
|
|
|
import com.epmet.modules.partymember.entity.ScreenEnterpriseOutputEntity; |
|
|
|
import com.epmet.modules.partymember.service.ScreenEnterpriseOutputService; |
|
|
|
import com.epmet.resi.partymember.dto.ScreenEnterpriseOutputDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.form.vegetableFormDTO; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
|
|
|
@ -60,12 +62,11 @@ public class ScreenEnterpriseOutputController { |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
* @param |
|
|
|
* @return com.epmet.commons.tools.utils.Result |
|
|
|
* @description: 上报 |
|
|
|
* @author qushutong |
|
|
|
* @date 2024/3/22 14:52 |
|
|
|
* @param |
|
|
|
* @return com.epmet.commons.tools.utils.Result |
|
|
|
* @Version1.0 |
|
|
|
**/ |
|
|
|
@PostMapping("yifengScreen/submitOutput") |
|
|
@ -76,6 +77,12 @@ public class ScreenEnterpriseOutputController { |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("yifengScreen/getVegetableByEnterprise/{placeOrgName}") |
|
|
|
public Result<List<ScreenEnterpriseOutputEntity>> getVegetableByEnterprise(@PathVariable("placeOrgName") String placeOrgName) { |
|
|
|
return new Result<List<ScreenEnterpriseOutputEntity>>().ok(screenEnterpriseOutputService.getListVegetable(placeOrgName)); |
|
|
|
} |
|
|
|
|
|
|
|
@PutMapping |
|
|
|
public Result update(@RequestBody ScreenEnterpriseOutputDTO dto) { |
|
|
|
//效验数据
|
|
|
@ -101,4 +108,5 @@ public class ScreenEnterpriseOutputController { |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |