35 lines
896 B
C#
35 lines
896 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Reflection.Emit;
|
|
using System.Runtime.Serialization;
|
|
using System.Web.Http;
|
|
|
|
namespace Model
|
|
{
|
|
// 為對應資料表MODEL宣告額外參數類別(Metadata)
|
|
// [JsonIgnore] 避免WEBAPI自動抓關聯資料
|
|
[MetadataType(typeof(supplierMetadata))]
|
|
public partial class supplier
|
|
{
|
|
private class supplierMetadata
|
|
{
|
|
|
|
[JsonIgnore]
|
|
public virtual supplier_kind supplier_kind { get; set; }
|
|
}
|
|
|
|
public const int KindLevelMax = 3; //收支層數
|
|
public const string Dir = "~/upload/supplier"; //圖片上傳位置
|
|
public string log;
|
|
|
|
|
|
}
|
|
}
|
|
|