|
|
@ -24,10 +24,7 @@ import com.epmet.resi.partymember.dto.partyOrg.IcPartyOrgLeaderDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.IcPartyWishDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.result.LingShanPartyOrgAndOtherObjQtyRstDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.result.LingShanScreenPartyObjectByTypeRstDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.IcParameterConfigDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.IcPartyInventoryDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.IcPartyMemberDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.IcPartymemberStyleDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.*; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.form.PartyMemberStyleFormDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partymember.result.*; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
@ -69,7 +66,34 @@ public class YiFengScreenController { |
|
|
|
private IcPartyInventoryService icPartyInventoryService; |
|
|
|
@Autowired |
|
|
|
private IcPartyMemberService icPartyMemberService; |
|
|
|
@Autowired |
|
|
|
private IcCultureLegacyService icCultureLegacyService; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 文化移风列表 |
|
|
|
* @param id: |
|
|
|
* @Return com.epmet.commons.tools.utils.Result<com.epmet.resi.partymember.dto.partymember.IcCultureLegacyDTO> |
|
|
|
* @Author: lichao |
|
|
|
* @Date: 2024/3/18 17:16 |
|
|
|
*/ |
|
|
|
@GetMapping("cultureLegacyDeatil/{id}") |
|
|
|
public Result<IcCultureLegacyDTO> cultureLegacyDeatil(@PathVariable("id") String id){ |
|
|
|
IcCultureLegacyDTO data = icCultureLegacyService.get(id); |
|
|
|
return new Result<IcCultureLegacyDTO>().ok(data); |
|
|
|
} |
|
|
|
/** |
|
|
|
* @Description: 文化移风列表 |
|
|
|
* @param params: |
|
|
|
* @Return com.epmet.commons.tools.utils.Result<com.epmet.commons.tools.page.PageData < com.epmet.resi.partymember.dto.partymember.IcCultureLegacyDTO>> |
|
|
|
* @Author: lichao |
|
|
|
* @Date: 2024/3/18 16:50 |
|
|
|
*/ |
|
|
|
@GetMapping("cultureLegacyList") |
|
|
|
public Result<PageData<IcCultureLegacyDTO>> cultureLegacyList(@RequestParam Map<String, Object> params){ |
|
|
|
PageData<IcCultureLegacyDTO> page = icCultureLegacyService.page(params); |
|
|
|
return new Result<PageData<IcCultureLegacyDTO>>().ok(page); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description: 移列清单 |
|
|
|