Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. [PXDBInt]
  2. [PXDefault(TypeCode.DBNull, "", PersistingCheck=PXPersistingCheck.Nothing)]
  3. [PXUIField(DisplayName="Nullable Int")]
  4.  
  5. #region CurrentConfigRevision
  6. public abstract class currentConfigRevision : PX.Data.IBqlField
  7. {
  8. }
  9. protected int? _CurrentConfigRevision;
  10. [PXDBInt]
  11. [PXUIField(DisplayName="Current Revision")]
  12. public virtual int? CurrentConfigRevision
  13. {
  14. get
  15. {
  16. return this._CurrentConfigRevision;
  17. }
  18. set
  19. {
  20. this._CurrentConfigRevision = value;
  21. }
  22. }
  23. #endregion
  24.  
  25. <px:PXNumberEdit runat="server" ID="edUsrCapacity" DataField="UsrCapacity"
  26. DisplayFormat="n0" MaxLength="6" AllowNull="True" />
  27.  
  28.  
  29. [PXDBInt(MinValue = 1, MaxValue = 999999)]
  30. [PXUIField(DisplayName = Messages.FsEquipment.Capacity)]
  31. public virtual int? UsrCapacity
  32. {
  33. get;
  34. set;
  35. }
  36.  
  37. public abstract class usrCapacity : BqlInt.Field<usrCapacity>
  38. {
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement