bug
lu
7 天以前 d157667c10afbda2cf8005459bffa78f40d1b033
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
using DevExpress.XtraEditors;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace Gs.DevApp.DevFrm.Rpt
{
    public partial class WomShjhShow : DevExpress.XtraEditors.XtraForm
    {
        string orgId = "";
        string beginDate = "";
        string endDate = "";
        string itemId = "";
        public WomShjhShow(string _orgId, string _beginDate, string _endDate, string _itemId)
        {
            InitializeComponent();
            this.orgId = _orgId;
            this.beginDate = _beginDate;
            this.endDate = _endDate;
            this.itemId = _itemId;
        }
    }
}