30 lines
983 B
C#
30 lines
983 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ExcelTest
|
|
{
|
|
public class MarcBookItem
|
|
{
|
|
public string ListIdx { get; set; }
|
|
public string ISBN13 { get; set; }
|
|
public string Num { get; set; }
|
|
public string BookName { get; set; }
|
|
public string Author { get; set; }
|
|
public string BookComp { get; set; }
|
|
public string Count { get; set; }
|
|
public string Pay { get; set; }
|
|
public string Url { get; set; }
|
|
public string MarcIdx { get; set; }
|
|
public string DbMarc { get; set; }
|
|
public string Grade { get; set; }
|
|
public string ColCheck { get; set; } = "V";
|
|
public string User { get; set; }
|
|
public string SaveDate { get; set; }
|
|
|
|
public System.Drawing.Color ForeColor { get; set; } = System.Drawing.Color.Black;
|
|
public System.Drawing.Color BackColor { get; set; } = System.Drawing.Color.White;
|
|
}
|
|
}
|