| | |
| | | [DisplayName("客户条码")] |
| | | public string CUST_SN { get; set; } |
| | | /// <summary> |
| | | /// 厂内流转条码 |
| | | /// 厂内流转条码(若是导入的未绑定客户条码,此字段为空) |
| | | /// </summary> |
| | | [DisplayName("厂内流转条码")] |
| | | public string FLOW_SN { get; set; } |
| | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string FieldName { get; set; } |
| | | */ |
| | | /// <summary> |
| | | /// 是否已经绑定 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public bool IsBound => !string.IsNullOrEmpty(FLOW_SN) && !string.IsNullOrEmpty(CUST_SN) && FLOW_SN != CUST_SN; |
| | | /// <summary> |
| | | /// 是否厂内流转条码 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public bool IsFlowSn => !string.IsNullOrEmpty(FLOW_SN) && !string.IsNullOrEmpty(CUST_SN) && FLOW_SN == CUST_SN; |
| | | /// <summary> |
| | | /// 是否客户编码 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public bool IsCustSn => string.IsNullOrEmpty(FLOW_SN) && !string.IsNullOrEmpty(CUST_SN); |
| | | #endregion |
| | | |
| | | #region 外键属性 |