using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace BookingJieFeng.DB.Model { [Table("OP_CTN_DETAIL")] public class OP_CTN_DETAIL { [Key] public string GID { get; set; } public string CTN_ID { get; set; } public int? PKGS { get; set; } public string KINDPKGS { get; set; } public decimal? KGS { get; set; } public decimal? CBM { get; set; } public string HSCODE { get; set; } public string MARKS { get; set; } public string DESCRIPTION { get; set; } public string REMARK { get; set; } } }