using System; using System.Data; using System.Data.SqlClient; using DSWeb.Models; namespace DSWeb.EntityDA { public class FeeSettleLinkDA { private const string PARM_CH_FEE_SETTLE_LINK = "@gid"; private const string PARM_CH_FEE_SETTLE_TYPE = "@type"; private const string PARM_CH_FEE_SETTLE_SETTLE_ID = "@settle_id"; private const string PARM_CH_FEE_SETTLE_RELATION_SUB_ID = "@relation_sub_id"; private const string PARM_CH_FEE_SETTLE_CREATE_USER = "@create_user"; private const string PARM_CH_FEE_SETTLE_CREATE_TIME = "@create_time"; } }