List mybaties 的xml 集合

Person 
List<lONG>  supplier;
lONG pkSendOrder

<resultMap type="com.zjs.wms.biz.wave.entity.wave.SendToWave" id="mapOrderTwo">
    <result property="pkSendOrder" column="pkSendOrder"></result>
    <collection property="pkOther" ofType="java.lang.Long">
        <result property="pkOther" column="supplier"></result>
    </collection>
</resultMap>

 

 

public class SendToWave {

    private Long pkSendOrder;
    //其他各種與發貨單一對多的主鍵
    private Set<Long>  pkOther;
    private Set<String> goodsBarcode;
    private Set<String> externalCode;
    private Set<String> goodsCode;
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章