using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class GoodsType
{
///
/// 主键
///
public int Id { get; set; }
///
/// 名称
///
public string Name { get; set; } = null!;
///
/// key
///
public int Value { get; set; }
///
/// 排序字段
///
public int SortOrder { get; set; }
///
/// 是否首页显示
///
public bool IsShow { get; set; }
///
/// 备注
///
public string? Remark { get; set; }
///
/// 微信支付
///
public bool? PayWechat { get; set; }
///
/// 余额支付
///
public bool? PayBalance { get; set; }
///
/// 货币支付
///
public bool? PayCurrency { get; set; }
///
/// 货币2支付
///
public bool? PayCurrency2 { get; set; }
///
/// 优惠券支付
///
public bool? PayCoupon { get; set; }
///
/// 是否抵扣 1:抵扣 0:支付
///
public bool? IsDeduction { get; set; }
///
/// 是否显示在分类中
///
public sbyte IsFenlei { get; set; }
///
/// 分类名称
///
public string FlName { get; set; } = null!;
///
/// 角标文字
///
public string? CornerText { get; set; }
}