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.
25 lines
732 B
C#
25 lines
732 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BookingWeb.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; }
|
|
}
|
|
} |