Documentation ¶
Index ¶
- Variables
- type AuthorDTO
- func (p *AuthorDTO) BLength() int
- func (p *AuthorDTO) DeepEqual(ano *AuthorDTO) bool
- func (p *AuthorDTO) FastRead(buf []byte) (int, error)
- func (p *AuthorDTO) FastReadField1(buf []byte) (int, error)
- func (p *AuthorDTO) FastReadField2(buf []byte) (int, error)
- func (p *AuthorDTO) FastReadField3(buf []byte) (int, error)
- func (p *AuthorDTO) FastReadField4(buf []byte) (int, error)
- func (p *AuthorDTO) FastReadField5(buf []byte) (int, error)
- func (p *AuthorDTO) FastWrite(buf []byte) int
- func (p *AuthorDTO) FastWriteNocopy(buf []byte, binaryWriter bthrift.BinaryWriter) int
- func (p *AuthorDTO) Field1DeepEqual(src int64) bool
- func (p *AuthorDTO) Field2DeepEqual(src int64) bool
- func (p *AuthorDTO) Field3DeepEqual(src int64) bool
- func (p *AuthorDTO) Field4DeepEqual(src string) bool
- func (p *AuthorDTO) Field5DeepEqual(src string) bool
- func (p *AuthorDTO) GetCreateTime() (v int64)
- func (p *AuthorDTO) GetId() (v int64)
- func (p *AuthorDTO) GetRealname() (v string)
- func (p *AuthorDTO) GetUpdateTime() (v int64)
- func (p *AuthorDTO) GetUsername() (v string)
- func (p *AuthorDTO) InitDefault()
- func (p *AuthorDTO) Read(iprot thrift.TProtocol) (err error)
- func (p *AuthorDTO) ReadField1(iprot thrift.TProtocol) error
- func (p *AuthorDTO) ReadField2(iprot thrift.TProtocol) error
- func (p *AuthorDTO) ReadField3(iprot thrift.TProtocol) error
- func (p *AuthorDTO) ReadField4(iprot thrift.TProtocol) error
- func (p *AuthorDTO) ReadField5(iprot thrift.TProtocol) error
- func (p *AuthorDTO) SetCreateTime(val int64)
- func (p *AuthorDTO) SetId(val int64)
- func (p *AuthorDTO) SetRealname(val string)
- func (p *AuthorDTO) SetUpdateTime(val int64)
- func (p *AuthorDTO) SetUsername(val string)
- func (p *AuthorDTO) String() string
- func (p *AuthorDTO) Write(oprot thrift.TProtocol) (err error)
- type ColumnQuoteDTO
- func (p *ColumnQuoteDTO) BLength() int
- func (p *ColumnQuoteDTO) DeepEqual(ano *ColumnQuoteDTO) bool
- func (p *ColumnQuoteDTO) FastRead(buf []byte) (int, error)
- func (p *ColumnQuoteDTO) FastReadField1(buf []byte) (int, error)
- func (p *ColumnQuoteDTO) FastReadField2(buf []byte) (int, error)
- func (p *ColumnQuoteDTO) FastReadField3(buf []byte) (int, error)
- func (p *ColumnQuoteDTO) FastReadField4(buf []byte) (int, error)
- func (p *ColumnQuoteDTO) FastReadField5(buf []byte) (int, error)
- func (p *ColumnQuoteDTO) FastReadField6(buf []byte) (int, error)
- func (p *ColumnQuoteDTO) FastReadField7(buf []byte) (int, error)
- func (p *ColumnQuoteDTO) FastWrite(buf []byte) int
- func (p *ColumnQuoteDTO) FastWriteNocopy(buf []byte, binaryWriter bthrift.BinaryWriter) int
- func (p *ColumnQuoteDTO) Field1DeepEqual(src int64) bool
- func (p *ColumnQuoteDTO) Field2DeepEqual(src int64) bool
- func (p *ColumnQuoteDTO) Field3DeepEqual(src int64) bool
- func (p *ColumnQuoteDTO) Field4DeepEqual(src int64) bool
- func (p *ColumnQuoteDTO) Field5DeepEqual(src int64) bool
- func (p *ColumnQuoteDTO) Field6DeepEqual(src int64) bool
- func (p *ColumnQuoteDTO) Field7DeepEqual(src ColumnQuoteStatus) bool
- func (p *ColumnQuoteDTO) GetColumnId() (v int64)
- func (p *ColumnQuoteDTO) GetCreateTime() (v int64)
- func (p *ColumnQuoteDTO) GetEditor() (v int64)
- func (p *ColumnQuoteDTO) GetId() (v int64)
- func (p *ColumnQuoteDTO) GetPrice() (v int64)
- func (p *ColumnQuoteDTO) GetStatus() (v ColumnQuoteStatus)
- func (p *ColumnQuoteDTO) GetUpdateTime() (v int64)
- func (p *ColumnQuoteDTO) InitDefault()
- func (p *ColumnQuoteDTO) Read(iprot thrift.TProtocol) (err error)
- func (p *ColumnQuoteDTO) ReadField1(iprot thrift.TProtocol) error
- func (p *ColumnQuoteDTO) ReadField2(iprot thrift.TProtocol) error
- func (p *ColumnQuoteDTO) ReadField3(iprot thrift.TProtocol) error
- func (p *ColumnQuoteDTO) ReadField4(iprot thrift.TProtocol) error
- func (p *ColumnQuoteDTO) ReadField5(iprot thrift.TProtocol) error
- func (p *ColumnQuoteDTO) ReadField6(iprot thrift.TProtocol) error
- func (p *ColumnQuoteDTO) ReadField7(iprot thrift.TProtocol) error
- func (p *ColumnQuoteDTO) SetColumnId(val int64)
- func (p *ColumnQuoteDTO) SetCreateTime(val int64)
- func (p *ColumnQuoteDTO) SetEditor(val int64)
- func (p *ColumnQuoteDTO) SetId(val int64)
- func (p *ColumnQuoteDTO) SetPrice(val int64)
- func (p *ColumnQuoteDTO) SetStatus(val ColumnQuoteStatus)
- func (p *ColumnQuoteDTO) SetUpdateTime(val int64)
- func (p *ColumnQuoteDTO) String() string
- func (p *ColumnQuoteDTO) Write(oprot thrift.TProtocol) (err error)
- type ColumnQuoteStatus
Constants ¶
This section is empty.
Variables ¶
View Source
var KitexUnusedProtection = struct{}{}
KitexUnusedProtection is used to prevent 'imported and not used' error.
Functions ¶
This section is empty.
Types ¶
type AuthorDTO ¶
type AuthorDTO struct { Id int64 `thrift:"id,1" frugal:"1,default,i64" json:"id"` CreateTime int64 `thrift:"createTime,2" frugal:"2,default,i64" json:"createTime"` UpdateTime int64 `thrift:"updateTime,3" frugal:"3,default,i64" json:"updateTime"` Username string `thrift:"username,4" frugal:"4,default,string" json:"username"` Realname string `thrift:"realname,5" frugal:"5,default,string" json:"realname"` }
func NewAuthorDTO ¶
func NewAuthorDTO() *AuthorDTO
func (*AuthorDTO) FastWriteNocopy ¶
func (p *AuthorDTO) FastWriteNocopy(buf []byte, binaryWriter bthrift.BinaryWriter) int
func (*AuthorDTO) Field1DeepEqual ¶
func (*AuthorDTO) Field2DeepEqual ¶
func (*AuthorDTO) Field3DeepEqual ¶
func (*AuthorDTO) Field4DeepEqual ¶
func (*AuthorDTO) Field5DeepEqual ¶
func (*AuthorDTO) GetCreateTime ¶
func (*AuthorDTO) GetRealname ¶
func (*AuthorDTO) GetUpdateTime ¶
func (*AuthorDTO) GetUsername ¶
func (*AuthorDTO) InitDefault ¶
func (p *AuthorDTO) InitDefault()
func (*AuthorDTO) SetCreateTime ¶
func (*AuthorDTO) SetRealname ¶
func (*AuthorDTO) SetUpdateTime ¶
func (*AuthorDTO) SetUsername ¶
type ColumnQuoteDTO ¶
type ColumnQuoteDTO struct { Id int64 `thrift:"id,1" frugal:"1,default,i64" json:"id"` CreateTime int64 `thrift:"createTime,2" frugal:"2,default,i64" json:"createTime"` UpdateTime int64 `thrift:"updateTime,3" frugal:"3,default,i64" json:"updateTime"` ColumnId int64 `thrift:"columnId,4" frugal:"4,default,i64" json:"columnId"` Editor int64 `thrift:"editor,5" frugal:"5,default,i64" json:"editor"` Price int64 `thrift:"price,6" frugal:"6,default,i64" json:"price"` Status ColumnQuoteStatus `thrift:"status,7" frugal:"7,default,ColumnQuoteStatus" json:"status"` }
func NewColumnQuoteDTO ¶
func NewColumnQuoteDTO() *ColumnQuoteDTO
func (*ColumnQuoteDTO) BLength ¶
func (p *ColumnQuoteDTO) BLength() int
func (*ColumnQuoteDTO) DeepEqual ¶
func (p *ColumnQuoteDTO) DeepEqual(ano *ColumnQuoteDTO) bool
func (*ColumnQuoteDTO) FastReadField1 ¶
func (p *ColumnQuoteDTO) FastReadField1(buf []byte) (int, error)
func (*ColumnQuoteDTO) FastReadField2 ¶
func (p *ColumnQuoteDTO) FastReadField2(buf []byte) (int, error)
func (*ColumnQuoteDTO) FastReadField3 ¶
func (p *ColumnQuoteDTO) FastReadField3(buf []byte) (int, error)
func (*ColumnQuoteDTO) FastReadField4 ¶
func (p *ColumnQuoteDTO) FastReadField4(buf []byte) (int, error)
func (*ColumnQuoteDTO) FastReadField5 ¶
func (p *ColumnQuoteDTO) FastReadField5(buf []byte) (int, error)
func (*ColumnQuoteDTO) FastReadField6 ¶
func (p *ColumnQuoteDTO) FastReadField6(buf []byte) (int, error)
func (*ColumnQuoteDTO) FastReadField7 ¶
func (p *ColumnQuoteDTO) FastReadField7(buf []byte) (int, error)
func (*ColumnQuoteDTO) FastWrite ¶
func (p *ColumnQuoteDTO) FastWrite(buf []byte) int
for compatibility
func (*ColumnQuoteDTO) FastWriteNocopy ¶
func (p *ColumnQuoteDTO) FastWriteNocopy(buf []byte, binaryWriter bthrift.BinaryWriter) int
func (*ColumnQuoteDTO) Field1DeepEqual ¶
func (p *ColumnQuoteDTO) Field1DeepEqual(src int64) bool
func (*ColumnQuoteDTO) Field2DeepEqual ¶
func (p *ColumnQuoteDTO) Field2DeepEqual(src int64) bool
func (*ColumnQuoteDTO) Field3DeepEqual ¶
func (p *ColumnQuoteDTO) Field3DeepEqual(src int64) bool
func (*ColumnQuoteDTO) Field4DeepEqual ¶
func (p *ColumnQuoteDTO) Field4DeepEqual(src int64) bool
func (*ColumnQuoteDTO) Field5DeepEqual ¶
func (p *ColumnQuoteDTO) Field5DeepEqual(src int64) bool
func (*ColumnQuoteDTO) Field6DeepEqual ¶
func (p *ColumnQuoteDTO) Field6DeepEqual(src int64) bool
func (*ColumnQuoteDTO) Field7DeepEqual ¶
func (p *ColumnQuoteDTO) Field7DeepEqual(src ColumnQuoteStatus) bool
func (*ColumnQuoteDTO) GetColumnId ¶
func (p *ColumnQuoteDTO) GetColumnId() (v int64)
func (*ColumnQuoteDTO) GetCreateTime ¶
func (p *ColumnQuoteDTO) GetCreateTime() (v int64)
func (*ColumnQuoteDTO) GetEditor ¶
func (p *ColumnQuoteDTO) GetEditor() (v int64)
func (*ColumnQuoteDTO) GetId ¶
func (p *ColumnQuoteDTO) GetId() (v int64)
func (*ColumnQuoteDTO) GetPrice ¶
func (p *ColumnQuoteDTO) GetPrice() (v int64)
func (*ColumnQuoteDTO) GetStatus ¶
func (p *ColumnQuoteDTO) GetStatus() (v ColumnQuoteStatus)
func (*ColumnQuoteDTO) GetUpdateTime ¶
func (p *ColumnQuoteDTO) GetUpdateTime() (v int64)
func (*ColumnQuoteDTO) InitDefault ¶
func (p *ColumnQuoteDTO) InitDefault()
func (*ColumnQuoteDTO) ReadField1 ¶
func (p *ColumnQuoteDTO) ReadField1(iprot thrift.TProtocol) error
func (*ColumnQuoteDTO) ReadField2 ¶
func (p *ColumnQuoteDTO) ReadField2(iprot thrift.TProtocol) error
func (*ColumnQuoteDTO) ReadField3 ¶
func (p *ColumnQuoteDTO) ReadField3(iprot thrift.TProtocol) error
func (*ColumnQuoteDTO) ReadField4 ¶
func (p *ColumnQuoteDTO) ReadField4(iprot thrift.TProtocol) error
func (*ColumnQuoteDTO) ReadField5 ¶
func (p *ColumnQuoteDTO) ReadField5(iprot thrift.TProtocol) error
func (*ColumnQuoteDTO) ReadField6 ¶
func (p *ColumnQuoteDTO) ReadField6(iprot thrift.TProtocol) error
func (*ColumnQuoteDTO) ReadField7 ¶
func (p *ColumnQuoteDTO) ReadField7(iprot thrift.TProtocol) error
func (*ColumnQuoteDTO) SetColumnId ¶
func (p *ColumnQuoteDTO) SetColumnId(val int64)
func (*ColumnQuoteDTO) SetCreateTime ¶
func (p *ColumnQuoteDTO) SetCreateTime(val int64)
func (*ColumnQuoteDTO) SetEditor ¶
func (p *ColumnQuoteDTO) SetEditor(val int64)
func (*ColumnQuoteDTO) SetId ¶
func (p *ColumnQuoteDTO) SetId(val int64)
func (*ColumnQuoteDTO) SetPrice ¶
func (p *ColumnQuoteDTO) SetPrice(val int64)
func (*ColumnQuoteDTO) SetStatus ¶
func (p *ColumnQuoteDTO) SetStatus(val ColumnQuoteStatus)
func (*ColumnQuoteDTO) SetUpdateTime ¶
func (p *ColumnQuoteDTO) SetUpdateTime(val int64)
func (*ColumnQuoteDTO) String ¶
func (p *ColumnQuoteDTO) String() string
type ColumnQuoteStatus ¶
type ColumnQuoteStatus int64
const ( ColumnQuoteStatus_NEW ColumnQuoteStatus = 0 ColumnQuoteStatus_OK ColumnQuoteStatus = 1 )
func ColumnQuoteStatusFromString ¶
func ColumnQuoteStatusFromString(s string) (ColumnQuoteStatus, error)
func ColumnQuoteStatusPtr ¶
func ColumnQuoteStatusPtr(v ColumnQuoteStatus) *ColumnQuoteStatus
func (*ColumnQuoteStatus) Scan ¶
func (p *ColumnQuoteStatus) Scan(value interface{}) (err error)
func (ColumnQuoteStatus) String ¶
func (p ColumnQuoteStatus) String() string
Click to show internal directories.
Click to hide internal directories.