wangrenhuang
2023-02-24 d4a706bb0e3a727497cb579f7ea7de599900d0ac
提交 | 用户 | age
a4c260 1 package com.hz.crm.dto;
F 2
3
4 /**
5  * 商品规格扩展
6  * @author fwq
7  */
8 public class GoodsSpecDto {
9
10     /**操作对象 0:规格,1:规格值*/
11     private Integer commonType;
12     /**操作对象标识*/
13     private String commonId;
14
15     public Integer getCommonType() {
16         return commonType;
17     }
18
19     public void setCommonType(Integer commonType) {
20         this.commonType = commonType;
21     }
22
23     public String getCommonId() {
24         return commonId;
25     }
26
27     public void setCommonId(String commonId) {
28         this.commonId = commonId;
29     }
30 }