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