yusijie
2023-06-29 efa57c53b1b4c94e188a52f5a35d0a4ca8a82cb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Text;
using SQLHelper;
using DBUtility;
 
namespace DAL
{
    public class Cls_S_Crm_ClueBill : Cls_S_Xt_BaseBill
    {
 
        public Cls_S_Crm_ClueBill()
        {
            base.ViewName = "h_v_Crm_ClueBillList";
            base.mvarReportTitle = "线索";
            base.mvarItemKey = "4014";
            base.sCondtion = "  ";
            base.sOrderSql = " order by 单据号 desc,hsubid ";
            base.sKeyCol = "HMainID";
        }
        
        
    }
}