전문데이터 조회 후 객체 복구 수정

master
mjkhan21 9 months ago
parent 75206fe008
commit f0c6e9e2dd

@ -78,7 +78,9 @@ public interface LntrisB01_03Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB01> selectB01s() { default List<LntrisB01> selectB01s() {
return selectB01Reqs(null); List<LntrisB01> b01s = selectB01Reqs(new LntrisBQuery());
b01s.forEach(LntrisB01::setSourceHeaderCodes);
return b01s;
} }
/** . /** .
@ -220,7 +222,9 @@ public interface LntrisB01_03Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB02> selectB02s() { default List<LntrisB02> selectB02s() {
return selectB02Reqs(null); List<LntrisB02> b02s = selectB02Reqs(new LntrisBQuery());
b02s.forEach(LntrisB02::setSourceHeaderCodes);
return b02s;
} }
/** . /** .
@ -361,7 +365,9 @@ public interface LntrisB01_03Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB03> selectB03s() { default List<LntrisB03> selectB03s() {
return selectB03Reqs(null); List<LntrisB03> b03s = selectB03Reqs(new LntrisBQuery());
b03s.forEach(LntrisB03::setSourceHeaderCodes);
return b03s;
} }
/** . /** .

@ -78,7 +78,9 @@ public interface LntrisB04_06Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB04> selectB04s() { default List<LntrisB04> selectB04s() {
return selectB04Reqs(null); List<LntrisB04> b04s = selectB04Reqs(new LntrisBQuery());
b04s.forEach(LntrisB04::setSourceHeaderCodes);
return b04s;
} }
/** . /** .
@ -197,7 +199,9 @@ public interface LntrisB04_06Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB05> selectB05s() { default List<LntrisB05> selectB05s() {
return selectB05Reqs(null); List<LntrisB05> b05s = selectB05Reqs(new LntrisBQuery());
b05s.forEach(LntrisB05::setSourceHeaderCodes);
return b05s;
} }
/** . /** .
@ -316,7 +320,9 @@ public interface LntrisB04_06Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB06> selectB06s() { default List<LntrisB06> selectB06s() {
return selectB06Reqs(null); List<LntrisB06> b06s = selectB06Reqs(new LntrisBQuery());
b06s.forEach(LntrisB06::setSourceHeaderCodes);
return b06s;
} }
/** . /** .

@ -77,7 +77,9 @@ public interface LntrisB07_09Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB07> selectB07s() { default List<LntrisB07> selectB07s() {
return selectB07Reqs(null); List<LntrisB07> b07s = selectB07Reqs(new LntrisBQuery());
b07s.forEach(LntrisB07::setSourceHeaderCodes);
return b07s;
} }
/** . /** .
@ -196,7 +198,9 @@ public interface LntrisB07_09Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB08> selectB08s() { default List<LntrisB08> selectB08s() {
return selectB08Reqs(null); List<LntrisB08> b08s = selectB08Reqs(new LntrisBQuery());
b08s.forEach(LntrisB08::setSourceHeaderCodes);
return b08s;
} }
/** . /** .
@ -337,7 +341,9 @@ public interface LntrisB07_09Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB09> selectB09s() { default List<LntrisB09> selectB09s() {
return selectB09Reqs(null); List<LntrisB09> b09s = selectB09Reqs(new LntrisBQuery());
b09s.forEach(LntrisB09::setSourceHeaderCodes);
return b09s;
} }
/** . /** .

@ -77,7 +77,9 @@ public interface LntrisB10_12Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB10> selectB10s() { default List<LntrisB10> selectB10s() {
return selectB10Reqs(null); List<LntrisB10> b10s = selectB10Reqs(new LntrisBQuery());
b10s.forEach(LntrisB10::setSourceHeaderCodes);
return b10s;
} }
/** . /** .
@ -205,7 +207,9 @@ public interface LntrisB10_12Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB11> selectB11s() { default List<LntrisB11> selectB11s() {
return selectB11s(null); List<LntrisB11> b11s = selectB11Reqs(new LntrisBQuery());
b11s.forEach(LntrisB11::setSourceHeaderCodes);
return b11s;
} }
/** . /** .
@ -322,7 +326,9 @@ public interface LntrisB10_12Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB12> selectB12s() { default List<LntrisB12> selectB12s() {
return selectB12Reqs(null); List<LntrisB12> b12s = selectB12Reqs(new LntrisBQuery());
b12s.forEach(LntrisB12::setSourceHeaderCodes);
return b12s;
} }
/** . /** .

@ -58,7 +58,9 @@ public interface LntrisB13_16Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB13> selectB13s() { default List<LntrisB13> selectB13s() {
return selectB13Reqs(new LntrisBQuery()); List<LntrisB13> b13s = selectB13Reqs(new LntrisBQuery());
b13s.forEach(LntrisB13::setSourceHeaderCodes);
return b13s;
} }
/** . /** .
@ -175,7 +177,9 @@ public interface LntrisB13_16Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB14> selectB14s() { default List<LntrisB14> selectB14s() {
return selectB14Reqs(null); List<LntrisB14> b14s = selectB14Reqs(new LntrisBQuery());
b14s.forEach(LntrisB14::setSourceHeaderCodes);
return b14s;
} }
/** . /** .
@ -294,7 +298,9 @@ public interface LntrisB13_16Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB15> selectB15s() { default List<LntrisB15> selectB15s() {
return selectB15Reqs(null); List<LntrisB15> b15s = selectB15Reqs(new LntrisBQuery());
b15s.forEach(LntrisB15::setSourceHeaderCodes);
return b15s;
} }
/** . /** .
@ -411,7 +417,9 @@ public interface LntrisB13_16Mapper extends AbstractMapper {
* @return * @return
*/ */
default List<LntrisB16> selectB16s() { default List<LntrisB16> selectB16s() {
return selectB16Reqs(null); List<LntrisB16> b16s = selectB16Reqs(new LntrisBQuery());
b16s.forEach(LntrisB16::setSourceHeaderCodes);
return b16s;
} }
/** . /** .

Binary file not shown.
Loading…
Cancel
Save