Files
Unimarc/unimarc/unimarc/Models/MacEditorParameter.cs
LGram16 90ed6e285f 마크목록에서 개별 마크데이터 지정시 해당 값이 자동업데이트되지 않는 현상 수정
권차, 권차서명, 판차 정보 추출하여 저장하게 함
마크선태고하면에서 마크삭제시 삭제할 인덱스값 표시
obj_list_book 에  품절컬럼 추가,
2026-03-02 16:35:37 +09:00

26 lines
727 B
C#

//using Microsoft.Office.Interop.Excel;
namespace UniMarc
{
public class MacEditorParameter
{
public string ISBN13 { get; set; }
public string URL { get; set; }
public int MarcIdx { get; set; }
public string User { get; set; }
public string SaveDate { get; set; }
public int ListIdx { get; set; }
public string BookName { get; set; }
public string Author { get; set; }
public string Publisher { get; set; }
public int Price { get; set; }
public string text008 { get; set; }
public string tag056 { get; set; }
public bool NewMake { get; set; }
public string OriginalMarc { get; set; }
}
}