You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
344 B
18 lines
344 B
package com.xmomen.module.base.model;
|
|
|
|
import com.xmomen.framework.mybatis.model.BaseMybatisModel;
|
|
import lombok.Data;
|
|
|
|
public @Data class ItemDetailQuery extends BaseMybatisModel {
|
|
|
|
// 商品详情ID
|
|
private Integer id;
|
|
|
|
|
|
// 商品ID
|
|
private Integer cdItemId;
|
|
|
|
|
|
// 商品详情内容
|
|
private String itemDetailContent;
|
|
} |