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.
28 lines
825 B
C#
28 lines
825 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace BookingJieFeng.DB.Model
|
|
{
|
|
[Table("config_data")]
|
|
public class ConfigData
|
|
{
|
|
public const string ModuleOrder = "Order";
|
|
public const string ModuleConfirm = "Confirm";
|
|
public const string ModuleShipping = "Shipping";
|
|
|
|
public const string CateListColumn = "ListColumn";
|
|
|
|
[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; }
|
|
}
|
|
} |