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.
54 lines
1.6 KiB
C#
54 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Areas.MvcShipping.DB
|
|
{
|
|
[Table("op_seae_run_bill")]
|
|
public class OpSeaeRunBill
|
|
{
|
|
[Key]
|
|
public string GID { get; set; }
|
|
public string CUSTOMERNAME { get; set; }
|
|
public string CARRIER { get; set; }
|
|
public string FORWARDER { get; set; }
|
|
public string CHIEF { get; set; }
|
|
public string TEL { get; set; }
|
|
public string ADDR { get; set; }
|
|
public string REASON { get; set; }
|
|
public string USERID { get; set; }
|
|
public string USERNAME { get; set; }
|
|
public DateTime? RUNTIME { get; set; }
|
|
public string STATUS { get; set; }
|
|
public DateTime? CREATETIME { get; set; }
|
|
public string CREATEUSER { get; set; }
|
|
public string CREATEUSERNAME { get; set; }
|
|
public DateTime? ACCEPTTIME { get; set; }
|
|
public string TRANSFERUSER { get; set; }
|
|
public DateTime? TRANSFERTIME { get; set; }
|
|
public DateTime? COMPLETETIME { get; set; }
|
|
public string REMARK { get; set; }
|
|
public string BillNO { get; set; }
|
|
public string TimeSpan { get; set; }
|
|
public bool? SFDJ { get; set; }
|
|
}
|
|
|
|
public enum OpSeaeRunBillStatus
|
|
{
|
|
[Description("创建")]
|
|
Create = 1,
|
|
|
|
[Description("已派单")]
|
|
Dispatch = 2,
|
|
|
|
[Description("已接受")]
|
|
Accept = 3,
|
|
|
|
[Description("已完成")]
|
|
Complete = 4
|
|
}
|
|
} |