You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace DSWeb.Common.DB
{
[Table("config_data")]
public class ConfigData
{
public const string ModuleInvoice = "Invoice";
public const string CateMailAddr = "MailAddr";
public const string CateMailSubject = "MailSubject";
public const string ModuleOrder = "Order";
public const string ModuleConfirm = "Confirm";
public const string ModuleShipping = "Shipping";
public const string ModuleSystem = "System";
public const string CateListColumn = "ListColumn";
public const string CateAlertMinValue = "AlertMinValue";
[Key]
public string GID { get; set; }
public string Module { get; set; }
public string Category { get; set; }
public string JsonData { get; set; }
public string UserId { get; set; }
public string CompId { get; set; }
public int SORT { get; set; }
}
}