|
@@ -25,6 +25,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
import com.yonge.cooleshow.biz.dal.wrapper.UserTenantAlbumRecordWrapper;
|
|
import com.yonge.cooleshow.biz.dal.wrapper.UserTenantAlbumRecordWrapper;
|
|
import com.yonge.cooleshow.biz.dal.mapper.UserTenantAlbumRecordMapper;
|
|
import com.yonge.cooleshow.biz.dal.mapper.UserTenantAlbumRecordMapper;
|
|
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
import java.util.*;
|
|
import java.util.*;
|
|
import java.util.function.Function;
|
|
import java.util.function.Function;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
@@ -276,12 +277,20 @@ public class UserTenantAlbumRecordServiceImpl extends ServiceImpl<UserTenantAlbu
|
|
String describe = tenantAlbum.getDescribe();
|
|
String describe = tenantAlbum.getDescribe();
|
|
//声部
|
|
//声部
|
|
String subjectTypes = tenantAlbum.getSubjectTypes();
|
|
String subjectTypes = tenantAlbum.getSubjectTypes();
|
|
-
|
|
|
|
|
|
+ //原价
|
|
|
|
+ BigDecimal costPrice = tenantAlbum.getCostPrice();
|
|
|
|
+ //售价
|
|
|
|
+ BigDecimal salePrice = tenantAlbum.getSalePrice();
|
|
|
|
+ //周期
|
|
|
|
+ Integer purchaseCycle = tenantAlbum.getPurchaseCycle();
|
|
album.setName(name);
|
|
album.setName(name);
|
|
album.setCoverImg(coverImg);
|
|
album.setCoverImg(coverImg);
|
|
album.setMusicNum(size);
|
|
album.setMusicNum(size);
|
|
album.setDescribe(describe);
|
|
album.setDescribe(describe);
|
|
album.setSubjectTypes(subjectTypes);
|
|
album.setSubjectTypes(subjectTypes);
|
|
|
|
+ album.setCostPrice(costPrice);
|
|
|
|
+ album.setPurchaseCycle(purchaseCycle);
|
|
|
|
+ album.setSalePrice(salePrice);
|
|
return album;
|
|
return album;
|
|
}
|
|
}
|
|
}
|
|
}
|