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.
27 lines
666 B
27 lines
666 B
package com.xujie.modules.srm.data;
|
|
|
|
import com.xujie.modules.srm.entity.SrmSupplier;
|
|
import lombok.Data;
|
|
import org.apache.ibatis.type.Alias;
|
|
|
|
@Data
|
|
@Alias("SrmSupplierData")
|
|
public class SrmSupplierData extends SrmSupplier {
|
|
// 供应商分组描述
|
|
private String groupDesc;
|
|
public String getGroupDesc() {
|
|
return this.groupDesc;
|
|
}
|
|
public void setGroupDesc(String groupDesc) {
|
|
this.groupDesc = groupDesc;
|
|
}
|
|
|
|
private String groupDocType;
|
|
public String getGroupDocType() {
|
|
return this.groupDocType;
|
|
}
|
|
public void setGroupDocType(String groupDocType) {
|
|
this.groupDocType = groupDocType;
|
|
}
|
|
|
|
}
|