| | |
| | | public Guid? BuyerId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备 注:实际到达时间 |
| | | /// 备 注:实际到达时间 ,当作为问题反馈的时候,为提交反馈的时间 |
| | | /// 默认值: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "DeliveredTime")] |
| | |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "CarId")] |
| | | public int? CarId { get; set; } |
| | | /// <summary> |
| | | /// 司机 |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToOne, nameof(CarId), nameof(OaStaff.Keyid))] |
| | | public OA_CarManage? Car { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备 注:司机id |
| | |
| | | public int? Biddingcompany { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备 注: 2忽略 |
| | | /// 备 注: 2忽略 是派车的是1,不派车填0(增加问题反馈) |
| | | /// 默认值: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "shifouDelivery")] |
| | |
| | | /// 附件列表 3 |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToMany, nameof(OA_attachment.OA_Id), nameof(Keyid), "AttachmentType=3")] |
| | | public List<OA_attachment> Attachments { get; set; } |
| | | public List<OA_attachment> ?Attachments { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | [SugarColumn(IsIgnore =true)] |
| | | public int? DeliverTixingId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 完结状态 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true)] |
| | | public WanjieStatusType? Wanjiestatus { get; set; } |
| | | /// <summary> |
| | | /// 责任人ID |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true)] |
| | | public int? Zerenren { get; set; } |
| | | /// <summary> |
| | | /// 责任人ID |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToOne, nameof(Zerenren),nameof(OaStaff.Keyid))] |
| | | public OaStaff? ZerenrenInfo { get; set; } |
| | | /// <summary> |
| | | /// 罚款 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true)] |
| | | public decimal? Fakuan { get; set; } |
| | | |
| | | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 完结状态 |
| | | /// </summary> |
| | | public enum WanjieStatusType |
| | | { |
| | | /// <summary> |
| | | /// 未完成 |
| | | /// </summary> |
| | | UnFinish = 0, |
| | | /// <summary> |
| | | /// 已完成 |
| | | /// </summary> |
| | | Finish = 1 |
| | | } |
| | | |
| | | } |