using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pcb.Common.Enum
{
///
/// 处罚类别
///
[Note("处罚类别")]
public enum ProQualityFineEnum
{
///
/// 补投处罚
///
[Note("补投处罚")]
FeedOrder = 10,
///
/// 客诉处罚
///
[Note("客诉处罚")]
FeedBack = 20,
///
/// 线下处罚
///
[Note("线下处罚")]
XianXia = 30,
}
}