using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 盒子自动下架日志表
///
public partial class GoodsOffshelfLog
{
public int Id { get; set; }
///
/// 盒子ID
///
public int GoodsId { get; set; }
///
/// 当前利润率
///
public decimal ProfitRate { get; set; }
///
/// 配置的下架利润阈值
///
public decimal XiajiaLirun { get; set; }
///
/// 订单总价值
///
public decimal OrderTotal { get; set; }
///
/// 出货总价值
///
public decimal GoodsTotal { get; set; }
///
/// 下架时间
///
public int CreateTime { get; set; }
///
/// 备注
///
public string? Remarks { get; set; }
///
/// 是否已读
///
public int IsRead { get; set; }
}