ad계정목록 csv내보내기 기능 추가

This commit is contained in:
chi
2021-05-20 10:20:29 +09:00
parent b3228bbdb6
commit 478896089f
30 changed files with 3427 additions and 595 deletions

View File

@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
namespace CMSControl
{
public class Item
{
public int SlotIDX { get; set; }
public string ID1 { get; set; }
public string ID2 { get; set; }
public string Name { get; set; }
public string Model { get; set; }
public Boolean Selected { get; set; }
public int Qty { get; set; }
public string Serial { get; set; }
public Single Scale { get; set; }
public string ScaleUnit { get; set; }
public string Unit { get; set; }
public Boolean QtyManage { get; set; }
public Boolean QtySummary { get; set; }
public Boolean ExpManage { get; set; }
public Item()
{
SlotIDX = -1;
ID1 = string.Empty;
ID2 = string.Empty;
Name = string.Empty;
Model = string.Empty;
Selected = false;
Qty = 0;
Serial = string.Empty;
Scale = 1.0f;
ScaleUnit = "";
Unit = "";
QtyManage = true;
QtySummary = false;
ExpManage = false;
}
}
}