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.
D7QUANTAI/BookingJieFeng/Models/OpCtnShippingEditViewModel.cs

68 lines
2.2 KiB
C#

10 months ago
using AutoMapper;
using BookingJieFeng.DB.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace BookingJieFeng.Models
{
public class OpCtnShippingEditViewModel
{
public int Index { get; set; }
public string CTN_ID { get; set; }
//public string ORDNO { get; set; }
public string CTNALL { get; set; }
public int? CTNNUM { get; set; }
public int? TEU { get; set; }
public string CNTRNO { get; set; }
public string SEALNO { get; set; }
public int? PKGS { get; set; }
public string KINDPKGS { get; set; }
public decimal? KGS { get; set; }
public decimal? CBM { get; set; }
//public decimal? TAREWEIGHT { get; set; }
//public string CTNSTATUS { get; set; }
//public string WEIGHTYPE { get; set; }
//public decimal? WEIGHKGS { get; set; }
//public string WEIGHATTN { get; set; }
//public string VGMCONNCOM { get; set; }
//public string WEIGHTEL { get; set; }
//public string WEIGHDATE { get; set; }
//public string VGMADDR { get; set; }
//public string VGMEMAIL { get; set; }
//public string REMARK { get; set; }
}
public static class OpCtnShippingEditViewModelExt
{
public static OpCtnShippingEditViewModel AsShippingEditViewModel(this OP_CTN model)
{
return Mapper.Map<OpCtnShippingEditViewModel>(model);
}
public static OP_CTN AsModel(this OpCtnShippingEditViewModel model)
{
return Mapper.Map<OP_CTN>(model);
}
public static OP_CTN AsModel(this OpCtnShippingEditViewModel model, OP_CTN src)
{
return Mapper.Map(model, src);
}
public static List<OpCtnShippingEditViewModel> AsShippingEditViewModelList(this IEnumerable<OP_CTN> model)
{
var list = Mapper.Map<List<OpCtnShippingEditViewModel>>(model);
int idx = 1;
list.ForEach(x => x.Index = idx++);
return list;
}
public static List<OP_CTN> AsModelList(this IEnumerable<OpCtnShippingEditViewModel> model)
{
return Mapper.Map<List<OP_CTN>>(model);
}
}
}