@NotNull
@Enumerated(EnumType.STRING)
@Column(name = "forma_pagamento", nullable = false, length = 20)
public FormaPagamento getFormaPagamento() {
return formaPagamento;
}
java类javax.persistence.Enumerated的实例源码
Pedido.java 文件源码
项目:webpedidos
阅读 33
收藏 0
点赞 0
评论 0
MCRUser.java 文件源码
项目:mycore
阅读 28
收藏 0
点赞 0
评论 0
/**
* @return the hashType
*/
@Column(name = "hashType", nullable = true)
@Enumerated(EnumType.STRING)
public MCRPasswordHashType getHashType() {
return password == null ? null : password.hashType;
}
MCRJob.java 文件源码
项目:mycore
阅读 32
收藏 0
点赞 0
评论 0
/**
* Returns the current state ({@link MCRJobStatus}) of the job.
*
*/
@Column(name = "status", nullable = false)
@Enumerated(EnumType.STRING)
public MCRJobStatus getStatus() {
return status;
}
LOSGoodsReceiptPosition.java 文件源码
项目:myWMS
阅读 49
收藏 0
点赞 0
评论 0
@Enumerated(EnumType.STRING)
public LOSGoodsReceiptType getReceiptType() {
return receiptType;
}
LOSGoodsReceipt.java 文件源码
项目:myWMS
阅读 25
收藏 0
点赞 0
评论 0
@Enumerated(EnumType.STRING)
public LOSGoodsReceiptState getReceiptState() {
return receiptState;
}
OrderReceipt.java 文件源码
项目:myWMS
阅读 30
收藏 0
点赞 0
评论 0
@Enumerated(EnumType.STRING)
public LOSOrderRequestState getState() {
return state;
}
OrderReceipt.java 文件源码
项目:myWMS
阅读 25
收藏 0
点赞 0
评论 0
@Enumerated(EnumType.STRING)
@Column(nullable=false)
public OrderType getOrderType() {
return orderType;
}
LOSAdvice.java 文件源码
项目:myWMS
阅读 29
收藏 0
点赞 0
评论 0
@Enumerated(EnumType.STRING)
public LOSAdviceState getAdviceState() {
return adviceState;
}
LOSStockUnitRecord.java 文件源码
项目:myWMS
阅读 20
收藏 0
点赞 0
评论 0
@Enumerated(EnumType.STRING)
public LOSStockUnitRecordType getType() {
return type;
}