淘淘商城規格引數列表顯示

2021-09-27 11:28:32 字數 2787 閱讀 4431

淘淘**規格引數列表顯示

select

ip.id,

ip.item_cat_id,

ic.`name`

as item_cat_name,

ip.param_data,

ip.created,

ip.updated

from

tb_item_param as ip

left

join tb_item_cat as ic

on ip.item_cat_id = ic.id

/**

* 自定義的商品規格引數列表的pojo

* title: tbitemparamextend

* description:

* company: lzw.com

* @author wim澤

* @date 2023年9月27日下午6:58:40

* @version 1.0

*/public

class

tbitemparamextend

extends

tbitemparam

public

void

setitemcatname

(string itemcatname)

}

resultmap中的colum屬性要和資料庫中的欄位名相同

<?xml version="1.0" encoding="utf-8"?>

namespace

=>

type

="lzw.taotao.pojo.tbitemparamextend"

id="baseresultmap"

>

column

="id"

property

="id"

jdbctype

="bigint"

/>

column

="item_cat_id"

property

="itemcatid"

jdbctype

="bigint"

/>

column

="item_cat_name"

property

="itemcatname"

jdbctype

="varchar"

/>

column

="param_data"

property

="paramdata"

jdbctype

="lon**archar"

/>

column

="created"

property

="created"

jdbctype

="timestamp"

/>

column

="updated"

property

="updated"

jdbctype

="timestamp"

/>

resultmap

>

"selectitemparamextendlist"

resultmap

="baseresultmap"

>

select

ip.id,

ip.item_cat_id,

ic.`name` as item_cat_name,

ip.param_data,

ip.created,

ip.updated

from

tb_item_param as ip

left join tb_item_cat as ic

on ip.item_cat_id = ic.id

select

>

>

public

inte***ce

//顯示商品規格引數列表介面

public eudatagridresult getitemparamlist

(int page,

int rows)

;

這裡使用的是pagehelper外掛程式

/**

* 商品規格引數列表的實現

淘淘商城實現商品規格模板列表展示的實現

在做淘淘 專案的時候,想實現展示商品規格模板列表的展示功能,因為是單錶查詢 資料庫中有專門的tb item param這個表 所以dao層可以使用逆向工程的 service層 1 寫介面中的方法。得到商品規格模板列表 eudategridresult getitemparamlist int pag...

商品規格管理的實現 淘淘商城(十二)

建立模板 根據規格模板生成表單 儲存商品規格引數 展示規格引數 儲存規格模板 響應引數 taotaoresult。service層 service public class itemparamserviceimpl implements itemparamservice return taotaor...

淘淘商城專案 商品規格引數的表結構設計

規格引數就是對商品引數的描述。以擷取的京東商品描述為例,作為這篇文章分析的物件。sony電視 商品的規格引數的字段是動態變化的 我們應該怎麼在程式中表示這個結構,以及在資料庫如何儲存。方案一 首先我們應該清楚不能用固定的資料結構去表示規格引數,例如普通的類 類裡的每個屬性都代表乙個引數名 因為商品很...