Commit 6babf1d8 by zhiwj

导购添加是否是共享的标志位

parent 15fe16e4
......@@ -23,6 +23,7 @@ public class ClerkStoreListDTO implements Serializable {
private String storeName;
private String storeCode;
private List<ClerkDTO> clerkList;
private Integer ownType;
public Integer getStoreId() {
......@@ -64,4 +65,12 @@ public class ClerkStoreListDTO implements Serializable {
public void setClerkList(List<ClerkDTO> clerkList) {
this.clerkList = clerkList;
}
public void setOwnType(Integer ownType) {
this.ownType = ownType;
}
public Integer getOwnType() {
return ownType;
}
}
......@@ -92,6 +92,7 @@ public class ClerkApiServiceImpl implements ClerkApiService {
clerkStoreListDTO.setStoreInfoId(store.getStoreInfoId());
clerkStoreListDTO.setStoreName(store.getStoreName());
clerkStoreListDTO.setStoreCode(store.getStoreCode());
clerkStoreListDTO.setOwnType(store.getOwnType());
storeClerkDTOList.add(clerkStoreListDTO);
storeInfoIds.add(store.getStoreInfoId());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment