using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
///
/// 处罚通知单处罚项
///
public class PunishNoticeItemItem
{
///
/// ID
///
public string PunishNoticeItemId
{
get;
set;
}
///
/// 处罚单ID
///
public string PunishNoticeId
{
get;
set;
}
///
/// 处罚内容
///
public string PunishContent
{
get;
set;
}
///
/// 处罚金额
///
public decimal? PunishMoney
{
get;
set;
}
///
/// 排序
///
public int? SortIndex
{
get;
set;
}
}
}