using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; namespace JSWX_Model.SignUp { [Table("T_Logic_BandService")] public class T_Logic_BandService { public T_Logic_BandService() { } [Key] [Column("F_ID")] [Display(Name = "F_ID")] public int F_ID { get; set; } [Column("F_WXUserSN")] [Display(Name = "F_WXUserSN")] public Guid F_WXUserSN { get; set; } [Column("F_CustomerSN")] [Display(Name = "F_CustomerSN")] public Guid F_CustomerSN { get; set; } [Column("F_Date")] [Display(Name = "F_Date")] public DateTime F_Date { get; set; } [Column("F_SNo")] [Display(Name = "F_SNo")] public String F_SNo { get; set; } } }