zzr99
2021-09-30 5b8c86d6c9901a57d5688a16b0d0c569a87acbf9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Text;
using SQLHelper;
using DBUtility;
 
namespace DAL
{
    public class Cls_S_K3_ICMOBill:Cls_S_Xt_BaseBill
    {
        
        //const string ViewName = "h_v_K3_ICMOBillList_add";
 
        /// <summary>
        /// 排程调用
        /// </summary>
        public Cls_S_K3_ICMOBill()
        {
            base.ViewName = "h_v_K3_ICMOBillList_add";
            base.mvarReportTitle = "生产任务单";
            base.mvarItemKey = "3710";
            base.sCondtion = "";
            base.sOrderSql = "  order by 单据号 desc,hsubid ";
            base.sKeyCol = "批次";
 
            base.ViewName2 = "h_v_K3_ICMOBillList_add2";
            base.mvarReportTitle2 = "生产任务单";
            base.mvarItemKey2 = "3710";
            base.sCondtion2 = "";
            base.sOrderSql2 = "  order by 单据号 desc,hsubid ";
            base.sKeyCol2 = "批次";
        }
       
        
    }
}