Dev cleaning (#106)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { type Base, genBase } from "./_base"
|
||||
|
||||
export interface McuSrc extends Base {
|
||||
code: string
|
||||
name: string
|
||||
mcuSrcCategory_code: string
|
||||
item_id: number
|
||||
}
|
||||
|
||||
export function genMcuSrc(): McuSrc {
|
||||
return {
|
||||
...genBase(),
|
||||
code: '',
|
||||
name: '',
|
||||
mcuSrcCategory_code: '',
|
||||
item_id: 0
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user