package com.artfess.ljzc.stock.dao;

import com.alibaba.fastjson.JSONObject;
import com.artfess.ljzc.stock.model.AssetStockInfo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;

import java.math.BigDecimal;
import java.util.List;

/**
 * 股权资产信息 Mapper 接口
 *
 * @company 阿特菲斯信息技术有限公司
 * @author chens
 * @since 2023-11-27
 */
public interface AssetStockInfoDao extends BaseMapper<AssetStockInfo> {

    BigDecimal bookValue(@Param("fullId") String fullId);

    List<JSONObject> stockStatistics(@Param("fullId") String fullId);
}
