using System;
namespace JiaZhiQuan.Common.Models.PO
{
///
/// n_stat_settlement
///
public class StatSettlementPO
{
///
///
///
public int id { get; set; }
///
/// 文章编号
///
public long postId { get; set; }
///
/// 0 资讯 1 笔记 2 研报
///
public int categoryType { get; set; }
///
/// 1 有视频 0 无视频
///
public bool hasVideo { get; set; }
///
/// 作者编号
///
public long authorId { get; set; }
///
/// 是否是 自动结算,即第二天结算前一天的记录,除了 自动结算,其他为操作行为导致的增减收益
///
public bool isAutoSettlement { get; set; }
///
/// 结算日期
///
public DateTime settlementDate { get; set; }
///
/// 1 图文笔记收益;2 视频笔记收益;3 研报收益;4 研报基础收益 11 扣除图文笔记收益;12 扣除视频笔记收益;13 扣除研报收益;21 增加图文笔记收益;22 增加视频笔记收益;23 增加研报收益;
///
public int eventType { get; set; }
///
/// 百次阅读单价,分为单位
///
public int price { get; set; }
///
/// 粉丝阅读量
///
public int fanReadCount { get; set; }
///
/// 非粉丝阅读量
///
public int normalReadCount { get; set; }
///
/// 点赞量
///
public int thumbsupCount { get; set; }
///
/// 评论量
///
public int commentCount { get; set; }
///
/// 分享量
///
public int shareCount { get; set; }
///
/// 收藏量
///
public int collectionCount { get; set; }
///
/// 百次阅读量
///
public float total100ReadCount { get; set; }
///
/// 基础奖励(分为单位)
///
public int baseAward { get; set; }
///
/// 总金额(分为单位)
///
public int amount { get; set; }
///
/// 状态:0 待结算 1 已结算
///
public int state { get; set; }
///
/// 系统操作用户编号,如果没有则为0
///
public int operatorId { get; set; }
///
/// 系统操作用户名称
///
public string operatorName { get; set; }
///
/// 创建时间
///
public DateTime createAt { get; set; }
///
/// 操作描述
///
public string description { get; set; }
}
}