This website works better with JavaScript.
首頁
探索
說明
登入
derek
/
FPSMS-backend
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
bug fix
create_edit_user
MSI\derek
4 月之前
父節點
9d65dd4e93
當前提交
a27a0f8b84
共有
2 個文件被更改
,包括
2 次插入
和
1 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/main/java/com/ffii/fpsms/modules/stock/entity/StockOut.kt
+1
-0
src/main/java/com/ffii/fpsms/modules/stock/entity/StockOutLine.kt
+ 1
- 1
src/main/java/com/ffii/fpsms/modules/stock/entity/StockOut.kt
查看文件
@@ -9,7 +9,7 @@ import java.time.LocalDateTime
@Entity
@Table(name = "stock_out")
open class StockOut
: BaseEntity<Long>(){
open class StockOut: BaseEntity<Long>(){
@NotNull
@Column(name = "type")
open var type: String? = null
+ 1
- 0
src/main/java/com/ffii/fpsms/modules/stock/entity/StockOutLine.kt
查看文件
@@ -19,6 +19,7 @@ open class StockOutLine: BaseEntity<Long>() {
open var qty: Double? = null
@NotNull
@ManyToOne
@JoinColumn(name = "stockOutId")
open var stockOut: StockOut? = null
Write
Preview
Loading…
取消
儲存