using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using LJLib.DAL.SQL;
namespace JLHHJSvr.DBA.DBModle
{
[PK(new[] { "billid,printid" })]
public sealed class st_bill_mx
{
///
/// 罚单ID
///
public int? billid { get; set; }
///
/// 明细ID
///
public int? printid { get; set; }
public string filemd5 { get; set; }
}
}